From 33e1d7aca442f709f71cf4481d181844297cf308 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Thu, 16 Jun 2022 16:49:09 +0200 Subject: [PATCH 01/72] DB Changes --- pandora_console/extras/mr/55.sql | 1 + pandora_console/pandoradb.sql | 1 + 2 files changed, 2 insertions(+) diff --git a/pandora_console/extras/mr/55.sql b/pandora_console/extras/mr/55.sql index 747a8da934..c01a4e3c56 100644 --- a/pandora_console/extras/mr/55.sql +++ b/pandora_console/extras/mr/55.sql @@ -37,6 +37,7 @@ ALTER TABLE `tbackup` MODIFY COLUMN `id_user` VARCHAR(255) DEFAULT ''; ALTER TABLE `tservice` ADD COLUMN `enable_sunburst` tinyint(1) NOT NULL default 0; ALTER TABLE `tdashboard` MODIFY `name` TEXT NOT NULL DEFAULT ''; +ALTER TABLE `tusuario` ADD COLUMN `api_token` VARCHAR(255) NOT NULL DEFAULT ''; SET @st_oum763 = (SELECT IF( (SELECT COUNT(*) FROM INFORMATION_SCHEMA.COLUMNS WHERE table_name = 'tautoconfig' AND table_schema = DATABASE() AND column_name = 'disabled') > 0, diff --git a/pandora_console/pandoradb.sql b/pandora_console/pandoradb.sql index 5550bc5413..3b70462c80 100644 --- a/pandora_console/pandoradb.sql +++ b/pandora_console/pandoradb.sql @@ -1304,6 +1304,7 @@ CREATE TABLE IF NOT EXISTS `tusuario` ( `ehorus_user_level_enabled` TINYINT, `integria_user_level_user` VARCHAR(60), `integria_user_level_pass` VARCHAR(45), + `api_token` VARCHAR(255) NOT NULL DEFAULT '', CONSTRAINT `fk_filter_id` FOREIGN KEY (`id_filter`) REFERENCES tevent_filter (`id_filter`) ON DELETE SET NULL, UNIQUE KEY `id_user` (`id_user`) ) ENGINE=InnoDB DEFAULT CHARSET=UTF8MB4; From b871c1fb553b83c1c82228e8541a623210804222 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Fri, 17 Jun 2022 12:13:23 +0200 Subject: [PATCH 02/72] Added token view and generation in user views --- .../godmode/users/configure_user.php | 91 +++++++++++++------ pandora_console/include/functions_api.php | 17 ++++ pandora_console/include/functions_users.php | 58 ++++++++++++ pandora_console/include/javascript/pandora.js | 19 ++++ pandora_console/operation/users/user_edit.php | 22 ++++- 5 files changed, 175 insertions(+), 32 deletions(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 67a269bc66..19d2d7ff0c 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -1,19 +1,34 @@ '; +$apiToken = '
'; +$apiToken .= '

'.__('API Token'); +$apiToken .= ui_print_help_tip( + __('The next string is your passphrase for use with the API instead user/password. Click over the string for renew the token.'), + true +).'

'; +$apiToken .= html_print_input_hidden('api_token', $user_info['api_token'], true); +$apiToken .= sprintf( + '%s', + __('Warning'), + __('The API token will be renewed. After this action, the last token you were using will not work. Are you sure?'), + 'user_profile_form', + $user_info['api_token'] +); +$apiToken .= '
'; $user_groups = implode(',', array_keys((users_get_groups($id, 'AR', $display_all_group)))); @@ -1402,7 +1439,7 @@ if (!$id) { $user_id_create = $user_id; } -if (is_metaconsole()) { +if (is_metaconsole() === true) { $access_or_pagination = $meta_access; } else { $access_or_pagination = $size_pagination; @@ -1418,14 +1455,14 @@ if ($id != '' && !$is_err) { echo '
- -

Extra info

'.$email.$phone.$not_login.$local_user.$session_time.'
-
+ +

Extra info

'.$email.$phone.$not_login.$local_user.$session_time.$apiToken.'
+
'.$language.$access_or_pagination.$skin.$home_screen.$default_event_filter.$double_authentication.'
'.$timezone; -if (!is_metaconsole()) { +if (is_metaconsole() === false) { echo '
diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index d2c4f11823..2e7feb5e4c 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -17707,3 +17707,20 @@ function api_set_enable_disable_discovery_task($id_task, $thrash2, $other) } } } + + +/** + * Check if token is correct. + * + * @param string $token Token for check. + * + * @return integer Id of user. If returns 0 there is not valid token. + */ +function api_token_check(string $token) +{ + if (empty($token) === true) { + return 0; + } else { + return (int) db_get_value('id_user', 'tusuario', 'api_token', $token); + } +} diff --git a/pandora_console/include/functions_users.php b/pandora_console/include/functions_users.php index f4e6e25be8..808e98d5dd 100755 --- a/pandora_console/include/functions_users.php +++ b/pandora_console/include/functions_users.php @@ -877,3 +877,61 @@ function users_get_users_group_by_group($id_group) return $users; } + + +/** + * Generates a cryptographically secure chain for use with API. + * + * @return string + */ +function api_token_generate() +{ + // Generate a cryptographically secure chain. + $generateToken = bin2hex(openssl_random_pseudo_bytes(16)); + // Check if token exists in DB. + $tokenExists = (bool) api_token_check($generateToken); + // If not exists, can be assigned. In other case, try again. + return ($tokenExists === false) ? $generateToken : api_token_generate(); +} + + +/** + * Returns User API Token + * + * @param integer $idUser Id of the user. + * + * @return string + */ +function users_get_API_token(int $idUser) +{ + $apiToken = db_get_value('api_token', 'tusuario', 'id_user', $idUser); + + return $apiToken; +} + + +/** + * Renews the API Token. + * + * @param integer $idUser Id of the user. + * + * @return boolean Return true if the token was renewed. + */ +function users_renew_API_token(int $idUser) +{ + $apiToken = api_token_generate(); + + if (empty($apiToken) === false) { + $result = db_process_sql_update( + 'tusuario', + ['api_token' => $apiToken], + ['id_user' => $idUser] + ); + + if ($result !== false) { + return true; + } + } + + return false; +} diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js index eb8118a911..b12745afdf 100644 --- a/pandora_console/include/javascript/pandora.js +++ b/pandora_console/include/javascript/pandora.js @@ -2057,3 +2057,22 @@ $.fn.filterByText = function(textbox) { }); }); }; + +/** + * Confirm Dialog for API token renewal request. + * + * @param {string} title Title for show. + * @param {string} message Message for show. + * @param {string} form Form to attach renewAPIToken element. + */ +function renewAPIToken(title, message, form) { + confirmDialog({ + title: title, + message: message, + onAccept: function() { + $("#" + form) + .append("") + .submit(); + } + }); +} diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index f76fbfff31..443e9dab82 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -80,6 +80,7 @@ if (isset($_GET['modified']) && !$view_mode) { $upd_info['id_skin'] = get_parameter('skin', $user_info['id_skin']); $upd_info['default_event_filter'] = get_parameter('event_filter', null); $upd_info['block_size'] = get_parameter('block_size', $config['block_size']); + $upd_info['api_token'] = ((bool) get_parameter('renewAPIToken') === true) ? api_token_generate() : (string) get_parameter('api_token'); $default_block_size = get_parameter('default_block_size', 0); if ($default_block_size) { @@ -111,14 +112,14 @@ if (isset($_GET['modified']) && !$view_mode) { $section = io_safe_output($upd_info['section']); - if (($section == 'Event list') || ($section == 'Group view') - || ($section == 'Alert detail') || ($section == 'Tactical view') - || ($section == 'Default') + if (($section === 'Event list') || ($section === 'Group view') + || ($section === 'Alert detail') || ($section === 'Tactical view') + || ($section === 'Default') ) { $upd_info['data_section'] = ''; - } else if ($section == 'Dashboard') { + } else if ($section === 'Dashboard') { $upd_info['data_section'] = $dashboard; - } else if ($section == 'Visual console') { + } else if ($section === 'Visual console') { $upd_info['data_section'] = $visual_console; } @@ -258,6 +259,17 @@ if (is_metaconsole() === false && is_management_allowed() === false) { $user_id = '

'.__('User ID').':

'; $user_id .= ''.$id.'
'; +$user_id .= '

'.__('API Token').':

'; +$user_id .= html_print_input_hidden('api_token', $user_info['api_token'], true); +$user_id .= sprintf( + '%s', + __('Warning'), + __('The API token will be renewed. After this action, the last token you were using will not work. Are you sure?'), + 'user_mod', + $user_info['api_token'] +); +$user_id .= '
'; + $full_name = '
'.html_print_input_text_extended( 'fullname', $user_info['fullname'], From 8d05accb7b9b104ab9f604d1b4456d4e59a46969 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Fri, 17 Jun 2022 12:30:59 +0200 Subject: [PATCH 03/72] Improve changes --- pandora_console/godmode/users/configure_user.php | 9 +++++---- pandora_console/operation/users/user_edit.php | 7 ++++--- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 19d2d7ff0c..cdeb218fa8 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -28,7 +28,7 @@ // Begin. global $config; -hd($_REQUEST); + check_login(); require_once $config['homedir'].'/vendor/autoload.php'; @@ -1289,16 +1289,17 @@ $session_time .= html_print_input_text( $apiToken = '
'; $apiToken .= '

'.__('API Token'); $apiToken .= ui_print_help_tip( - __('The next string is your passphrase for use with the API instead user/password. Click over the string for renew the token.'), + __('The next string is your passphrase for use with the API instead user/password.'), true ).'

'; $apiToken .= html_print_input_hidden('api_token', $user_info['api_token'], true); +$apiToken .= ''.$user_info['api_token'].'   '; $apiToken .= sprintf( - '%s', + '%s', __('Warning'), __('The API token will be renewed. After this action, the last token you were using will not work. Are you sure?'), 'user_profile_form', - $user_info['api_token'] + __('Renew') ); $apiToken .= '
'; diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index 443e9dab82..bc589bc763 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -262,12 +262,13 @@ $user_id .= ''.$id.'
'; $user_id .= '

'.__('API Token').':

'; $user_id .= html_print_input_hidden('api_token', $user_info['api_token'], true); $user_id .= sprintf( - '%s', + '%s', __('Warning'), __('The API token will be renewed. After this action, the last token you were using will not work. Are you sure?'), - 'user_mod', - $user_info['api_token'] + 'user_profile_form', + __('Renew') ); +$user_id .= '
'.$user_info['api_token'].''; $user_id .= '
'; $full_name = '
'.html_print_input_text_extended( From cdf5485aee3eb097479926a98a9b94eba528b4ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Mon, 27 Jun 2022 18:06:51 +0200 Subject: [PATCH 04/72] Updated api checker extension --- pandora_console/extensions/api_checker.php | 128 ++++++++++++++++----- 1 file changed, 98 insertions(+), 30 deletions(-) diff --git a/pandora_console/extensions/api_checker.php b/pandora_console/extensions/api_checker.php index b4af7c77ee..ed2053036e 100755 --- a/pandora_console/extensions/api_checker.php +++ b/pandora_console/extensions/api_checker.php @@ -1,43 +1,101 @@ $url, 'result' => $result, ]; - - return $return; } +/** + * Perform API Checker + * + * @return void. + */ function extension_api_checker() { global $config; check_login(); - if (! check_acl($config['id_user'], 0, 'PM')) { + if ((bool) check_acl($config['id_user'], 0, 'PM') === false) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access Profile Management' @@ -85,11 +146,12 @@ function extension_api_checker() $return_type = io_safe_output(get_parameter('return_type', '')); $other = io_safe_output(get_parameter('other', '')); $other_mode = io_safe_output(get_parameter('other_mode', 'url_encode_separator_|')); + $token = get_parameter('token'); - $api_execute = get_parameter('api_execute', 0); + $api_execute = (bool) get_parameter('api_execute', false); $return_call_api = ''; - if ($api_execute) { + if ($api_execute === true) { $return_call_api = api_execute( $url, $ip, @@ -103,7 +165,8 @@ function extension_api_checker() urlencode($id2), $return_type, urlencode($other), - $other_mode + $other_mode, + $token ); } @@ -182,6 +245,11 @@ function extension_api_checker() $row[] = html_print_input_text('other_mode', $other_mode, '', 50, 255, true); $table2->data[] = $row; + $row = []; + $row[] = __('API Token'); + $row[] = html_print_input_text('token', $token, '', 50, 255, true); + $table2->data[] = $row; + $table3 = new stdClass(); $table3->data = []; @@ -214,7 +282,7 @@ function extension_api_checker() echo '
'; echo ''; - if ($api_execute) { + if ($api_execute === true) { echo '
'; echo ''.__('Result').''; echo __('URL').'
'; From 23f163ed2ac186c6611e42ee8b040f00c73ba9a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Tue, 28 Jun 2022 17:21:18 +0200 Subject: [PATCH 05/72] Fix api checker --- pandora_console/extensions/api_checker.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pandora_console/extensions/api_checker.php b/pandora_console/extensions/api_checker.php index ed2053036e..e301f5029f 100755 --- a/pandora_console/extensions/api_checker.php +++ b/pandora_console/extensions/api_checker.php @@ -192,6 +192,11 @@ function extension_api_checker() $row[] = html_print_input_text('pandora_url', $pandora_url, '', 50, 255, true); $table->data[] = $row; + $row = []; + $row[] = __('API Token').ui_print_help_tip(__('Use API Token instead API Pass, User and Password.'), true); + $row[] = html_print_input_text('token', $token, '', 50, 255, true); + $table->data[] = $row; + $row = []; $row[] = __('API Pass'); $row[] = html_print_input_password('apipass', $apipass, '', 50, 255, true); @@ -245,11 +250,6 @@ function extension_api_checker() $row[] = html_print_input_text('other_mode', $other_mode, '', 50, 255, true); $table2->data[] = $row; - $row = []; - $row[] = __('API Token'); - $row[] = html_print_input_text('token', $token, '', 50, 255, true); - $table2->data[] = $row; - $table3 = new stdClass(); $table3->data = []; From b175ffbd3ae2cd7255bd95c50ed24dbe3dd73ba7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Tue, 28 Jun 2022 17:22:09 +0200 Subject: [PATCH 06/72] Fixed db change --- pandora_console/pandoradb_data.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index 8f60368737..dcae30f15c 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -341,8 +341,8 @@ INSERT INTO `tmodule_inventory` (`id_module_inventory`, `id_os`, `name`, `descri -- -- Dumping data for table `tusuario` -- -INSERT INTO `tusuario` (`id_user`, `fullname`, `firstname`, `lastname`, `middlename`, `password`, `comments`, `last_connect`, `registered`, `email`, `phone`, `is_admin`, `language`, `block_size`, `section`, `data_section`, `metaconsole_access`) VALUES -('admin', 'Pandora', 'Pandora', 'Admin', '', '1da7ee7d45b96d0e1f45ee4ee23da560', 'Admin Pandora', 1232642121, 0, 'admin@example.com', '555-555-5555', 1, 'default', 0, 'Default', '', 'advanced'); +INSERT INTO `tusuario` (`id_user`, `fullname`, `firstname`, `lastname`, `middlename`, `password`, `comments`, `last_connect`, `registered`, `email`, `phone`, `is_admin`, `language`, `block_size`, `section`, `data_section`, `metaconsole_access`, `api_token`) VALUES +('admin', 'Pandora', 'Pandora', 'Admin', '', '1da7ee7d45b96d0e1f45ee4ee23da560', 'Admin Pandora', 1232642121, 0, 'admin@example.com', '555-555-5555', 1, 'default', 0, 'Default', '', 'advanced', 'pandora1234'); -- -- Dumping data for table `tusuario_perfil` From ded27ce411c22468448496ff6868b124773860cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Tue, 28 Jun 2022 17:24:22 +0200 Subject: [PATCH 07/72] Backend changes --- pandora_console/include/api.php | 30 ++++--- pandora_console/include/auth/mysql.php | 98 ++++++--------------- pandora_console/include/functions_api.php | 6 +- pandora_console/include/functions_users.php | 9 +- 4 files changed, 54 insertions(+), 89 deletions(-) diff --git a/pandora_console/include/api.php b/pandora_console/include/api.php index cb3dae8e72..c9672816a8 100644 --- a/pandora_console/include/api.php +++ b/pandora_console/include/api.php @@ -14,7 +14,7 @@ * |___| |___._|__|__|_____||_____|__| |___._| |___| |__|_|__|_______| * * ============================================================================ - * Copyright (c) 2005-2021 Artica Soluciones Tecnologicas + * Copyright (c) 2005-2022 Artica Soluciones Tecnologicas * Please see http://pandorafms.org for full contribution list * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -74,6 +74,7 @@ $password = get_parameter('pass', ''); $user = get_parameter('user', ''); $info = get_parameter('info', ''); $raw_decode = (bool) get_parameter('raw_decode', false); +$apiToken = (string) get_parameter('token'); $other = parseOtherParameter($otherSerialize, $otherMode, $raw_decode); $apiPassword = io_output_password( @@ -84,6 +85,7 @@ $apiPassword = io_output_password( ) ); +$apiTokenValid = (isset($_GET['token']) === true && (bool) api_token_check($apiToken)); $correctLogin = false; $no_login_msg = ''; @@ -94,8 +96,8 @@ ob_clean(); // Special call without checks to retrieve version and build of the Pandora FMS // This info is avalable from the web console without login // Don't change the format, it is parsed by applications. -if ($info == 'version') { - if (!$config['MR']) { +if ($info === 'version') { + if ((bool) $config['MR'] === false) { $config['MR'] = 0; } @@ -105,6 +107,7 @@ if ($info == 'version') { if (empty($apiPassword) === true || (empty($apiPassword) === false && $api_password === $apiPassword) + || $apiTokenValid === true ) { if (enterprise_hook('metaconsole_validate_origin', [get_parameter('server_auth')]) === true || enterprise_hook('console_validate_origin', [get_parameter('server_auth')]) === true @@ -118,7 +121,14 @@ if (empty($apiPassword) === true $correctLogin = true; } else if ((bool) isInACL($ipOrigin) === true) { // External access. - $user_in_db = process_user_login($user, $password, true); + // Token is valid. Bypass the credentials. + if ($apiTokenValid === true) { + $credentials = db_get_row('tusuario', 'api_token', $apiToken); + $user = $credentials['id_user']; + $password = $credentials['password']; + } + + $user_in_db = process_user_login($user, $password, true, $apiTokenValid); if ($user_in_db !== false) { $config['id_usuario'] = $user_in_db; // Compat. @@ -144,19 +154,19 @@ if (empty($apiPassword) === true $no_login_msg = 'Incorrect given API password'; } -if ($correctLogin) { +if ($correctLogin === true) { if (($op !== 'get') && ($op !== 'set') && ($op !== 'help')) { returnError('no_set_no_get_no_help', $returnType); } else { $function_name = ''; // Check if is an extension function and get the function name. - if ($op2 == 'extension') { + if ($op2 === 'extension') { $extension_api_url = $config['homedir'].'/'.EXTENSIONS_DIR.'/'.$ext_name.'/'.$ext_name.'.api.php'; // The extension API file must exist and the extension must be // enabled. - if (file_exists($extension_api_url) - && !in_array($ext_name, extensions_get_disabled_extensions()) + if (file_exists($extension_api_url) === true + && in_array($ext_name, extensions_get_disabled_extensions()) === false ) { include_once $extension_api_url; $function_name = 'apiextension_'.$op.'_'.$ext_function; @@ -164,7 +174,7 @@ if ($correctLogin) { } else { $function_name = 'api_'.$op.'_'.$op2; - if ($op == 'set' && $id) { + if ($op === 'set' && $id) { switch ($op2) { case 'update_agent': case 'add_module_in_conf': @@ -173,7 +183,7 @@ if ($correctLogin) { $agent = agents_locate_agent($id); if ($agent !== false) { $id_os = $agent['id_os']; - if ($id_os == 100) { + if ((int) $id_os === 100) { returnError( 'not_allowed_operation_cluster', $returnType diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index 67053ab0be..48e0145c4a 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -78,7 +78,7 @@ $config['admin_can_make_admin'] = true; * @return mixed False in case of error or invalid credentials, the username in * case it's correct. */ -function process_user_login($login, $pass, $api=false) +function process_user_login($login, $pass, $api=false, $passAlreadyEncrypted=false) { global $config; @@ -114,10 +114,10 @@ function process_user_login($login, $pass, $api=false) if ($config['fallback_local_auth'] || is_user_admin($login) || $local_user === true - || strtolower($config['auth']) == 'mysql' + || strtolower($config['auth']) === 'mysql' || (bool) $user_not_login === true ) { - return process_user_login_local($login, $pass, $api); + return process_user_login_local($login, $pass, $api, $passAlreadyEncrypted); } else { return false; } @@ -128,88 +128,44 @@ function process_user_login($login, $pass, $api=false) } -function process_user_login_local($login, $pass, $api=false) +function process_user_login_local($login, $pass, $api=false, $passAlreadyEncrypted=false) { global $config, $mysql_cache; - // Connect to Database - switch ($config['dbtype']) { - case 'mysql': - if (!$api) { - $sql = sprintf( - "SELECT `id_user`, `password` - FROM `tusuario` - WHERE `id_user` = '%s' AND `not_login` = 0 - AND `disabled` = 0", - $login - ); - } else { - $sql = sprintf( - "SELECT `id_user`, `password` - FROM `tusuario` - WHERE `id_user` = '%s' - AND `disabled` = 0", - $login - ); - } - break; - - case 'postgresql': - if (!$api) { - $sql = sprintf( - 'SELECT "id_user", "password" - FROM "tusuario" - WHERE "id_user" = \'%s\' AND "not_login" = 0 - AND "disabled" = 0', - $login - ); - } else { - $sql = sprintf( - 'SELECT "id_user", "password" - FROM "tusuario" - WHERE "id_user" = \'%s\' - AND "disabled" = 0', - $login - ); - } - break; - - case 'oracle': - if (!$api) { - $sql = sprintf( - 'SELECT id_user, password - FROM tusuario - WHERE id_user = \'%s\' AND not_login = 0 - AND disabled = 0', - $login - ); - } else { - $sql = sprintf( - 'SELECT id_user, password - FROM tusuario - WHERE id_user = \'%s\' - AND disabled = 0', - $login - ); - } - break; + if ($api === false) { + $sql = sprintf( + "SELECT `id_user`, `password` + FROM `tusuario` + WHERE `id_user` = '%s' AND `not_login` = 0 + AND `disabled` = 0", + $login + ); + } else { + $sql = sprintf( + "SELECT `id_user`, `password` + FROM `tusuario` + WHERE `id_user` = '%s' + AND `disabled` = 0", + $login + ); } $row = db_get_row_sql($sql); - // Check that row exists, that password is not empty and that password is the same hash - if ($row !== false && $row['password'] !== md5('') - && $row['password'] == md5($pass) + // Check that row exists, that password is not empty and that password is the same hash. + if (($row !== false && $row['password'] !== md5('') + && (string) $row['password'] === md5($pass)) + || ($passAlreadyEncrypted === true && (string) $row['password'] === (string) $pass) ) { // Login OK // Nick could be uppercase or lowercase (select in MySQL // is not case sensitive) // We get DB nick to put in PHP Session variable, // to avoid problems with case-sensitive usernames. - // Thanks to David Muñiz for Bug discovery :) + // Thanks to David Muñiz for Bug discovery :). $filter = ['id_usuario' => $login]; $user_profile = db_get_row_filter('tusuario_perfil', $filter); - if (!users_is_admin($login) && !$user_profile) { + if ((bool) users_is_admin($login) === false && (bool) $user_profile === false) { $mysql_cache['auth_error'] = 'User does not have any profile'; $config['auth_error'] = 'User does not have any profile'; return false; @@ -217,7 +173,7 @@ function process_user_login_local($login, $pass, $api=false) return $row['id_user']; } else { - if (!user_can_login($login)) { + if (user_can_login($login) === false) { $mysql_cache['auth_error'] = 'User only can use the API.'; $config['auth_error'] = 'User only can use the API.'; } else { diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index 2e7feb5e4c..29aafad983 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -17714,13 +17714,13 @@ function api_set_enable_disable_discovery_task($id_task, $thrash2, $other) * * @param string $token Token for check. * - * @return integer Id of user. If returns 0 there is not valid token. + * @return mixed Id of user. If returns 0 there is not valid token. */ function api_token_check(string $token) { if (empty($token) === true) { - return 0; + return -1; } else { - return (int) db_get_value('id_user', 'tusuario', 'api_token', $token); + return db_get_value('id_user', 'tusuario', 'api_token', $token); } } diff --git a/pandora_console/include/functions_users.php b/pandora_console/include/functions_users.php index 808e98d5dd..00a18afda5 100755 --- a/pandora_console/include/functions_users.php +++ b/pandora_console/include/functions_users.php @@ -886,6 +886,7 @@ function users_get_users_group_by_group($id_group) */ function api_token_generate() { + include_once 'functions_api.php'; // Generate a cryptographically secure chain. $generateToken = bin2hex(openssl_random_pseudo_bytes(16)); // Check if token exists in DB. @@ -898,15 +899,13 @@ function api_token_generate() /** * Returns User API Token * - * @param integer $idUser Id of the user. + * @param string $idUser Id of the user. * * @return string */ -function users_get_API_token(int $idUser) +function users_get_API_token(string $idUser) { - $apiToken = db_get_value('api_token', 'tusuario', 'id_user', $idUser); - - return $apiToken; + return db_get_value('api_token', 'tusuario', 'id_user', $idUser); } From c3dc1d820d454a1323aef8d5cdc9e8359efa3a90 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Tue, 28 Jun 2022 17:24:49 +0200 Subject: [PATCH 08/72] Frontend changes --- .../godmode/users/configure_user.php | 191 ++++++++++-------- pandora_console/include/javascript/pandora.js | 14 ++ pandora_console/include/styles/pandora.css | 8 + pandora_console/operation/users/user_edit.php | 81 +++++--- 4 files changed, 190 insertions(+), 104 deletions(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index cdeb218fa8..031e87635a 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -44,10 +44,7 @@ require_once $config['homedir'].'/include/functions_visual_map.php'; require_once $config['homedir'].'/include/functions_custom_fields.php'; enterprise_include_once('include/functions_profile.php'); -$meta = false; -if (enterprise_installed() && defined('METACONSOLE')) { - $meta = true; -} +$meta = is_metaconsole(); $isFunctionSkins = enterprise_include_once('include/functions_skins.php'); @@ -57,11 +54,10 @@ if (ENTERPRISE_NOT_HOOK !== enterprise_include('include/functions_policies.php') $enterprise_include = true; } -if ($enterprise_include) { +if ($enterprise_include === true) { enterprise_include_once('meta/include/functions_users_meta.php'); } - if (is_metaconsole() === false) { date_default_timezone_set('UTC'); include 'include/javascript/timezonepicker/includes/parser.inc'; @@ -112,13 +108,13 @@ if (is_metaconsole() === false) { // This defines the working user. Beware with this, old code get confusses // and operates with current logged user (dangerous). $id = get_parameter('id', get_parameter('id_user', '')); -// ID given as parameter +// ID given as parameter. $pure = get_parameter('pure', 0); $user_info = get_user_info($id); $is_err = false; -if (! check_acl($config['id_user'], 0, 'UM')) { +if ((bool) check_acl($config['id_user'], 0, 'UM') === false) { db_pandora_audit( AUDIT_LOG_ACL_VIOLATION, 'Trying to access User Management' @@ -130,7 +126,7 @@ if (! check_acl($config['id_user'], 0, 'UM')) { if (is_ajax() === true) { $delete_profile = (bool) get_parameter('delete_profile'); - if ($delete_profile) { + if ($delete_profile === true) { $id2 = (string) get_parameter('id_user'); $id_up = (int) get_parameter('id_user_profile'); @@ -160,7 +156,7 @@ if (is_ajax() === true) { if ($has_profile === false && $user_is_global_admin === false) { $result = delete_user($id2); - if ($result) { + if ($result === true) { db_pandora_audit( AUDIT_LOG_USER_MANAGEMENT, __('Deleted user %s', io_safe_output($id_user)) @@ -174,7 +170,7 @@ if (is_ajax() === true) { ); // Delete the user in all the consoles. - if (defined('METACONSOLE')) { + if (is_metaconsole() === true) { $servers = metaconsole_get_servers(); foreach ($servers as $server) { // Connect to the remote console. @@ -182,7 +178,7 @@ if (is_ajax() === true) { // Delete the user. $result = delete_user($id_user); - if ($result) { + if ($result === true) { db_pandora_audit( AUDIT_LOG_USER_MANAGEMENT, __('Deleted user %s from metaconsole', io_safe_output($id_user)) @@ -193,10 +189,14 @@ if (is_ajax() === true) { metaconsole_restore_db(); // Log to the metaconsole too. - if ($result) { + if ($result === true) { db_pandora_audit( AUDIT_LOG_USER_MANAGEMENT, - __('Deleted user %s from %s', io_safe_input($id_user), io_safe_input($server['server_name'])) + __( + 'Deleted user %s from %s', + io_safe_input($id_user), + io_safe_input($server['server_name']) + ) ); } @@ -217,14 +217,8 @@ if (is_ajax() === true) { $tab = get_parameter('tab', 'user'); -if ($id) { - $header_title = ' » '.__('Update user'); -} else { - $header_title = ' » '.__('Create user'); -} - // Header. -if ($meta) { +if (is_metaconsole() === true) { user_meta_print_header(); $sec = 'advanced'; } else { @@ -255,19 +249,34 @@ if ($meta) { $buttons[$tab]['active'] = true; - ui_print_page_header( - __('User detail editor').$header_title, + ui_print_standard_header( + (empty($id) === false) ? __('Update user') : __('Create user'), 'images/gm_users.png', false, '', true, - $buttons + $buttons, + [ + [ + 'link' => '', + 'label' => __('Profiles'), + ], + [ + 'link' => ui_get_full_url('index.php?sec=gusuarios&sec2=godmode/users/user_list'), + 'label' => __('Manage users'), + ], + [ + 'link' => '', + 'label' => __('User Detail Editor'), + ], + ] ); + $sec = 'gusuarios'; } -if ($config['user_can_update_info']) { +if ((bool) $config['user_can_update_info'] === true) { $view_mode = false; } else { $view_mode = true; @@ -281,14 +290,14 @@ $renewAPIToken = (bool) get_parameter('renewAPIToken'); $status = get_parameter('status', -1); $json_profile = get_parameter('json_profile', ''); -// Reset status var if current action is not update_user -if ($new_user || $create_user || $add_profile - || $delete_profile || $update_user +// Reset status var if current action is not update_user. +if ($new_user === true || $create_user === true || $add_profile === true + || $delete_profile === true || $update_user === true ) { $status = -1; } -if ($new_user && $config['admin_can_add_user']) { +if ($new_user === true && (bool) $config['admin_can_add_user'] === true) { $user_info = []; $id = ''; $user_info['fullname'] = ''; @@ -312,29 +321,31 @@ if ($new_user && $config['admin_can_add_user']) { $user_info['section'] = ''; $user_info['data_section'] = ''; - // This attributes are inherited from global configuration + // This attributes are inherited from global configuration. $user_info['block_size'] = $config['block_size']; - if (enterprise_installed() && is_metaconsole() === true) { + if (enterprise_installed() === true && is_metaconsole() === true) { $user_info['metaconsole_agents_manager'] = 0; $user_info['metaconsole_assigned_server'] = ''; $user_info['metaconsole_access_node'] = 0; } - if ($config['ehorus_user_level_conf']) { + if ((bool) $config['ehorus_user_level_conf'] === true) { $user_info['ehorus_user_level_user'] = ''; $user_info['ehorus_user_level_pass'] = ''; $user_info['ehorus_user_level_enabled'] = true; } } -if ($create_user) { - if (! $config['admin_can_add_user']) { - ui_print_error_message(__('The current authentication scheme doesn\'t support creating users on %s', get_product_name())); +if ($create_user === true) { + if ((bool) $config['admin_can_add_user'] === false) { + ui_print_error_message( + __('The current authentication scheme doesn\'t support creating users on %s', get_product_name()) + ); return; } - if (html_print_csrf_error()) { + if (html_print_csrf_error() === true) { return; } @@ -375,20 +386,20 @@ if ($create_user) { $values['block_size'] = (int) get_parameter('block_size', $config['block_size']); $values['section'] = get_parameter('section'); - if (($values['section'] == 'Event list') || ($values['section'] == 'Group view') || ($values['section'] == 'Alert detail') || ($values['section'] == 'Tactical view') || ($values['section'] == 'Default')) { + if (($values['section'] === 'Event list') || ($values['section'] === 'Group view') || ($values['section'] === 'Alert detail') || ($values['section'] === 'Tactical view') || ($values['section'] === 'Default')) { $values['data_section'] = ''; - } else if ($values['section'] == 'Dashboard') { + } else if ($values['section'] === 'Dashboard') { $values['data_section'] = $dashboard; - } else if (io_safe_output($values['section']) == 'Visual console') { + } else if (io_safe_output($values['section']) === 'Visual console') { $values['data_section'] = $visual_console; - } else if ($values['section'] == 'Other' || io_safe_output($values['section']) == 'External link') { + } else if ($values['section'] === 'Other' || io_safe_output($values['section']) === 'External link') { $values['data_section'] = get_parameter('data_section'); } if (enterprise_installed()) { $values['force_change_pass'] = 1; $values['last_pass_change'] = date('Y/m/d H:i:s', get_system_time()); - if (defined('METACONSOLE')) { + if (is_metaconsole() === true) { $values['metaconsole_access'] = get_parameter('metaconsole_access', 'basic'); $values['metaconsole_agents_manager'] = ($user_is_admin == 1 ? 1 : get_parameter('metaconsole_agents_manager', '0')); $values['metaconsole_assigned_server'] = get_parameter('metaconsole_assigned_server', ''); @@ -402,7 +413,7 @@ if ($create_user) { $values['strict_acl'] = (bool) get_parameter('strict_acl', false); $values['session_time'] = (int) get_parameter('session_time', 0); - // eHorus user level conf + // Ehorus user level conf. if ($config['ehorus_user_level_conf']) { $values['ehorus_user_level_enabled'] = (bool) get_parameter('ehorus_user_level_enabled', false); if ($values['ehorus_user_level_enabled'] === true) { @@ -551,7 +562,7 @@ if ($create_user) { } if ($update_user) { - if (html_print_csrf_error()) { + if (html_print_csrf_error() === true) { return; } @@ -568,7 +579,9 @@ if ($update_user) { $values['timezone'] = (string) get_parameter('timezone'); $values['default_event_filter'] = (int) get_parameter('default_event_filter'); $values['default_custom_view'] = (int) get_parameter('default_custom_view'); - $values['api_token'] = ((bool) get_parameter('renewAPIToken') === true) ? api_token_generate() : (string) get_parameter('api_token'); + // API Token information. + $apiTokenRenewed = (bool) get_parameter('renewAPIToken'); + $values['api_token'] = ($apiTokenRenewed === true) ? api_token_generate() : users_get_API_token($values['id_user']); if (users_is_admin() === false && (bool) $values['is_admin'] !== false) { db_pandora_audit( @@ -580,7 +593,7 @@ if ($update_user) { exit; } - // eHorus user level conf. + // Ehorus user level conf. $values['ehorus_user_level_enabled'] = (bool) get_parameter('ehorus_user_level_enabled', false); $values['ehorus_user_level_user'] = (string) get_parameter('ehorus_user_level_user'); $values['ehorus_user_level_pass'] = (string) get_parameter('ehorus_user_level_pass'); @@ -597,17 +610,17 @@ if ($update_user) { $values['block_size'] = get_parameter('block_size', $config['block_size']); $values['section'] = get_parameter('section'); - if (($values['section'] == 'Event list') || ($values['section'] == 'Group view') || ($values['section'] == 'Alert detail') || ($values['section'] == 'Tactical view') || ($values['section'] == 'Default')) { + if (($values['section'] === 'Event list') || ($values['section'] === 'Group view') || ($values['section'] === 'Alert detail') || ($values['section'] === 'Tactical view') || ($values['section'] === 'Default')) { $values['data_section'] = ''; - } else if ($values['section'] == 'Dashboard') { + } else if ($values['section'] === 'Dashboard') { $values['data_section'] = $dashboard; - } else if (io_safe_output($values['section']) == 'Visual console') { + } else if (io_safe_output($values['section']) === 'Visual console') { $values['data_section'] = $visual_console; - } else if ($values['section'] == 'Other' || io_safe_output($values['section']) == 'External link') { + } else if ($values['section'] === 'Other' || io_safe_output($values['section']) === 'External link') { $values['data_section'] = get_parameter('data_section'); } - if (enterprise_installed() && defined('METACONSOLE')) { + if (enterprise_installed() === true && is_metaconsole() === true) { $values['metaconsole_access'] = get_parameter('metaconsole_access'); $values['metaconsole_agents_manager'] = get_parameter('metaconsole_agents_manager', '0'); $values['metaconsole_assigned_server'] = get_parameter('metaconsole_assigned_server', ''); @@ -734,7 +747,7 @@ if ($update_user) { $has_skin = true; } - if (enterprise_installed() && defined('METACONSOLE')) { + if (enterprise_installed() === true && is_metaconsole() === true) { $info .= ',"Wizard access":"'.$values['metaconsole_access'].'"}'; $has_wizard = true; } else if ($has_skin) { @@ -756,7 +769,7 @@ if ($update_user) { ui_print_result_message( $res1, - __('User info successfully updated'), + ($apiTokenRenewed === true) ? __('You have generated a new API Token.') : __('User info successfully updated'), __('Error updating user info (no change?)') ); } @@ -779,7 +792,7 @@ if ($update_user) { } foreach ($profiles as $profile) { - $count_groups = ($count_groups + 1); + $count_groups++; $arr_tags = explode(',', $profile['tags']); $count_tags = ($count_tags + count($arr_tags)); } @@ -792,7 +805,7 @@ if ($update_user) { $user_info = $values; } -if ($status != -1) { +if ((int) $status !== -1) { ui_print_result_message( $status, __('User info successfully updated'), @@ -862,12 +875,13 @@ if (!users_is_admin() && $config['id_user'] != $id && !$new_user) { } } -if (defined('METACONSOLE')) { - if ($id) { - echo '
'.__('Update User').'
'; - } else { - echo '
'.__('Create User').'
'; - } +if (is_metaconsole() === true) { + html_print_div( + [ + 'class' => 'user_form_title', + 'content' => (empty($id) === true) ? __('Create User') : __('Update User'), + ] + ); } if (!$new_user) { @@ -875,6 +889,42 @@ if (!$new_user) { $user_id .= ''.$id.''; $user_id .= html_print_input_hidden('id_user', $id, true); $user_id .= '
'; + $user_id .= '

'.__('API Token').'

'; + $user_id .= html_print_anchor( + [ + 'onClick' => sprintf( + 'javascript:renewAPIToken(\'%s\', \'%s\', \'%s\')', + __('Warning'), + __('The API token will be renewed. After this action, the last token you were using will not work. Are you sure?'), + 'user_profile_form', + ), + 'content' => html_print_image( + 'images/icono-refrescar.png', + true, + ['class' => 'renew_api_token_image clickable'] + ), + 'class' => 'renew_api_token_link', + ], + true + ); + + $user_id .= html_print_anchor( + [ + 'onClick' => sprintf( + 'javascript:showAPIToken(\'%s\', \'%s\')', + __('API Token'), + base64_encode(__('Your API Token is:').' 
'.users_get_API_token($id).'
 '.__('Please, avoid share this string with others.')), + ), + 'content' => html_print_image( + 'images/eye_show.png', + true, + ['class' => 'renew_api_token_image clickable'] + ), + 'class' => 'renew_api_token_link', + ], + true + ); + $user_id .= '
'; } else { $user_id = '
'.html_print_input_text_extended( 'id_user', @@ -893,7 +943,7 @@ if (!$new_user) { ).'
'; } -if (is_user_admin($id)) { +if (is_user_admin($id) === true) { $avatar = html_print_image( 'images/people_1.png', true, @@ -1286,23 +1336,6 @@ $session_time .= html_print_input_text( 'class="input_line_small"' ).'
'; -$apiToken = '
'; -$apiToken .= '

'.__('API Token'); -$apiToken .= ui_print_help_tip( - __('The next string is your passphrase for use with the API instead user/password.'), - true -).'

'; -$apiToken .= html_print_input_hidden('api_token', $user_info['api_token'], true); -$apiToken .= ''.$user_info['api_token'].'   '; -$apiToken .= sprintf( - '%s', - __('Warning'), - __('The API token will be renewed. After this action, the last token you were using will not work. Are you sure?'), - 'user_profile_form', - __('Renew') -); -$apiToken .= '
'; - $user_groups = implode(',', array_keys((users_get_groups($id, 'AR', $display_all_group)))); if (empty($user_groups) === false) { @@ -1457,7 +1490,7 @@ if ($id != '' && !$is_err) { echo '
-

Extra info

'.$email.$phone.$not_login.$local_user.$session_time.$apiToken.'
+

Extra info

'.$email.$phone.$not_login.$local_user.$session_time.'
'.$language.$access_or_pagination.$skin.$home_screen.$default_event_filter.$double_authentication.'
diff --git a/pandora_console/include/javascript/pandora.js b/pandora_console/include/javascript/pandora.js index b12745afdf..d6dcbed25e 100644 --- a/pandora_console/include/javascript/pandora.js +++ b/pandora_console/include/javascript/pandora.js @@ -2076,3 +2076,17 @@ function renewAPIToken(title, message, form) { } }); } + +/** + * Show Dialog for view the API token. + * + * @param {string} title Title for show. + * @param {string} message Base64 encoded message for show. + */ +function showAPIToken(title, message) { + confirmDialog({ + title: title, + message: atob(message), + hideCancelButton: true + }); +} diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index 83f2a89ac2..07c58ad27c 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -9038,6 +9038,14 @@ div#err_msg_centralised { width: 75%; } +.renew_api_token_link { + margin: 3px 0.5em 0 0; + float: right; +} + +.renew_api_token_image { + width: 16px; +} @media screen and (max-width: 1369px) { .div-col { width: 50%; diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index bc589bc763..7d12f8ec52 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -80,10 +80,12 @@ if (isset($_GET['modified']) && !$view_mode) { $upd_info['id_skin'] = get_parameter('skin', $user_info['id_skin']); $upd_info['default_event_filter'] = get_parameter('event_filter', null); $upd_info['block_size'] = get_parameter('block_size', $config['block_size']); - $upd_info['api_token'] = ((bool) get_parameter('renewAPIToken') === true) ? api_token_generate() : (string) get_parameter('api_token'); + // API Token information. + $apiTokenRenewed = (bool) get_parameter('renewAPIToken'); + $upd_info['api_token'] = ($apiTokenRenewed === true) ? api_token_generate() : users_get_API_token($config['id_user']); $default_block_size = get_parameter('default_block_size', 0); - if ($default_block_size) { + if ($default_block_size > 0) { $upd_info['block_size'] = 0; } @@ -159,17 +161,17 @@ if (isset($_GET['modified']) && !$view_mode) { } else if ($password_new !== 'NON-INIT') { $error_msg = __('Passwords didn\'t match or other problem encountered while updating passwords'); } - } else if (empty($password_new) && empty($password_confirm)) { + } else if (empty($password_new) === true && empty($password_confirm) === true) { $return = true; - } else if (empty($password_new) || empty($password_confirm)) { + } else if (empty($password_new) === true || empty($password_confirm) === true) { $return = false; } // No need to display "error" here, because when no update is needed // (no changes in data) SQL function returns 0 (FALSE), but is not an error, // just no change. Previous error message could be confussing to the user. - if ($return) { - if (!empty($password_new) && !empty($password_confirm)) { + if ($return !== false) { + if (empty($password_new) === false && empty($password_confirm) === false) { $success_msg = __('Password successfully updated'); } @@ -182,9 +184,13 @@ if (isset($_GET['modified']) && !$view_mode) { if ($return_update_user === false) { $error_msg = __('Error updating user info'); } else if ($return_update_user == true) { - $success_msg = __('User info successfully updated'); + if ($apiTokenRenewed === true) { + $success_msg = __('You have generated a new API Token.'); + } else { + $success_msg = __('User info successfully updated'); + } } else { - if (!empty($password_new) && !empty($password_confirm)) { + if (empty($password_new) === false && empty($password_confirm) === false) { $success_msg = __('Password successfully updated'); } else if ($upd_info['id_skin'] !== $user_info['id_skin']) { $success_msg = __('Skin successfully updated'); @@ -224,7 +230,7 @@ if (isset($_GET['modified']) && !$view_mode) { } // Prints action status for current message. -if ($status != -1) { +if ((int) $status !== -1) { ui_print_result_message( $status, __('User info successfully updated'), @@ -259,16 +265,41 @@ if (is_metaconsole() === false && is_management_allowed() === false) { $user_id = '

'.__('User ID').':

'; $user_id .= ''.$id.'
'; -$user_id .= '

'.__('API Token').':

'; -$user_id .= html_print_input_hidden('api_token', $user_info['api_token'], true); -$user_id .= sprintf( - '%s', - __('Warning'), - __('The API token will be renewed. After this action, the last token you were using will not work. Are you sure?'), - 'user_profile_form', - __('Renew') +$user_id .= '

'.__('API Token').'

'; +$user_id .= html_print_anchor( + [ + 'onClick' => sprintf( + 'javascript:renewAPIToken(\'%s\', \'%s\', \'%s\')', + __('Warning'), + __('The API token will be renewed. After this action, the last token you were using will not work. Are you sure?'), + 'user_profile_form', + ), + 'content' => html_print_image( + 'images/icono-refrescar.png', + true, + ['class' => 'renew_api_token_image clickable'] + ), + 'class' => 'renew_api_token_link', + ], + true +); + +$user_id .= html_print_anchor( + [ + 'onClick' => sprintf( + 'javascript:showAPIToken(\'%s\', \'%s\')', + __('API Token'), + base64_encode(__('Your API Token is:').'
'.users_get_API_token($config['id_user']).'
'.__('Please, avoid share this string with others.')), + ), + 'content' => html_print_image( + 'images/eye_show.png', + true, + ['class' => 'renew_api_token_image clickable'] + ), + 'class' => 'renew_api_token_link', + ], + true ); -$user_id .= '
'.$user_info['api_token'].''; $user_id .= '
'; $full_name = '
'.html_print_input_text_extended( @@ -288,7 +319,7 @@ $full_name = '
'.html_print_input_text_extended ).'
'; // Show "Picture" (in future versions, why not, allow users to upload it's own avatar here. -if (is_user_admin($id)) { +if (is_user_admin($id) === true) { $avatar = html_print_image('images/people_1.png', true, ['class' => 'user_avatar']); } else { $avatar = html_print_image('images/people_2.png', true, ['class' => 'user_avatar']); @@ -646,10 +677,10 @@ foreach ($timezones as $timezone_name => $tz) { } } -if (is_metaconsole()) { - echo '
'; +if (is_metaconsole() === true) { + echo ''; } else { - echo ''; + echo ''; } html_print_input_hidden('id', $id, false, false, false, 'id'); @@ -668,7 +699,7 @@ if (is_metaconsole()) { -if (!is_metaconsole()) { +if (is_metaconsole() === false) { echo '
@@ -677,10 +708,10 @@ if (!is_metaconsole()) { } echo '
-
+
'.$comments.'
-
+
'; if ($config['ehorus_enabled'] && $config['ehorus_user_level_conf']) { From 8ffc5aef97c8f599bdc96115fc470265b10e242b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Gonz=C3=A1lez?= Date: Wed, 29 Jun 2022 09:14:21 +0200 Subject: [PATCH 09/72] Minor improvements --- .../godmode/users/configure_user.php | 17 ++++++++++------- pandora_console/include/functions_users.php | 8 +++++++- pandora_console/operation/users/user_edit.php | 10 ++++++++-- 3 files changed, 25 insertions(+), 10 deletions(-) diff --git a/pandora_console/godmode/users/configure_user.php b/pandora_console/godmode/users/configure_user.php index 031e87635a..b2280d9446 100644 --- a/pandora_console/godmode/users/configure_user.php +++ b/pandora_console/godmode/users/configure_user.php @@ -425,11 +425,8 @@ if ($create_user === true) { } } - // Generate a new API Token if user has login capability. - if ($values['not_login'] === false) { - // Generate new API token. - $values['api_token'] = api_token_generate(); - } + // Generate new API token. + $values['api_token'] = api_token_generate(); if (empty($id) === true) { ui_print_error_message(__('User ID cannot be empty')); @@ -901,7 +898,10 @@ if (!$new_user) { 'content' => html_print_image( 'images/icono-refrescar.png', true, - ['class' => 'renew_api_token_image clickable'] + [ + 'class' => 'renew_api_token_image clickable', + 'title' => __('Renew API Token'), + ] ), 'class' => 'renew_api_token_link', ], @@ -918,7 +918,10 @@ if (!$new_user) { 'content' => html_print_image( 'images/eye_show.png', true, - ['class' => 'renew_api_token_image clickable'] + [ + 'class' => 'renew_api_token_image clickable', + 'title' => __('Show API Token'), + ] ), 'class' => 'renew_api_token_link', ], diff --git a/pandora_console/include/functions_users.php b/pandora_console/include/functions_users.php index 00a18afda5..82fc2b2362 100755 --- a/pandora_console/include/functions_users.php +++ b/pandora_console/include/functions_users.php @@ -905,7 +905,13 @@ function api_token_generate() */ function users_get_API_token(string $idUser) { - return db_get_value('api_token', 'tusuario', 'id_user', $idUser); + $output = db_get_value('api_token', 'tusuario', 'id_user', $idUser); + + if (empty($output) === true) { + $output = '<< '.__('NONE').' >>'; + } + + return $output; } diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index 7d12f8ec52..f6ebf682f7 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -277,7 +277,10 @@ $user_id .= html_print_anchor( 'content' => html_print_image( 'images/icono-refrescar.png', true, - ['class' => 'renew_api_token_image clickable'] + [ + 'class' => 'renew_api_token_image clickable', + 'title' => __('Renew API Token'), + ] ), 'class' => 'renew_api_token_link', ], @@ -294,7 +297,10 @@ $user_id .= html_print_anchor( 'content' => html_print_image( 'images/eye_show.png', true, - ['class' => 'renew_api_token_image clickable'] + [ + 'class' => 'renew_api_token_image clickable', + 'title' => __('Show API Token'), + ] ), 'class' => 'renew_api_token_link', ], From 067b7a821f0980c2741b9ef65ca0fb19ed23f012 Mon Sep 17 00:00:00 2001 From: Calvo Date: Tue, 13 Sep 2022 12:31:09 +0200 Subject: [PATCH 10/72] WIP:Move inventory to open --- pandora_server/lib/PandoraFMS/Core.pm | 272 ++++++++++++++++++++ pandora_server/lib/PandoraFMS/DataServer.pm | 3 +- 2 files changed, 273 insertions(+), 2 deletions(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 589d409357..35a8b6869a 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -4987,6 +4987,278 @@ sub process_inc_abs_data ($$$$$$) { return $diff; } +################################################################################ +################################################################################ +## Inventory XML data +################################################################################ +################################################################################ + + +################################################################################ +# Process inventory data, creating the module if necessary. +################################################################################ +sub process_inventory_data ($$$$$$$) { + my ($pa_config, $data, $server_id, $agent_name, + $interval, $timestamp, $dbh) = @_; + + foreach my $inventory (@{$data->{'inventory'}}) { + + # Process inventory modules + foreach my $module_data (@{$inventory->{'inventory_module'}}) { + + my $module_name = get_tag_value ($module_data, 'name', ''); + + # Unnamed module + next if ($module_name eq ''); + + # Process inventory data + my $data_list = ''; + foreach my $list (@{$module_data->{'datalist'}}) { + + # Empty list + next unless defined ($list->{'data'}); + + foreach my $data (@{$list->{'data'}}) { + $data_list .= $data . "\n"; + } + } + + next if ($data_list eq ''); + process_inventory_module_data ($pa_config, $data_list, $server_id, $agent_name, $module_name, $interval, $timestamp, $dbh); + } + } +} + +################################################################################ +# Process inventory module data, creating the module if necessary. +################################################################################ +sub process_inventory_module_data ($$$$$$$$) { + my ($pa_config, $data, $server_id, $agent_name, + $module_name, $interval, $timestamp, $dbh) = @_; + + logger ($pa_config, "Processing inventory module '$module_name' for agent '$agent_name'.", 10); + + # Get agent data + my $agent = get_db_single_row ($dbh, + 'SELECT * FROM tagente WHERE nombre = ?', safe_input($agent_name)); + if (! defined ($agent)) { + logger ($pa_config, "Agent '$agent_name' not found for inventory module '$module_name'.", 3); + return; + } + + # Parse the timestamp and process the module + if ($timestamp !~ /(\d+)\/(\d+)\/(\d+) +(\d+):(\d+):(\d+)/ && + $timestamp !~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/) { + logger($pa_config, "Invalid timestamp '$timestamp' from module '$module_name' agent '$agent_name'.", 3); + return; + } + my $utimestamp; + eval { + $utimestamp = strftime("%s", $6, $5, $4, $3, $2 - 1, $1 - 1900); + }; + if ($@) { + logger($pa_config, "Invalid timestamp '$timestamp' from module '$module_name' agent '$agent_name'.", 3); + return; + } + + # Get module data or create it if it does not exist + my $inventory_module = get_db_single_row ($dbh, + 'SELECT tagent_module_inventory.*, tmodule_inventory.name + FROM tagent_module_inventory, tmodule_inventory + WHERE tagent_module_inventory.id_module_inventory = tmodule_inventory.id_module_inventory + AND id_agente = ? AND name = ?', + $agent->{'id_agente'}, safe_input($module_name)); + + + + if (! defined ($inventory_module)) { + # Get the module + my $module_id = get_db_value ($dbh, + 'SELECT id_module_inventory FROM tmodule_inventory WHERE name = ? AND id_os = ?', + safe_input($module_name), $agent->{'id_os'}); + return unless defined ($module_id); + + my $id_agent_module_inventory = 0; + # Update the module data + + $id_agent_module_inventory = db_insert ($dbh, 'id_agent_module_inventory', + "INSERT INTO tagent_module_inventory (id_agente, id_module_inventory, + ${RDBMS_QUOTE}interval${RDBMS_QUOTE}, data, timestamp, utimestamp, flag) + VALUES (?, ?, ?, ?, ?, ?, ?)", + $agent->{'id_agente'}, $module_id, $interval, safe_input($data), $timestamp, $utimestamp, 0); + + + return unless ($id_agent_module_inventory > 0); + + db_do ($dbh, + 'INSERT INTO tagente_datos_inventory (id_agent_module_inventory, data, timestamp, utimestamp) + VALUES (?, ?, ?, ?)', + $id_agent_module_inventory, safe_input($data), $timestamp, $utimestamp); + + return; + } + + process_inventory_module_diff($pa_config, safe_input($data), + $inventory_module, $timestamp, $utimestamp, $dbh, $interval); +} + +################################################################################ +# Searching differences between incoming module and stored module, +# creating/updating module and event +################################################################################ +sub process_inventory_module_diff ($$$$$$;$) { + my ($pa_config, $incoming_data, $inventory_module, $timestamp, $utimestamp, $dbh, $interval) = @_; + + my $stored_data = $inventory_module->{'data'}; + my $agent_id = $inventory_module->{'id_agente'}; + my $stored_utimestamp = $inventory_module->{'utimestamp'}; + my $agent_module_inventory_id = $inventory_module->{'id_agent_module_inventory'}; + my $module_inventory_id = $inventory_module->{'id_module_inventory'}; + + + process_inventory_alerts($pa_config, $incoming_data, + $inventory_module, $timestamp, $utimestamp, $dbh, $interval); + + # If there were any changes generate an event and save the new data + if (decode('UTF-8', $stored_data) ne $incoming_data) { + my $inventory_db = $stored_data; + my $inventory_new = $incoming_data; + my @inventory = split('\n', $inventory_new); + my $diff_new = ""; + my $diff_delete = ""; + + foreach my $inv (@inventory) { + my $inv_clean = quotemeta($inv); + if($inventory_db =~ m/$inv_clean/) { + $inventory_db =~ s/$inv_clean//g; + $inventory_new =~ s/$inv_clean//g; + } + else { + $diff_new .= "$inv\n"; + } + } + + # If any register is in the stored yet, we store as deleted + $inventory_db =~ s/\n\n*/\n/g; + $inventory_db =~ s/^\n//g; + + $diff_delete = $inventory_db; + + if($diff_new ne "") { + $diff_new = " NEW: '$diff_new' "; + } + if($diff_delete ne "") { + $diff_delete = " DELETED: '$diff_delete' "; + } + + db_do ($dbh, 'INSERT INTO tagente_datos_inventory (id_agent_module_inventory, data, timestamp, utimestamp) VALUES (?, ?, ?, ?)', + $agent_module_inventory_id, $incoming_data, $timestamp, $utimestamp); + + # Do not generate an event the first time the module runs + if ($stored_utimestamp != 0) { + my $inventory_changes_blacklist = pandora_get_config_value ($dbh, 'inventory_changes_blacklist'); + my $inventory_module_blocked = 0; + + if($inventory_changes_blacklist ne "") { + foreach my $inventory_id_excluded (split (',', $inventory_changes_blacklist)) { + # If the inventory_module_id is in the blacklist, the change will not be processed + if($inventory_module->{'id_module_inventory'} == $inventory_id_excluded) { + logger ($pa_config, "Inventory change omitted on inventory #$inventory_id_excluded due be on the changes blacklist", 10); + $inventory_module_blocked = 1; + } + } + } + + # If the inventory_module_id is in the blacklist, the change will not be processed + if ($inventory_module_blocked == 0) { + my $inventory_module_name = get_db_value ($dbh, "SELECT name FROM tmodule_inventory WHERE id_module_inventory = ?", $module_inventory_id); + return unless defined ($inventory_module_name); + + my $agent_name = get_agent_name ($dbh, $agent_id); + return unless defined ($agent_name); + + my $agent_alias = get_agent_alias ($dbh, $agent_id); + return unless defined ($agent_alias); + + my $group_id = get_agent_group ($dbh, $agent_id); + + + + $stored_data =~ s/&#x20;/ /g; + $incoming_data =~ s/&#x20;/ /g; + + my @values_stored = split(' ', $stored_data); + my @finalc_stored = (); + my @values_incoming = split(' ', $incoming_data); + my @finalc_incoming = (); + my @finalc_compare_added = (); + my @finalc_compare_deleted = (); + my @finalc_compare_updated = (); + my @finalc_compare_updated_del = (); + my @finalc_compare_updated_add = (); + my $temp_compare = (); + my $final_d = ''; + my $final_a = ''; + my $final_u = ''; + + + + foreach my $i (0 .. $#values_stored) { + $finalc_stored[$i] = $values_stored[$i]; + + if ( grep $_ eq $values_stored[$i], @values_incoming ) { + + } else { + # Use 'safe_output' to avoid double encode the entities when creating the event with 'pandora_event' + $final_d .= "DELETED RECORD: ".safe_output($values_stored[$i])."\n"; + } + } + + foreach my $i (0 .. $#values_incoming) { + $finalc_incoming[$i] = $values_incoming[$i]; + + if ( grep $_ eq $values_incoming[$i], @values_stored ) { + + } else { + # Use 'safe_output' to avoid double encode the entities when creating the event with 'pandora_event' + $final_a .= "NEW RECORD: ".safe_output($values_incoming[$i])."\n"; + } + } + + # foreach my $i (0 .. $#finalc_compare_deleted) { + # $finalc_compare_updated_del[$i] = split(';', $finalc_compare_deleted[$i]); + # $finalc_compare_updated_add[$i] = split(';', $finalc_compare_added[$i]); + # if($finalc_compare_updated_del[$i] ~~ @finalc_compare_updated_add){ + # $finalc_compare_updated[$i] = $finalc_compare_updated_del[$i]; + # } + # $finalc_compare_updated[$i] =~ s/DELETED RECORD:/UPDATED RECORD:/g; + # $finalc_compare_updated[$i] =~ s/NEW RECORD://g; + # } + + + pandora_event ($pa_config, "Configuration change:\n".$final_d.$final_a." for agent '" . safe_output($agent_alias) . "' module '" . safe_output($inventory_module_name) . "'.", $group_id, $agent_id, 0, 0, 0, "configuration_change", 0, $dbh); + } + } + } + + # Update the module data + if (defined($interval)) { + db_do ($dbh, 'UPDATE tagent_module_inventory + SET'. $RDBMS_QUOTE . 'interval' . + $RDBMS_QUOTE . '=?, data=?, timestamp=?, utimestamp=? + WHERE id_agent_module_inventory=?', + $interval, $incoming_data, $timestamp, + $utimestamp, $agent_module_inventory_id); + + } + else { + db_do ($dbh, 'UPDATE tagent_module_inventory + SET data = ?, timestamp = ?, utimestamp = ? + WHERE id_agent_module_inventory = ?', + $incoming_data, $timestamp, $utimestamp, $agent_module_inventory_id); + } +} + sub log4x_get_severity_num($) { my ($data_object) = @_; my $data = $data_object->{'severity'}; diff --git a/pandora_server/lib/PandoraFMS/DataServer.pm b/pandora_server/lib/PandoraFMS/DataServer.pm index 209859e9a1..e53692170e 100644 --- a/pandora_server/lib/PandoraFMS/DataServer.pm +++ b/pandora_server/lib/PandoraFMS/DataServer.pm @@ -628,8 +628,7 @@ sub process_xml_data ($$$$$) { # Process inventory modules - enterprise_hook('process_inventory_data', [$pa_config, $data, $server_id, $agent_name, - $interval, $timestamp, $dbh]); + process_inventory_data($pa_config, $data, $server_id, $agent_name, $interval, $timestamp, $dbh); # Process log modules enterprise_hook('process_log_data', [$pa_config, $data, $server_id, $agent_name, From da0dad0148623b456c3a40ecb7b1759d52116b17 Mon Sep 17 00:00:00 2001 From: Calvo Date: Wed, 14 Sep 2022 18:12:39 +0200 Subject: [PATCH 11/72] WIP:Move inventory to open --- .../godmode/agentes/configurar_agente.php | 19 +- .../godmode/agentes/inventory_manager.php | 262 ++++ pandora_console/godmode/menu.php | 4 +- .../modules/manage_inventory_modules.php | 387 ++++++ .../modules/manage_inventory_modules_form.php | 153 +++ .../include/functions_inventory.php | 1147 +++++++++++++++++ pandora_console/include/functions_menu.php | 2 +- .../include/functions_planned_downtimes.php | 3 +- .../include/functions_reporting_html.php | 1 + pandora_console/include/functions_ui.php | 256 ++++ .../operation/agentes/agent_inventory.php | 281 ++++ .../operation/agentes/ver_agente.php | 18 +- .../operation/inventory/inventory.php | 551 ++++++++ pandora_console/operation/menu.php | 6 +- pandora_server/bin/pandora_server | 3 + pandora_server/lib/PandoraFMS/Core.pm | 545 ++++---- .../lib/PandoraFMS/InventoryServer.pm | 267 ++++ 17 files changed, 3626 insertions(+), 279 deletions(-) create mode 100644 pandora_console/godmode/agentes/inventory_manager.php create mode 100644 pandora_console/godmode/modules/manage_inventory_modules.php create mode 100644 pandora_console/godmode/modules/manage_inventory_modules_form.php create mode 100644 pandora_console/include/functions_inventory.php create mode 100644 pandora_console/operation/agentes/agent_inventory.php create mode 100755 pandora_console/operation/inventory/inventory.php create mode 100644 pandora_server/lib/PandoraFMS/InventoryServer.pm diff --git a/pandora_console/godmode/agentes/configurar_agente.php b/pandora_console/godmode/agentes/configurar_agente.php index a1ebc7ce7f..208eed59a0 100644 --- a/pandora_console/godmode/agentes/configurar_agente.php +++ b/pandora_console/godmode/agentes/configurar_agente.php @@ -451,7 +451,20 @@ if ($id_agente) { // Inventory. - $inventorytab = enterprise_hook('inventory_tab'); + $inventorytab['text'] = ''.html_print_image( + 'images/page_white_text.png', + true, + [ + 'title' => __('Inventory'), + 'class' => 'invert_filter', + ] + ).''; + + if ($tab == 'inventory') { + $inventorytab['active'] = true; + } else { + $inventorytab['active'] = false; + } if ($inventorytab == -1) { $inventorytab = ''; @@ -2354,6 +2367,10 @@ switch ($tab) { include 'agent_wizard.php'; break; + case 'inventory': + include 'inventory_manager.php'; + break; + default: if (enterprise_hook('switch_agent_tab', [$tab])) { // This will make sure that blank pages will have at least some diff --git a/pandora_console/godmode/agentes/inventory_manager.php b/pandora_console/godmode/agentes/inventory_manager.php new file mode 100644 index 0000000000..b477d7e923 --- /dev/null +++ b/pandora_console/godmode/agentes/inventory_manager.php @@ -0,0 +1,262 @@ + $id_agente, + 'id_module_inventory' => $id_module_inventory, + ] + ); + + if (!$if_exists) { + $values = [ + 'id_agente' => $id_agente, + 'id_module_inventory' => $id_module_inventory, + 'target' => $target, + 'interval' => $interval, + 'username' => $username, + 'password' => $password, + 'custom_fields' => $custom_fields_enabled && !empty($custom_fields) ? base64_encode(json_encode($custom_fields)) : '', + ]; + + $result = db_process_sql_insert('tagent_module_inventory', $values); + + if ($result) { + ui_print_success_message(__('Successfully added inventory module')); + } else { + ui_print_error_message(__('Error adding inventory module')); + } + } else { + ui_print_error_message(__('The inventory of the module already exists')); + } + + // Remove inventory module from agent +} else if ($delete_inventory_module) { + $result = db_process_sql_delete( + 'tagent_module_inventory', + ['id_agent_module_inventory' => $delete_inventory_module] + ); + + if ($result) { + ui_print_success_message(__('Successfully deleted inventory module')); + } else { + ui_print_error_message(__('Error deleting inventory module')); + } + + // Update inventory module +} else if ($force_inventory_module) { + $result = db_process_sql_update('tagent_module_inventory', ['flag' => 1], ['id_agent_module_inventory' => $force_inventory_module]); + + if ($result) { + ui_print_success_message(__('Successfully forced inventory module')); + } else { + ui_print_error_message(__('Error forcing inventory module')); + } + + // Update inventory module +} else if ($update_inventory_module) { + $values = [ + 'target' => $target, + 'interval' => $interval, + 'username' => $username, + 'password' => $password, + 'custom_fields' => $custom_fields_enabled && !empty($custom_fields) ? base64_encode(json_encode($custom_fields)) : '', + ]; + + $result = db_process_sql_update('tagent_module_inventory', $values, ['id_agent_module_inventory' => $id_agent_module_inventory, 'id_agente' => $id_agente]); + + if ($result) { + ui_print_success_message(__('Successfully updated inventory module')); + } else { + ui_print_error_message(__('Error updating inventory module')); + } +} + +// Load inventory module data for updating +if ($load_inventory_module) { + $sql = 'SELECT * FROM tagent_module_inventory WHERE id_module_inventory = '.$load_inventory_module; + $row = db_get_row_sql($sql); + + if (!empty($row)) { + $id_agent_module_inventory = $row['id_agent_module_inventory']; + $id_module_inventory = $row['id_module_inventory']; + $target = $row['target']; + $interval = $row['interval']; + $username = $row['username']; + $password = io_output_password($row['password']); + $custom_fields = []; + + if (!empty($row['custom_fields'])) { + try { + $custom_fields = array_map( + function ($field) { + if ($field['secure']) { + $field['value'] = io_output_password($field['value']); + } + + return $field; + }, + json_decode(base64_decode($row['custom_fields']), true) + ); + $custom_fields_enabled = true; + } catch (Exception $e) { + } + } + } else { + ui_print_error_message(__('Inventory module error')); + include 'general/footer.php'; + + return; + } +} else { + $target = $direccion_agente; + $interval = (string) SECONDS_1HOUR; + $username = ''; + $password = ''; + $custom_fields_enabled = false; + $custom_fields = []; +} + +// Inventory module configuration +$form_buttons = ''; +if ($load_inventory_module) { + $form_buttons .= html_print_input_hidden('id_agent_module_inventory', $id_agent_module_inventory, true); + $form_buttons .= html_print_submit_button(__('Update'), 'update_inventory_module', false, 'class="sub next"', true); +} else { + $form_buttons .= html_print_submit_button(__('Add'), 'add_inventory_module', false, 'class="sub next"', true); +} + +echo ui_get_inventory_module_add_form( + 'index.php?sec=estado&sec2=godmode/agentes/configurar_agente&tab=inventory&id_agente='.$id_agente, + $form_buttons, + $load_inventory_module, + $id_os, + $target, + $interval, + $username, + $password, + $custom_fields_enabled, + $custom_fields +); + +// Inventory module list +$sql = sprintf( + 'SELECT * + FROM tmodule_inventory, tagent_module_inventory + WHERE tagent_module_inventory.id_agente = %d + AND tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory + ORDER BY name', + $id_agente +); +$result = db_process_sql($sql); +if (db_get_num_rows($sql) == 0) { + echo ' '; +} else { + $table->width = '100%'; + $table->class = 'databox filters'; + $table->data = []; + $table->head = []; + $table->styleTable = 'margin-top: 20px;'; + $table->head[0] = "".__('P.').''; + $table->head[1] = __('Name'); + $table->head[2] = __('Description'); + $table->head[3] = __('Target'); + $table->head[4] = __('Interval'); + $table->head[5] = __('Actions'); + $table->align = []; + $table->align[5] = 'left'; + + foreach ($result as $row) { + $data = []; + + $sql = sprintf('SELECT id_policy FROM tpolicy_modules_inventory WHERE id = %d', $row['id_policy_module_inventory']); + $id_policy = db_get_value_sql($sql); + + if ($id_policy) { + $policy = policies_get_policy($id_policy); + $data[0] = ''; + $data[0] .= html_print_image('images/policies_mc.png', true, ['border' => '0', 'title' => $policy['name']]); + $data[0] .= ''; + } else { + $data[0] = ''; + } + + $data[1] = ''.$row['name'].''; + $data[2] = $row['description']; + $data[3] = $row['target']; + $data[4] = human_time_description_raw($row['interval']); + // Delete module + $data[5] = ''; + $data[5] .= html_print_image('images/cross.png', true, ['border' => '0', 'title' => __('Delete'), 'class' => 'invert_filter']); + $data[5] .= '  '; + // Update module + $data[5] .= ''; + $data[5] .= html_print_image('images/config.png', true, ['border' => '0', 'title' => __('Update'), 'class' => 'invert_filter']); + $data[5] .= '  '; + // Force refresh module + $data[5] .= ''; + $data[5] .= html_print_image('images/target.png', true, ['border' => '0', 'title' => __('Force'), 'class' => 'invert_filter']).''; + array_push($table->data, $data); + } + + html_print_table($table); +} diff --git a/pandora_console/godmode/menu.php b/pandora_console/godmode/menu.php index d63595d553..7ba9973eed 100644 --- a/pandora_console/godmode/menu.php +++ b/pandora_console/godmode/menu.php @@ -180,7 +180,9 @@ if ($access_console_node === true) { $sub2['godmode/modules/manage_network_components']['id'] = 'Network components'; $sub['templates']['sub2'] = $sub2; - enterprise_hook('inventory_submenu'); + $sub['godmode/modules/manage_inventory_modules']['text'] = __('Inventory modules'); + $sub['godmode/modules/manage_inventory_modules']['id'] = 'Inventory modules'; + enterprise_hook('autoconfiguration_menu'); enterprise_hook('agent_repository_menu'); } diff --git a/pandora_console/godmode/modules/manage_inventory_modules.php b/pandora_console/godmode/modules/manage_inventory_modules.php new file mode 100644 index 0000000000..0eb4807beb --- /dev/null +++ b/pandora_console/godmode/modules/manage_inventory_modules.php @@ -0,0 +1,387 @@ +'.__('metaconsole').''; + } else { + $url = __('any node'); + } + + ui_print_warning_message( + __( + 'This console is not manager of this environment, please manage this feature from centralized manager console. Go to %s to manage it.', + $url + ) + ); + } +} + +$is_windows = strtoupper(substr(PHP_OS, 0, 3)) == 'WIN'; +if ($is_windows) { + ui_print_error_message(__('Not supported in Windows systems')); +} + +// Initialize variables. +$offset = (int) get_parameter('offset'); +$create_module_inventory = (bool) get_parameter('create_module_inventory'); +$update_module_inventory = (bool) get_parameter('update_module_inventory'); +$delete_inventory_module = (int) get_parameter('delete_inventory_module'); +$multiple_delete = (bool) get_parameter('multiple_delete', 0); +$id_module_inventory = (int) get_parameter('id_module_inventory'); +$name = (string) get_parameter('name'); +$description = (string) get_parameter('description'); +$id_os = (int) get_parameter('id_os'); +if ($id_os == 0) { + $id_os = 'NULL'; +} + +$interpreter = (string) get_parameter('interpreter'); +$code = (string) get_parameter('code'); +$code = base64_encode(str_replace("\r", '', html_entity_decode($code, ENT_QUOTES))); +$format = (string) get_parameter('format'); +$block_mode = (int) get_parameter('block_mode', 0); + +// Create inventory module. +if ($create_module_inventory === true) { + $values = [ + 'name' => $name, + 'description' => $description, + 'id_os' => $id_os, + 'interpreter' => $interpreter, + 'code' => $code, + 'data_format' => $format, + 'block_mode' => $block_mode, + ]; + + $result = (bool) inventory_create_inventory_module($values); + + $auditMessage = ((bool) $result === true) ? sprintf('Create inventory module #%s', $result) : 'Fail try to create inventory module'; + db_pandora_audit( + AUDIT_LOG_MODULE_MANAGEMENT, + $auditMessage + ); + + ui_print_result_message( + (bool) $result, + __('Successfully created inventory module'), + __('Error creating inventory module') + ); + + // Update inventory module. +} else if ($update_module_inventory === true) { + $values = [ + 'name' => $name, + 'description' => $description, + 'id_os' => $id_os, + 'interpreter' => $interpreter, + 'code' => $code, + 'data_format' => $format, + 'block_mode' => $block_mode, + ]; + + $result = inventory_update_inventory_module($id_module_inventory, $values); + + $auditMessage = ((bool) $result === true) ? 'Update inventory module' : 'Fail try to update inventory module'; + db_pandora_audit( + AUDIT_LOG_MODULE_MANAGEMENT, + sprintf('%s #%s', $auditMessage, $id_module_inventory) + ); + + ui_print_result_message( + (bool) $result, + __('Successfully updated inventory module'), + __('Error updating inventory module') + ); + + // Delete inventory module. +} else if ($delete_inventory_module === true) { + $result = db_process_sql_delete( + 'tmodule_inventory', + ['id_module_inventory' => $delete_inventory_module] + ); + + $auditMessage = ((bool) $result === true) ? 'Delete inventory module' : 'Fail try to delete inventory module'; + db_pandora_audit( + AUDIT_LOG_MODULE_MANAGEMENT, + sprintf('%s #%s', $auditMessage, $id_module_inventory) + ); + + ui_print_result_message( + (bool) $result, + __('Successfully deleted inventory module'), + __('Error deleting inventory module') + ); + + if (is_metaconsole() === true) { + $setups = db_get_all_rows_in_table('tmetaconsole_setup'); + foreach ($setups as $key => $setup) { + if (metaconsole_connect($setup) == NOERR) { + $result = db_process_sql_delete( + 'tmodule_inventory', + ['id_module_inventory' => $delete_inventory_module] + ); + + $auditMessage = ((bool) $result === true) ? 'Delete inventory module' : 'Fail try to delete inventory module'; + db_pandora_audit( + AUDIT_LOG_MODULE_MANAGEMENT, + sprintf('%s #%s', $auditMessage, $id_module_inventory) + ); + + ui_print_result_message( + (bool) $result, + $setup['server_name'].': '.__('Successfully deleted inventory module'), + $setup['server_name'].': '.__('Error deleting inventory module') + ); + } + + metaconsole_restore_db(); + } + } +} else if ($multiple_delete) { + $ids = (array) get_parameter('delete_multiple', []); + + foreach ($ids as $id) { + $result = db_process_sql_delete('tmodule_inventory', ['id_module_inventory' => $id]); + + if ($result === false) { + break; + } + } + + if ($result !== false) { + $result = true; + } else { + $result = false; + } + + $str_ids = implode(',', $ids); + $auditMessage = ($result === true) ? 'Multiple delete inventory module' : 'Fail try to delete inventory module'; + db_pandora_audit( + AUDIT_LOG_MODULE_MANAGEMENT, + sprintf('%s :%s', $auditMessage, $str_ids) + ); + + ui_print_result_message( + $result, + __('Successfully multiple deleted'), + __('Not deleted. Error deleting multiple data') + ); + + $id = 0; + + if (is_metaconsole()) { + $setups = db_get_all_rows_in_table('tmetaconsole_setup'); + foreach ($setups as $key => $setup) { + if (metaconsole_connect($setup) == NOERR) { + foreach ($ids as $id) { + $result_node = db_process_sql_delete('tmodule_inventory', ['id_module_inventory' => $id]); + + if ($result_node === false) { + break; + } + } + + if ($result_node !== false) { + $result_node = true; + } else { + $result_node = false; + } + + $str_ids = implode(',', $ids); + $auditMessage = ($result_node === true) ? 'Multiple delete inventory module' : 'Fail try to delete inventory module'; + db_pandora_audit( + AUDIT_LOG_MODULE_MANAGEMENT, + sprintf('%s :%s', $auditMessage, $str_ids) + ); + + ui_print_result_message( + $result_node, + $setup['server_name'].': '.__('Successfully multiple deleted'), + $setup['server_name'].': '.__('Not deleted. Error deleting multiple data') + ); + } + + metaconsole_restore_db(); + } + } +} + +$total_modules = db_get_sql('SELECT COUNT(*) FROM tmodule_inventory'); + +$table = new stdClass(); +$table->width = '100%'; +$table->class = 'info_table'; +$table->size = []; +$table->size[0] = '140px'; +$table->align = []; +$table->align[2] = 'left'; +$table->align[4] = 'left'; +$table->data = []; +$table->head = []; +$table->head[0] = __('Name'); +$table->head[1] = __('Description'); +$table->head[2] = __('OS'); +$table->head[3] = __('Interpreter'); + +if ($management_allowed === true) { + $table->head[4] = __('Action').html_print_checkbox('all_delete', 0, false, true, false); +} + +$result = inventory_get_modules_list($offset); + +if ($result === false) { + ui_print_info_message(['no_close' => true, 'message' => __('No inventory modules defined') ]); +} else { + $status = ''; + $begin = true; + while ($row = array_shift($result)) { + $data = []; + $begin = false; + if ($management_allowed === true) { + $data[0] = ''.$row['name'].''; + } else { + $data[0] = ''.$row['name'].''; + } + + $data[1] = $row['description']; + if ($row['os_name'] == null) { + $data[2] = html_print_image('images/agent.png', true, ['border' => '0', 'alt' => __('Agent'), 'title' => __('Agent'), 'height' => '18', 'class' => 'invert_filter']); + } else { + $data[2] = ui_print_os_icon($row['id_os'], false, true); + } + + if ($row['interpreter'] == '') { + $data[3] = __('Local module'); + } else { + $data[3] = __('Remote/Local'); + } + + if ($management_allowed === true) { + // Update module. + $data[4] = ''; + $data[4] .= html_print_image('images/config.png', true, ['border' => '0', 'title' => __('Update'), 'class' => 'invert_filter']).''; + + // Delete module. + $data[4] .= ''; + $data[4] .= html_print_image('images/cross.png', true, ['border' => '0', 'title' => __('Delete'), 'class' => 'invert_filter']); + $data[4] .= '  '; + $data[4] .= html_print_checkbox_extended('delete_multiple[]', $row['id_module_inventory'], false, false, '', 'class="check_delete"', true); + } + + array_push($table->data, $data); + } + + echo ""; + html_print_input_hidden('multiple_delete', 1); + ui_pagination($total_modules, 'index.php?sec='.$sec.'&sec2=godmode/modules/manage_inventory_modules', $offset); + html_print_table($table); + ui_pagination($total_modules, 'index.php?sec='.$sec.'&sec2=godmode/modules/manage_inventory_modules', $offset, 0, false, 'offset', true, 'pagination-bottom'); + echo "
"; + if ($management_allowed === true) { + html_print_submit_button(__('Delete'), 'delete_btn', false, 'class="sub delete"'); + } + + echo '
'; + echo ''; +} + +if ($management_allowed === true) { + echo '
'; + echo '
'; + html_print_input_hidden('create_module_inventory', 1); + html_print_submit_button(__('Create'), 'crt', false, 'class="sub next"'); + echo '
'; + echo '
'; +} + + +if (is_metaconsole() === true) { + enterprise_hook('close_meta_frame'); + echo ''; +} + +?> + diff --git a/pandora_console/godmode/modules/manage_inventory_modules_form.php b/pandora_console/godmode/modules/manage_inventory_modules_form.php new file mode 100644 index 0000000000..1d5f6a4f9a --- /dev/null +++ b/pandora_console/godmode/modules/manage_inventory_modules_form.php @@ -0,0 +1,153 @@ +width = '100%'; +$table->class = 'databox filters'; +$table->style = []; +$table->style[0] = 'font-weight: bold'; +$table->data = []; +$table->data[0][0] = ''.__('Name').''; +$table->data[0][1] = html_print_input_text('name', $name, '', 45, 100, true, $disabled); +$table->data[1][0] = ''.__('Description').''; +$table->data[1][1] = html_print_input_text('description', $description, '', 60, 500, true); +$table->data[2][0] = ''.__('OS').''; +$table->data[2][1] = html_print_select_from_sql( + 'SELECT id_os, name FROM tconfig_os ORDER BY name', + 'id_os', + $id_os, + '', + '', + '', + $return = true +); + +$table->data[3][0] = ''.__('Interpreter').''; +$table->data[3][1] = html_print_input_text('interpreter', $interpreter, '', 25, 100, true); +$table->data[3][1] .= ui_print_help_tip(__('Left blank for the LOCAL inventory modules'), true); + +$table->data['block_mode'][0] = ''.__('Block Mode').''; +$table->data['block_mode'][1] = html_print_checkbox('block_mode', 1, $block_mode, true); + +$table->data[4][0] = ''.__('Format').''; +$table->data[4][0] .= ui_print_help_tip(__('separate fields with ').SEPARATOR_COLUMN, true); +$table->data[4][1] = html_print_input_text('format', $data_format, '', 50, 100, true); + +$table->data[5][0] = ''.__('Code').''; +$table->data[5][0] .= ui_print_help_tip(__("Here is placed the script for the REMOTE inventory modules Local inventory modules don't use this field").SEPARATOR_COLUMN, true); + +$table->data[5][1] = html_print_textarea('code', 25, 80, base64_decode($code), '', true); + +echo '
'; + +html_print_table($table); +if ($id_module_inventory) { + html_print_input_hidden('update_module_inventory', 1); + html_print_input_hidden('id_module_inventory', $id_module_inventory); +} else { + html_print_input_hidden('create_module_inventory', 1); +} + +echo '
'; +if ($id_module_inventory) { + html_print_submit_button(__('Update'), 'submit', false, 'class="sub next"'); +} else { + html_print_submit_button(__('Create'), 'submit', false, 'class="sub upd"'); +} + +echo '
'; +echo '
'; + +if (defined('METACONSOLE')) { + enterprise_hook('close_meta_frame'); +} diff --git a/pandora_console/include/functions_inventory.php b/pandora_console/include/functions_inventory.php new file mode 100644 index 0000000000..2ac322a4fe --- /dev/null +++ b/pandora_console/include/functions_inventory.php @@ -0,0 +1,1147 @@ + 0) { + $data_row = db_get_row_sql( + 'SELECT data, timestamp + FROM tagente_datos_inventory + WHERE utimestamp <= '.$utimestamp.' + AND id_agent_module_inventory = '.$row['id_agent_module_inventory'].' ORDER BY utimestamp DESC' + ); + if ($data_row !== false) { + $row['data'] = $data_row['data']; + $row['timestamp'] = $data_row['timestamp']; + } + } + + if (!$order_by_agent) { + $agent_name = db_get_value('alias', 'tagente', 'id_agente', $row['id_agente']); + + $out_csv .= __('Agent alias').' --> '.io_safe_output($agent_name)."\n"; + $out_csv .= __('Timestamp').' = '.$row['timestamp']."\n"; + $out_csv .= io_safe_output($row['data_format'])."\n"; + + // Filter data by search string. + if ($inventory_search_string !== '') { + $str = io_safe_output($row['data']); + $matches = []; + $re = '/.*'.$inventory_search_string.'.*\n/m'; + if (preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0)) { + // Print the entire match result. + foreach ($matches as $match) { + $out_csv .= $match[0]; + } + + $out_csv .= "\n\n"; + } + } else { + $out_csv .= io_safe_output($row['data'])."\n\n"; + } + } else { + $agent_name = db_get_value('alias', 'tagente', 'id_agente', $row['id_agente']); + $agent_inventory_temp = []; + $agent_inventory[$agent_name][] = [ + 'name' => $row['name'], + 'data_formtat' => $row['data_format'], + 'data' => $row['data'], + ]; + } + } + + if ($order_by_agent) { + if (empty($agent_inventory) === false) { + foreach ($agent_inventory as $alias => $agent_data) { + $out_csv .= __('Agent alias').' --> '.io_safe_output($alias)."\n"; + $out_csv .= __('Timestamp').' = '.$row['timestamp']."\n"; + + foreach ($agent_data as $data) { + $out_csv .= io_safe_output($data['name'])."\n"; + $out_csv .= io_safe_output($data['data_format'])."\n"; + + // Filter data by search string. + if ($inventory_search_string !== '') { + $str = io_safe_output($data['data']); + $matches = []; + $re = '/.*'.$inventory_search_string.'.*\n/m'; + if (preg_match_all($re, $str, $matches, PREG_SET_ORDER, 0)) { + // Print the entire match result. + foreach ($matches as $match) { + $out_csv .= $match[0]; + } + + $out_csv .= "\n\n"; + } + } else { + $out_csv .= io_safe_output($row['data'])."\n\n"; + } + } + } + } + } + } + + if ($export_csv) { + $name_file = 'inventory_'.md5( + $inventory_module_name.$utimestamp.$inventory_search_string + ).'.csv'; + file_put_contents( + $config['attachment_store'].'/'.$name_file, + $out_csv + ); + + echo "".__('Get CSV file').''; + return; + } else if ($return_mode === 'csv') { + return $out_csv; + } else if ($return_mode === 'hash') { + if ($utimestamp > 0) { + $timestamp = db_get_value_sql( + "SELECT timestamp + FROM tagente_datos_inventory + WHERE utimestamp = $utimestamp" + ); + } else { + $timestamp = db_get_value_sql( + 'SELECT timestamp + FROM tagente_datos_inventory + WHERE utimestamp = + (SELECT MAX(tagente_datos_inventory.utimestamp) + FROM tagente_datos_inventory, tmodule_inventory, + tagent_module_inventory + WHERE '.implode(' AND ', $where).' + AND tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory + AND tagent_module_inventory.id_agent_module_inventory = tagente_datos_inventory.id_agent_module_inventory)' + ); + } + + $out_array = []; + foreach ($rows as $k => $row) { + $out_array[$k]['timestamp'] = $timestamp; + $out_array[$k]['id_module_inventory'] = $row['id_module_inventory']; + $out_array[$k]['id_os'] = $row['id_os']; + $out_array[$k]['name'] = io_safe_output($row['name']); + $out_array[$k]['description'] = io_safe_output($row['description']); + $out_array[$k]['interpreter'] = $row['interpreter']; + $out_array[$k]['id_agent_module_inventory'] = $row['id_agent_module_inventory']; + $out_array[$k]['id_agente'] = $row['id_agente']; + $agent_name = db_get_value('alias', 'tagente', 'id_agente', $row['id_agente']); + $out_array[$k]['agent_name'] = $agent_name; + $out_array[$k]['target'] = $row['target']; + $out_array[$k]['interval'] = $row['interval']; + $out_array[$k]['username'] = $row['username']; + + $items = explode(';', io_safe_output($row['data_format'])); + + $data = []; + if (empty($row['data']) === false) { + $data_rows = explode("\n", io_safe_output($row['data'])); + $data = []; + foreach ($data_rows as $data_row) { + $cells = explode(';', $data_row); + + $temp_row = []; + $i = 0; + foreach ($cells as $cell) { + $temp_row[$items[$i]] = $cell; + $i++; + } + + $data[] = $temp_row; + } + } + + $out_array[$k]['data'] = $data; + $out_array[$k]['timestamp'] = io_safe_output($row['timestamp']); + $out_array[$k]['flag'] = io_safe_output($row['flag']); + } + + return $out_array; + } else if ($return_mode === 'array') { + $out_array = []; + foreach ($rows as $k => $row) { + $out_array[$k]['id_module_inventory'] = $row['id_module_inventory']; + $out_array[$k]['id_os'] = $row['id_os']; + $out_array[$k]['name'] = io_safe_output($row['name']); + $out_array[$k]['description'] = io_safe_output($row['description']); + $out_array[$k]['interpreter'] = $row['interpreter']; + $out_array[$k]['data_format'] = $row['data_format']; + $out_array[$k]['id_agent_module_inventory'] = $row['id_agent_module_inventory']; + $out_array[$k]['id_agente'] = $row['id_agente']; + $out_array[$k]['target'] = $row['target']; + $out_array[$k]['interval'] = $row['interval']; + $out_array[$k]['username'] = $row['username']; + $out_array[$k]['data'] = ''; + $out_array[$k]['timestamp'] = io_safe_output($row['timestamp']); + $out_array[$k]['flag'] = io_safe_output($row['flag']); + } + + if (empty($out_array) === true) { + return __('No data found'); + } + + return $out_array; + } + + $idModuleInventory = null; + + $rowTable = 1; + + // Timestamp filter only allowed in nodes for performance. + if (is_metaconsole() === false) { + if ($utimestamp > 0) { + $timestamp = db_get_value_sql( + "SELECT timestamp + FROM tagente_datos_inventory + WHERE utimestamp = $utimestamp" + ); + } else { + $timestamp = db_get_value_sql( + 'SELECT timestamp + FROM tagente_datos_inventory + WHERE utimestamp = + (SELECT MAX(tagente_datos_inventory.utimestamp) + FROM tagente_datos_inventory, tmodule_inventory, + tagent_module_inventory + WHERE '.implode(' AND ', $where).' + AND tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory + AND tagent_module_inventory.id_agent_module_inventory = tagente_datos_inventory.id_agent_module_inventory)' + ); + } + } + + // TODO: Workaround. + $timestamp = 'Last'; + if (!$order_by_agent) { + $countRows = 0; + foreach ($rows as $row) { + // Check for not show more elements that allowed in config. + if ($countRows >= (int) $config['meta_num_elements']) { + break; + } + + $countRows++; + + // Continue. + if (is_metaconsole() === false && $utimestamp > 0) { + $data_row = db_get_row_sql( + "SELECT data, timestamp + FROM tagente_datos_inventory + WHERE utimestamp <= '".$utimestamp."' + AND id_agent_module_inventory = ".$row['id_agent_module_inventory'].' ORDER BY utimestamp DESC' + ); + if ($data_row !== false) { + $row['data'] = $data_row['data']; + $row['timestamp'] = $data_row['timestamp']; + } else { + // Continue to next row in case there is no data for that timestamp. + continue; + } + } + + if ($idModuleInventory != $row['id_module_inventory']) { + if (isset($table) === true) { + $out .= "
"; + $out .= html_print_table($table, true); + $out .= '
'; + unset($table); + $rowTable = 1; + } + + $table = new stdClass(); + $table->width = '100%'; + $table->align = []; + $table->cellpadding = 0; + $table->cellspacing = 0; + $table->class = 'info_table inventory_tables'; + $table->head = []; + $table->head[0] = ''.$row['name'].' '.html_print_image('images/timestamp.png', true, ['title' => __('Timestamp'), 'style' => 'vertical-align:middle']).' ('.$timestamp.')'; + $table->headstyle[0] = 'text-align:center'; + + $subHeadTitles = explode(';', io_safe_output($row['data_format'])); + + $table->head_colspan = []; + $table->head_colspan[0] = (2 + count($subHeadTitles)); + $total_fields = count($subHeadTitles); + $table->rowspan = []; + + $table->data = []; + + $iterator = 1; + + $table->data[0][0] = __('Agent'); + foreach ($subHeadTitles as $titleData) { + $table->data[0][$iterator] = $titleData; + $iterator++; + } + + $table->data[0][] = __('Timestamp'); + $iterator++; + } + + // Setting for link the agent with the proper server. + if (is_metaconsole() === true && empty($node) === false) { + $loginHash = metaconsole_get_servers_url_hash($node); + $urlToAgent = sprintf( + '%sindex.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=%s%s', + $node['server_url'], + $row['id_agente'], + $loginHash + ); + } else { + $urlToAgent = sprintf( + 'index.php?sec=estado&sec2=operation/agentes/ver_agente&id_agente=%s', + $row['id_agente'] + ); + } + + $agent_name = db_get_value_sql( + 'SELECT alias + FROM tagente + WHERE id_agente = '.$row['id_agente'] + ); + + $table->data[$rowTable][0] = html_print_anchor( + [ + 'href' => $urlToAgent, + 'content' => ''.$agent_name.'', + ], + true + ); + + $arrayDataRowsInventory = explode(SEPARATOR_ROW, io_safe_output($row['data'])); + // SPLIT DATA IN ROWS + // Remove the empty item caused by a line ending with a new line. + $len = count($arrayDataRowsInventory); + if (end($arrayDataRowsInventory) == '') { + $len--; + unset($arrayDataRowsInventory[$len]); + } + + $iterator1 = 0; + $numRowHasNameAgent = $rowTable; + + $rowPair = true; + $iterator = 0; + foreach ($arrayDataRowsInventory as $dataRowInventory) { + if ($rowPair === true) { + $table->rowclass[$iterator] = 'rowPair'; + } else { + $table->rowclass[$iterator] = 'rowOdd'; + } + + $rowPair = !$rowPair; + $iterator++; + + // Because SQL query extract all rows (row1;row2;row3...) and only I want the row has + // the search string. + if ($inventory_search_string && preg_match('/'.io_safe_output($inventory_search_string).'/', ($dataRowInventory)) == 0) { + continue; + } + + if ($rowTable > $numRowHasNameAgent) { + $table->data[$rowTable][0] = ''; + } + + $arrayDataColumnInventory = explode(SEPARATOR_COLUMN, $dataRowInventory); + // SPLIT ROW IN COLUMNS. + $iterator2 = 1; + + foreach ($arrayDataColumnInventory as $dataColumnInventory) { + $table->data[$rowTable][$iterator2] = $dataColumnInventory; + $iterator2++; + } + + // Fill unfilled cells with empty string. + $countArray = count($arrayDataColumnInventory); + for ($i = 0; $i < ($total_fields - $countArray); $i++) { + $table->data[$rowTable][$iterator2] = ''; + $iterator2++; + } + + $table->data[$rowTable][$iterator2] = $row['timestamp']; + + $iterator1++; + + $rowTable++; + if ($rowPair === true) { + $table->rowclass[$rowTable] = 'rowPair'; + } else { + $table->rowclass[$rowTable] = 'rowOdd'; + } + } + + if ($rowPair === true) { + $table->rowclass[$iterator] = 'rowPair'; + } else { + $table->rowclass[$iterator] = 'rowOdd'; + } + + $rowPair = !$rowPair; + if ($rowPair) { + $table->rowclass[($iterator + 1)] = 'rowPair'; + } else { + $table->rowclass[($iterator + 1)] = 'rowOdd'; + } + + if ($iterator1 > 5) { + // PRINT COUNT TOTAL. + $table->data[$rowTable][0] = ''; + $table->data[$rowTable][1] = ''.__('Total').': '.$iterator1; + $countSubHeadTitles = count($subHeadTitles); + for ($row_i = 2; $row_i <= $countSubHeadTitles; $row_i++) { + $table->data[$rowTable][$row_i] = ''; + } + + $rowTable++; + } + + $idModuleInventory = $row['id_module_inventory']; + } + } else { + $agent_data = []; + foreach ($rows as $row) { + $agent_data[$row['id_agente']][] = $row; + } + + foreach ($agent_data as $id_agent => $rows) { + $agent_name = db_get_value_sql( + 'SELECT alias + FROM tagente + WHERE id_agente = '.$id_agent + ); + + $out .= '
'; + $out .= '
'.$agent_name.'
'; + $out .= '
'; + + foreach ($rows as $row) { + if ($utimestamp > 0) { + $data_row = db_get_row_sql( + "SELECT data, timestamp + FROM tagente_datos_inventory + WHERE utimestamp <= '".$utimestamp."' + AND id_agent_module_inventory = ".$row['id_agent_module_inventory'].' ORDER BY utimestamp DESC' + ); + + if ($data_row !== false) { + $row['data'] = $data_row['data']; + $row['timestamp'] = $data_row['timestamp']; + } else { + continue; + } + } + + $table = new stdClass(); + $table->colspan = []; + if ($idModuleInventory != $row['id_module_inventory']) { + $table->width = '98%'; + $table->align = []; + $table->styleTable = 'margin:0 auto; text-align:left;'; + $table->cellpadding = 0; + $table->cellspacing = 0; + $table->class = 'databox data'; + $table->head = []; + $table->head[0] = $row['name'].' - ('.$timestamp.')'; + $table->headstyle[0] = 'text-align:center'; + + $subHeadTitles = explode(';', io_safe_output($row['data_format'])); + + $table->head_colspan = []; + $table->head_colspan[0] = (2 + count($subHeadTitles)); + $total_fields = count($subHeadTitles); + $table->rowspan = []; + + $table->data = []; + + $iterator = 0; + + foreach ($subHeadTitles as $titleData) { + $table->data[0][$iterator] = $titleData; + $iterator++; + } + + $table->data[0][] = __('Timestamp'); + $iterator++; + } + + $rowTable = 1; + + $arrayDataRowsInventory = explode(SEPARATOR_ROW, io_safe_output($row['data'])); + // SPLIT DATA IN ROWS + // Remove the empty item caused by a line ending with a new line. + $len = count($arrayDataRowsInventory); + if (end($arrayDataRowsInventory) == '') { + $len--; + unset($arrayDataRowsInventory[$len]); + } + + $iterator1 = 0; + $rowPair = true; + + foreach ($arrayDataRowsInventory as $dataRowInventory) { + if ($rowPair === true) { + $table->rowclass[$iterator] = 'rowPair'; + } else { + $table->rowclass[$iterator] = 'rowOdd'; + } + + $rowPair = !$rowPair; + $iterator++; + + // Because SQL query extract all rows (row1;row2;row3...) and only I want the row has + // the search string. + if ($inventory_search_string && preg_match('/'.io_safe_output($inventory_search_string).'/', ($dataRowInventory)) == 0) { + continue; + } + + if ($rowTable > $numRowHasNameAgent) { + $table->data[$rowTable][0] = ''; + } + + $arrayDataColumnInventory = explode(SEPARATOR_COLUMN, $dataRowInventory); + // SPLIT ROW IN COLUMNS. + $iterator2 = 0; + + foreach ($arrayDataColumnInventory as $dataColumnInventory) { + $table->data[$rowTable][$iterator2] = $dataColumnInventory; + $iterator2++; + } + + // Fill unfilled cells with empty string. + $countArrayDataColumnInventory = count($arrayDataColumnInventory); + for ($i = 0; $i < ($total_fields - $countArrayDataColumnInventory); $i++) { + $table->data[$rowTable][$iterator2] = ''; + $iterator2++; + } + + $table->data[$rowTable][$iterator2] = $row['timestamp']; + + $iterator1++; + + $rowTable++; + if ($rowPair === true) { + $table->rowclass[$rowTable] = 'rowPair'; + } else { + $table->rowclass[$rowTable] = 'rowOdd'; + } + } + + if ($iterator1 > 5) { + // PRINT COUNT TOTAL. + $table->data[$rowTable][0] = ''; + $table->data[$rowTable][1] = ''.__('Total').': '.$iterator1; + $countSubHeadTitles = count($subHeadTitles); + for ($row_i = 2; $row_i <= $countSubHeadTitles; $row_i++) { + $table->data[$rowTable][$row_i] = ''; + } + + $rowTable++; + } + + $idModuleInventory = $row['id_module_inventory']; + + if (isset($table) === true) { + $out .= html_print_table($table, true); + } + + $out .= '
'; + } + + $out .= '
'; + $out .= '
'; + $out .= '
'; + $out .= '
'; + } + + return $out; + } + + if (isset($table) === true) { + $out .= html_print_table($table, true); + $out .= ui_pagination($count, $url, $offset, 0, true); + } + + return $out; +} + + +function inventory_get_dates($module_inventory_name, $inventory_agent, $inventory_id_group) +{ + $sql = 'SELECT tagente_datos_inventory.utimestamp, + tagente_datos_inventory.timestamp + FROM tmodule_inventory, tagent_module_inventory, + tagente_datos_inventory, tagente + WHERE + tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory + AND tagente_datos_inventory.id_agent_module_inventory = tagent_module_inventory.id_agent_module_inventory + AND tagente.id_agente = tagent_module_inventory.id_agente'; + + if ($inventory_agent != 0) { + $sql .= ' AND tagent_module_inventory.id_agente IN ('."'".implode(',', (array) $inventory_agent)."'".')'; + } + + if ($inventory_id_group != 0) { + $sql .= " AND tagente.id_grupo = $inventory_id_group"; + } + + if (is_string($module_inventory_name) === true + && $module_inventory_name != 'all' + ) { + $sql .= " AND tmodule_inventory.name IN ('".str_replace(',', "','", $module_inventory_name)."')"; + } + + $sql .= ' ORDER BY tagente_datos_inventory.utimestamp DESC'; + + $dates_raw = db_get_all_rows_sql($sql); + + if ($dates_raw == false) { + return []; + } + + $dates = []; + foreach ($dates_raw as $date) { + $dates[$date['utimestamp']] = $date['timestamp']; + } + + return $dates; +} + + +function inventory_get_agents($filter=false, $fields=false) +{ + $inventory_agents_id = db_get_all_rows_sql( + 'SELECT DISTINCT(id_agente) + FROM tagent_module_inventory' + ); + + if ($inventory_agents_id == false) { + $inventory_agents_id = []; + return []; + } + + $ids = []; + foreach ($inventory_agents_id as $ia) { + $ids[] = $ia['id_agente']; + } + + $filter['id_agente'] = $ids; + + $agents = agents_get_agents($filter, $fields); + + if ($agents === false) { + $agents = []; + } + + return $agents; +} + + +function inventory_get_changes( + $id_agent, + $module_names, + $start_utimestamp, + $end_utimestamp, + $return_mode=false +) { + global $config; + + $any_inventory_modules = false; + if (empty($module_names)) { + $any_inventory_modules = true; + } else if (((string) ($module_names[0])) === '0') { + $any_inventory_modules = true; + } + + $module_names = (array) $module_names; + + if ($id_agent[0] == -1) { + // Any agent + $sql = sprintf( + "SELECT evento, utimestamp + FROM tevento + WHERE utimestamp >= %d + AND utimestamp <= %d + AND event_type = 'configuration_change'", + $start_utimestamp, + $end_utimestamp + ); + } else { + $sql = sprintf( + "SELECT evento, utimestamp + FROM tevento + WHERE id_agente IN (%s) + AND utimestamp >= %d + AND utimestamp <= %d + AND event_type = 'configuration_change'", + implode(',', (array) $id_agent), + $start_utimestamp, + $end_utimestamp + ); + } + + $events = db_get_all_rows_sql($sql); + + if ($events === false) { + return ERR_NODATA; + } + + $inventory_changes = []; + $are_data = false; + + foreach ($events as $k => $event) { + $changes = io_safe_output($event['evento']); + $changes = explode("\n", $changes); + + $check = preg_match( + '/agent \'(.*)\' module \'(.*)\'/', + end($changes), + $matches + ); + + $agent_name = $matches[1]; + $module_name = $matches[2]; + + if (!$any_inventory_modules) { + if (!in_array($module_name, $module_names)) { + continue; + } + } + + $are_data = true; + + $inventory_changes[$k]['agent_name'] = $matches[1]; + $inventory_changes[$k]['module_name'] = $module_name; + $inventory_changes[$k]['utimestamp'] = $event['utimestamp']; + $changes[0] = str_replace('Configuration changes (', '', $changes[0]); + + unset($changes[(count($changes) - 1)]); + $state = ''; + foreach ($changes as $ch) { + if (preg_match('/NEW RECORD: (.*)/', $ch)) { + $ch = preg_replace('/NEW RECORD: /', '', $ch); + $ch = preg_replace('/^\'/', '', $ch); + $ch = '
'.$ch.'
'; + $state = 'new'; + } + + if (preg_match('/\s*DELETED RECORD: (.*)/', $ch)) { + $ch = preg_replace('/\s*DELETED RECORD/', '', $ch); + $ch = preg_replace('/^\'/', '', $ch); + $ch = '
'.$ch.'
'; + $state = 'deleted'; + } + + $inventory_changes[$k][$state][] = $ch; + } + } + + if ($are_data === false) { + if ($return_mode !== false) { + switch ($return_mode) { + case 'array': + return ERR_NODATA; + + break; + default: + return __('No changes found'); + break; + } + } + + return ERR_NODATA; + } + + switch ($return_mode) { + case 'csv': + $out_csv = ''; + foreach ($inventory_changes as $ic) { + $out_csv .= __('Agent').SEPARATOR_COLUMN_CSV.$ic['agent_name']."\n"; + $out_csv .= __('Module').SEPARATOR_COLUMN_CSV.$ic['module_name']."\n"; + $out_csv .= __('Date').SEPARATOR_COLUMN_CSV.date($config['date_format'], $ic['utimestamp'])."\n"; + if (isset($ic['new'])) { + foreach ($ic['new'] as $icc) { + $out_csv .= __('Added').SEPARATOR_COLUMN_CSV.$icc."\n"; + } + } + + if (isset($ic['deleted'])) { + foreach ($ic['deleted'] as $icc) { + $out_csv .= __('Deleted').SEPARATOR_COLUMN_CSV.$icc."\n"; + } + } + } + return $out_csv; + + break; + case 'array': + $out_array = []; + + foreach ($inventory_changes as $k => $ic) { + $out_array[$k]['agent'] = $ic['agent_name']; + $out_array[$k]['module'] = $ic['module_name']; + $out_array[$k]['date'] = date($config['date_format'], $ic['utimestamp']); + + if (isset($ic['new'])) { + foreach ($ic['new'] as $icc) { + $out_array[$k]['added'][] = $icc; + } + } + + if (isset($ic['deleted'])) { + foreach ($ic['deleted'] as $icc) { + $out_array[$k]['deleted'][] = $icc; + } + } + } + + if (empty($out_array)) { + return ERR_NODATA; + } + return $out_array; + + break; + } + + $out = ''; + foreach ($inventory_changes as $ic) { + $out .= ''; + } + + $out .= '
'; + + unset($table); + $table->width = '98%'; + $table->style[0] = 'text-align:50%'; + $table->style[1] = 'text-align:50%'; + + $table->data[0][0] = ''.__('Agent').': '.$ic['agent_name']; + $table->data[0][1] = ''.__('Module').': '.$ic['module_name']; + + $timestamp = date($config['date_format'], $ic['utimestamp']); + + $table->colspan[1][0] = 2; + $table->data[1][0] = '
('.$timestamp.')
'; + $row = 2; + + if (isset($ic['new'])) { + foreach ($ic['new'] as $icc) { + $table->colspan[$row][0] = 2; + $table->data[$row][0] = ''.__('Added').': '.$icc; + $row++; + } + } + + if (isset($ic['deleted'])) { + foreach ($ic['deleted'] as $icc) { + $table->colspan[$row][0] = 2; + $table->data[$row][0] = ''.__('Deleted').': '.$icc; + $row++; + } + } + + $out .= html_print_table($table, true); + + $out .= '
'; + + return $out; +} + + +/** + * Get a list with inventory modules + * + * @param mixed An integer can be place here to get a response + * to paginate. If this parameter is false, return full list + * + * @return array with inventory modules (paginated or not) + */ +function inventory_get_modules_list($offset=false) +{ + global $config; + + $filter = []; + if (is_numeric($offset)) { + $filter['limit'] = $config['block_size']; + $filter['offset'] = $offset; + } + + return db_get_all_rows_filter( + 'tmodule_inventory LEFT JOIN tconfig_os + ON tmodule_inventory.id_os = tconfig_os.id_os', + $filter, + [ + 'tmodule_inventory.id_module_inventory', + 'tmodule_inventory.name', + 'tmodule_inventory.description', + 'tmodule_inventory.interpreter', + 'tconfig_os.name AS os_name', + 'tconfig_os.id_os', + ] + ); +} + + +/** + * Validate the modules inventory + * + * @param array with inventory modules data. + * + * @return boolean True if the values are valid + */ +function inventory_validate_inventory_module($values) +{ + return !(empty($values['name']) || empty($values['id_os']) || + empty($values['data_format']) + ); +} + + +/** + * Insert the module inventory data into database + * + * @param array with inventory modules data. + * + * @return boolean False if values are invalid or cannot put it on database + */ +function inventory_create_inventory_module($values) +{ + if (!inventory_validate_inventory_module($values)) { + return false; + } + + return db_process_sql_insert('tmodule_inventory', $values); +} + + +/** + * Update the module inventory data into database + * + * @param int ID inventory module + * @param array with inventory modules data. + * + * @return boolean False if values are invalid or cannot put it on database + */ +function inventory_update_inventory_module($id_module_inventory, $values) +{ + if (!inventory_validate_inventory_module($values)) { + return false; + } + + return db_process_sql_update( + 'tmodule_inventory', + $values, + ['id_module_inventory' => $id_module_inventory] + ); +} + + +/** + * Returns inventory module names given agent id. + * + * @param integer $id_agent + * @param string $all + * @param integer $server_id + * @param string $server_name + * @return void + */ +function inventory_get_agent_modules($id_agent, $all='all', $server_id=0, $server_name=null) +{ + global $config; + + if ($config['metaconsole']) { + $server_id = metaconsole_get_id_server($server_name); + } + + switch ($all) { + default: + case 'all': + $enabled = '1 = 1'; + break; + case 'enabled': + $enabled = 'disabled = 0'; + break; + } + + if (is_array($id_agent)) { + $count_id_agent = count(($id_agent)); + $id_agent = implode(',', $id_agent); + } else { + $count_id_agent = 1; + } + + $sql = 'SELECT t1.id_module_inventory, name + FROM tmodule_inventory t1, tagent_module_inventory t2 + WHERE t1.id_module_inventory = t2.id_module_inventory + AND id_agente IN ('.$id_agent.') AND ( + SELECT count(name) + FROM tmodule_inventory t3, tagent_module_inventory t4 + WHERE t3.id_module_inventory = t4.id_module_inventory + AND t3.name = t1.name + AND t4.id_agente IN ('.$id_agent.')) = ('.$count_id_agent.') + ORDER BY name'; + + // Only in template editor from metaconsole. + if ($config['metaconsole']) { + $server_data = metaconsole_get_connection_by_id($server_id); + + if ($server_data === false) { + return ''; + } + + $modules = []; + + // Establishes connection. + if (metaconsole_load_external_db($server_data) !== NOERR) { + return ''; + } + + $modules = db_get_all_rows_sql($sql); + + if ($modules == false) { + $modules = []; + } + + $result = []; + foreach ($modules as $module) { + $result[$module['name']] = io_safe_output($module['name']); + } + + // Restore DB connection. + metaconsole_restore_db(); + } else { + $modules = db_get_all_rows_sql($sql); + + if ($modules == false) { + $modules = []; + } + + $result = []; + foreach ($modules as $module) { + $result[$module['name']] = io_safe_output($module['name']); + } + } + + return $result; +} diff --git a/pandora_console/include/functions_menu.php b/pandora_console/include/functions_menu.php index d9c86aa66a..a2e8356e3a 100644 --- a/pandora_console/include/functions_menu.php +++ b/pandora_console/include/functions_menu.php @@ -487,7 +487,7 @@ function menu_add_extras(&$menu) $menu_extra['gusuarios']['sub']['godmode/users/configure_profile']['text'] = __('Configure profile'); $menu_extra['gmodules']['sub']['godmode/modules/manage_network_templates_form']['text'] = __('Module templates management'); - $menu_extra['gmodules']['sub']['enterprise/godmode/modules/manage_inventory_modules_form']['text'] = __('Inventory modules management'); + $menu_extra['gmodules']['sub']['godmode/modules/manage_inventory_modules_form']['text'] = __('Inventory modules management'); $menu_extra['gagente']['sub']['godmode/agentes/configurar_agente']['text'] = __('Agents management'); diff --git a/pandora_console/include/functions_planned_downtimes.php b/pandora_console/include/functions_planned_downtimes.php index e8c4344c05..38ee77a422 100644 --- a/pandora_console/include/functions_planned_downtimes.php +++ b/pandora_console/include/functions_planned_downtimes.php @@ -24,7 +24,8 @@ global $config; * Include the usual functions */ require_once $config['homedir'].'/include/functions_ui.php'; -// enterprise_include_once('include/functions_inventory.php'); + + function planned_downtimes_check_dates($type_execution='once', $type_periodicity='', $datetime_from=false, $datetime_to=false, $periodically_time_from=false, $periodically_time_to=false, $periodically_day_from=false, $periodically_day_to=false) { global $config; diff --git a/pandora_console/include/functions_reporting_html.php b/pandora_console/include/functions_reporting_html.php index 03070811cf..3a1861b48b 100644 --- a/pandora_console/include/functions_reporting_html.php +++ b/pandora_console/include/functions_reporting_html.php @@ -38,6 +38,7 @@ require_once $config['homedir'].'/include/functions_alerts.php'; require_once $config['homedir'].'/include/functions_users.php'; enterprise_include_once('include/functions_metaconsole.php'); enterprise_include_once('include/functions_inventory.php'); +require_once $config['homedir'].'/include/functions_inventory.php'; require_once $config['homedir'].'/include/functions_forecast.php'; require_once $config['homedir'].'/include/functions_ui.php'; require_once $config['homedir'].'/include/functions_netflow.php'; diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index d30171eba3..7ecc5763ff 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -6783,3 +6783,259 @@ function ui_print_spinner(string $text='Loading', bool $return=false) echo $output; } } + + +function ui_get_inventory_module_add_form( + $form_action, + $form_buttons='', + $inventory_module_id=0, + $os_id=false, + $target=false, + $interval=3600, + $username='', + $password='', + $custom_fields_enabled=false, + $custom_fields=[] +) { + $table = new stdClass(); + $table->id = 'inventory-module-form'; + $table->width = '100%'; + $table->class = 'databox filters'; + $table->style['module-title'] = 'font-weight: bold;'; + $table->style['interval-title'] = 'font-weight: bold;'; + $table->style['target-title'] = 'font-weight: bold;'; + $table->style['chkbx-custom-fields-title'] = 'font-weight: bold;'; + $table->style['username-title'] = 'font-weight: bold;'; + $table->style['password-title'] = 'font-weight: bold;'; + $table->rowstyle = []; + $table->rowstyle['hidden-custom-field-row'] = 'display: none;'; + $table->colspan = []; + $table->colspan['custom-fields-row'] = []; + $table->colspan['custom-fields-row']['custom-fields-column'] = 4; + $table->data = []; + + $row = []; + $row['module-title'] = __('Module'); + if (empty($inventory_module_id)) { + if (empty($os_id)) { + $sql = 'SELECT mi.id_module_inventory AS id, mi.name AS name, co.name AS os + FROM tmodule_inventory mi, tconfig_os co + WHERE co.id_os = mi.id_os + ORDER BY co.name, mi.name'; + $inventory_modules_raw = db_get_all_rows_sql($sql); + + $inventory_modules = []; + foreach ($inventory_modules_raw as $im) { + $inventory_modules[$im['id']] = [ + 'name' => $im['name'], + 'optgroup' => $im['os'], + ]; + } + } else { + $sql = sprintf( + 'SELECT id_module_inventory AS id, name + FROM tmodule_inventory + WHERE id_os = %d + ORDER BY name', + $os_id + ); + $inventory_modules_raw = db_get_all_rows_sql($sql); + + $inventory_modules = []; + foreach ($inventory_modules_raw as $im) { + $inventory_modules[$im['id']] = $im['name']; + } + } + + $row['module-input'] = html_print_select($inventory_modules, 'id_module_inventory', 0, '', __('Select inventory module'), 0, true, false, false); + } else { + $row['module-input'] = db_get_sql('SELECT name FROM tmodule_inventory WHERE id_module_inventory = '.$inventory_module_id); + } + + $row['interval-title'] = __('Interval'); + $row['interval-input'] = html_print_extended_select_for_time('interval', $interval, '', '', '', false, true); + + $table->data['first-row'] = $row; + + $row = []; + + if ($target !== false) { + $row['target-title'] = __('Target'); + $row['target-input'] = html_print_input_text('target', $target, '', 25, 40, true); + } + + $row['chkbx-custom-fields-title'] = __('Use custom fields'); + $row['chkbx-custom-fields-input'] = html_print_checkbox('custom_fields_enabled', 1, $custom_fields_enabled, true); + + $table->data['second-row'] = $row; + + $row = []; + $row['username-title'] = __('Username'); + $row['username-input'] = html_print_input_text('username', $username, '', 25, 40, true); + $row['password-title'] = __('Password'); + $row['password-input'] = html_print_input_password('password', $password, '', 25, 40, true); + + $table->data['userpass-row'] = $row; + + $row = []; + $row['hidden-title'] = ''; + $row['hidden-input'] = html_print_input_hidden('hidden-custom-field-name', '', true); + $row['hidden-input'] .= html_print_input_hidden('hidden-custom-field-is-secure', 0, true); + $row['hidden-input'] .= html_print_input_text('hidden-custom-field-input', '', '', 25, 40, true); + $row['hidden-input'] .= ' '; + $row['hidden-input'] .= html_print_image( + 'images/cross.png', + true, + [ + 'border' => '0', + 'title' => __('Remove'), + 'style' => 'cursor: pointer;', + 'class' => 'remove-custom-field invert_filter', + ] + ); + + $table->data['hidden-custom-field-row'] = $row; + + if ($custom_fields_enabled) { + foreach ($custom_fields as $i => $field) { + $row = []; + $row['title'] = ''.$field['name'].''; + $row['input'] = html_print_input_hidden( + 'custom_fields['.$i.'][name]', + $field['name'], + true + ); + $row['input'] .= html_print_input_hidden( + 'custom_fields['.$i.'][secure]', + $field['secure'], + true + ); + if ($field['secure']) { + $row['input'] .= html_print_input_password( + 'custom_fields['.$i.'][value]', + $field['value'], + '', + 25, + 40, + true + ); + } else { + $row['input'] .= html_print_input_text( + 'custom_fields['.$i.'][value]', + $field['value'], + '', + 25, + 40, + true + ); + } + + $row['input'] .= ' '; + $row['input'] .= html_print_image( + 'images/cross.png', + true, + [ + 'border' => '0', + 'title' => __('Remove'), + 'style' => 'cursor: pointer;', + 'class' => 'remove-custom-field invert_filter', + ] + ); + + $table->data['custom-field-row-'.$i] = $row; + } + } + + $row = []; + $row['custom-fields-column'] = ''.__('Field name').''.'  '.html_print_input_text('field-name', '', '', 25, 40, true).'   '.html_print_checkbox('field-is-password', 1, false, true).__("It's a password").'   '.html_print_button(__('Add field'), 'add-field', false, '', 'class="sub add"', true); + + $table->data['custom-fields-row'] = $row; + + ob_start(); + + echo '
'; + echo html_print_table($table); + echo '
'; + echo $form_buttons; + echo '
'; + echo '
'; + + ?> + + + width = '100%'; +$table->class = 'databox filters'; +$table->size = []; +$table->data = []; + +$table->data[0][0] = __('Module'); +$table->data[0][1] = html_print_select_from_sql( + $sqlModuleInventoryAgentView, + 'module_inventory_agent_view', + $module, + 'javascript:this.form.submit();', + __('All'), + 0, + true +); + +$table->data[0][2] = __('Date'); +$table->data[0][3] = html_print_select( + $utimestampSelectValues, + 'utimestamp', + $utimestamp, + 'javascript:this.form.submit();', + __('Now'), + 0, + true +); + +$table->data[0][4] = __('Search'); +$table->data[0][5] = html_print_input_text('search_string', $search_string, '', 25, 0, true); +$table->data[0][6] = html_print_submit_button(__('Search'), 'search_button', false, 'class="sub wand"', true); + +// Show filters table. +echo sprintf( + '
%s
', + $id_agente, + html_print_table($table, true) +); + +unset($table); + +$idModuleInventory = null; +$rowTable = 1; +$printedTables = 0; + +// Inventory module data. +foreach ($rows as $row) { + if ($utimestamp > 0) { + $data_row = db_get_row_sql( + "SELECT data, timestamp + FROM tagente_datos_inventory + WHERE utimestamp <= '".$utimestamp."' + AND id_agent_module_inventory = ".$row['id_agent_module_inventory'].' + ORDER BY utimestamp DESC' + ); + if ($data_row !== false) { + $row['data'] = $data_row['data']; + $row['timestamp'] = $data_row['timestamp']; + } + } + + if ($idModuleInventory != $row['id_module_inventory']) { + if (isset($table) === true && $rowTable > 1) { + html_print_table($table); + unset($table); + $rowTable = 1; + $printedTables++; + } + + $table = new StdClass(); + $table->width = '98%'; + $table->align = []; + $table->cellpadding = 4; + $table->cellspacing = 4; + $table->class = 'databox filters'; + $table->head = []; + $table->head[0] = $row['name'].' - ('.date($config['date_format'], $row['utimestamp']).')'; + + if ((bool) $row['block_mode'] === true) { + $table->head[0] .= '   '.html_print_image( + 'images/op_inventory.menu.png', + true, + [ + 'alt' => __('Diff view'), + 'title' => __('Diff view'), + 'style' => 'vertical-align: middle; opacity: 0.8;', + ] + ).''; + } + + $subHeadTitles = explode(';', io_safe_output($row['data_format'])); + + $table->head_colspan = []; + $table->head_colspan[0] = (1 + count($subHeadTitles)); + $total_fields = count($subHeadTitles); + $table->rowspan = []; + + $table->data = []; + + $iterator = 0; + + foreach ($subHeadTitles as $titleData) { + $table->data[0][$iterator] = $titleData; + $table->cellstyle[0][$iterator] = 'background: #373737; color: #FFF;'; + + $iterator++; + } + } + + if ($row['block_mode']) { + $rowTable++; + $table->data[$rowTable][0] = '
'.$row['data'].'
'; + } else { + $arrayDataRowsInventory = explode(SEPARATOR_ROW, io_safe_output($row['data'])); + // SPLIT DATA IN ROWS + // Remove the empty item caused by a line ending with a new line. + $len = count($arrayDataRowsInventory); + if (end($arrayDataRowsInventory) == '') { + $len--; + unset($arrayDataRowsInventory[$len]); + } + + $iterator1 = 0; + $numRowHasNameAgent = $rowTable; + + $rowPair = true; + $iterator = 0; + foreach ($arrayDataRowsInventory as $dataRowInventory) { + $table->rowclass[$iterator] = ($rowPair === true) ? 'rowPair' : 'rowOdd'; + $rowPair = !$rowPair; + $iterator++; + + // Because SQL query extract all rows (row1;row2;row3...) and only I want the row has + // the search string. + if ($search_string && preg_match('/'.io_safe_output($search_string).'/i', io_safe_output($dataRowInventory)) == 0) { + continue; + } + + if ($rowTable > $numRowHasNameAgent) { + $table->data[$rowTable][0] = ''; + } + + $arrayDataColumnInventory = explode(SEPARATOR_COLUMN, $dataRowInventory); + // SPLIT ROW IN COLUMNS. + $iterator2 = 0; + foreach ($arrayDataColumnInventory as $dataColumnInventory) { + $table->data[$rowTable][$iterator2] = $dataColumnInventory; + $iterator2++; + } + + $iterator1++; + $rowTable++; + } + + if ($iterator1 > 5) { + // PRINT COUNT TOTAL. + $table->data[$rowTable][0] = ''.__('Total').': '.$iterator1; + $rowTable++; + } + } + + $idModuleInventory = $row['id_module_inventory']; +} + +if (isset($table) === true && $rowTable > 1) { + html_print_table($table); + $printedTables++; +} + +if ($printedTables === 0) { + echo "
".__('No data found.').'
'; +} diff --git a/pandora_console/operation/agentes/ver_agente.php b/pandora_console/operation/agentes/ver_agente.php index 3c4eebb991..c728cdc773 100644 --- a/pandora_console/operation/agentes/ver_agente.php +++ b/pandora_console/operation/agentes/ver_agente.php @@ -1437,8 +1437,20 @@ if ($tab === 'alert') { // Inventory. $inventoryCount = db_get_num_rows('SELECT id_agent_module_inventory FROM tagent_module_inventory WHERE id_agente = '.$agent['id_agente']); -$inventorytab = enterprise_hook('inventory_tab'); -if ($inventorytab == -1 || $inventoryCount === 0) { +$inventorytab['text'] = ''.html_print_image( + 'images/page_white_text.png', + true, + [ + 'class' => 'invert_filter', + 'title' => __('Inventory'), + ] +).''; + +if ($tab == 'inventory') { + $inventorytab['active'] = true; +} else { + $inventorytab['active'] = false; +}if ($inventorytab == -1 || $inventoryCount === 0) { $inventorytab = ''; } @@ -1968,7 +1980,7 @@ switch ($tab) { break; case 'inventory': - enterprise_include('operation/agentes/agent_inventory.php'); + include 'operation/agentes/agent_inventory.php'; break; case 'collection': diff --git a/pandora_console/operation/inventory/inventory.php b/pandora_console/operation/inventory/inventory.php new file mode 100755 index 0000000000..0a1cd508bd --- /dev/null +++ b/pandora_console/operation/inventory/inventory.php @@ -0,0 +1,551 @@ + 0) { + $sql .= ' WHERE id_grupo = '.$inventory_id_group; + } else { + $user_groups = implode(',', array_keys(users_get_groups($config['id_user']))); + + // Avoid errors if there are no groups. + if (empty($user_groups) === true) { + $user_groups = '"0"'; + } + + $sql .= ' WHERE id_grupo IN ('.$user_groups.')'; + } + + $result = db_get_all_rows_sql($sql); + if ($result !== false) { + foreach ($result as $row) { + $agents[$row['id_agente']] = $row['nombre']; + } + } + + $agents_select = $agents; + + if (strlen($inventory_agent) == 0) { + $inventory_id_agent = -1; + $inventory_agent = __('All'); + } else if ($inventory_agent == __('All')) { + $inventory_id_agent = 0; + } else { + $sql = 'SELECT id_agente + FROM tagente + WHERE nombre LIKE "'.$inventory_agent.'"'; + + $result = db_get_all_rows_sql($sql); + $inventory_id_agent = $result[0]['id_agente']; + } + + // Single agent selected. + if ($inventory_id_agent > 0 && isset($agents[$inventory_id_agent]) === true) { + $agents = [$inventory_id_agent => $agents[$inventory_id_agent]]; + } + + $agents_ids = array_keys($agents); + if (count($agents_ids) > 0) { + $inventory_data = inventory_get_data( + $agents_ids, + $inventory_module, + $utimestamp, + $inventory_search_string, + $export, + false, + $order_by_agent + ); + + if ((int) $inventory_data === ERR_NODATA) { + $inventory_data = ''; + } + } + + return; + } + + return; +} + +global $config; + +check_login(); + + +$is_metaconsole = is_metaconsole(); + +if ($is_metaconsole === true) { + open_meta_frame(); +} + +if (! check_acl($config['id_user'], 0, 'AR') && ! check_acl($config['id_user'], 0, 'AW')) { + db_pandora_audit( + AUDIT_LOG_ACL_VIOLATION, + 'Trying to access Inventory' + ); + include 'general/noaccess.php'; + return; +} + +require_once $config['homedir'].'/include/functions_users.php'; +require_once $config['homedir'].'/include/functions_inventory.php'; + +// Header. +ui_print_standard_header( + __('Inventory'), + 'images/op_inventory.png', + false, + '', + false, + [], + [ + [ + 'link' => '', + 'label' => __('Monitoring'), + ], + ] +); + +$inventory_id_agent = (int) get_parameter('agent_id', -1); +$inventory_agent = (string) get_parameter('agent', ''); +if (strlen($inventory_agent) == 0) { + $inventory_id_agent = -1; + $inventory_agent = __('All'); +} else if ($inventory_agent == __('All')) { + $inventory_id_agent = 0; +} + +$inventory_module = get_parameter('module_inventory_general_view'); +$inventory_id_group = (int) get_parameter('id_group'); +$inventory_search_string = (string) get_parameter('search_string'); +$order_by_agent = (bool) get_parameter('order_by_agent'); +$export = (string) get_parameter('export'); +$utimestamp = (int) get_parameter('utimestamp'); +$submit_filter = (bool) get_parameter('submit_filter'); + +$pagination_url_parameters = [ + 'inventory_id_agent' => $inventory_id_agent, + 'inventory_agent' => $inventory_agent, + 'inventory_id_group' => $inventory_id_group, +]; + +$noFilterSelected = false; +// Get variables. +if ($is_metaconsole === true) { + $nodes_connection = metaconsole_get_connections(); + $id_server = (int) get_parameter('id_server', 0); + $pagination_url_parameters['id_server'] = $id_server; + + if ($inventory_id_agent > 0) { + $inventory_id_server = (int) get_parameter('id_server_agent', -1); + $pagination_url_parameters['inventory_id_server'] = $inventory_id_server; + + if ($inventory_id_server !== -1) { + $id_server = $inventory_id_server; + $pagination_url_parameters['id_server'] = $id_server; + } + } + + // No filter selected. + $noFilterSelected = $inventory_id_agent === -1 && $inventory_id_group === 0 && $id_server === 0; +} + +if ($is_metaconsole === true) { + if ($id_server > 0) { + $connection = metaconsole_get_connection_by_id($id_server); + $agents_node = metaconsole_get_agents_servers($connection['server_name'], $inventory_id_group); + $node = metaconsole_get_servers($id_server); + + if (metaconsole_connect($connection) !== NOERR) { + ui_print_error_message( + __('There was a problem connecting with the node') + ); + } + + $sql = 'SELECT DISTINCT name as indexname, name + FROM tmodule_inventory, tagent_module_inventory + WHERE tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory'; + if ($inventory_id_agent > 0) { + $sql .= ' AND id_agente = '.$inventory_id_agent; + } + + $result_module = db_get_all_rows_sql($sql); + if ($submit_filter === true) { + $inventory_data .= inventory_get_data( + array_keys($agents_node), + $inventory_module, + $utimestamp, + $inventory_search_string, + $export, + false, + $order_by_agent, + $node, + $pagination_url_parameters + ); + } + + // Restore db connection. + metaconsole_restore_db(); + } else { + $result_module = []; + foreach ($nodes_connection as $key => $server) { + $agents_node = metaconsole_get_agents_servers($server['server_name'], $inventory_id_group); + $connection = metaconsole_get_connection($server['server_name']); + if (metaconsole_connect($connection) !== NOERR) { + continue; + } + + $sql = 'SELECT DISTINCT name as indexname, name + FROM tmodule_inventory, tagent_module_inventory + WHERE tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory'; + if ($inventory_id_agent > 0) { + $sql .= ' AND id_agente = '.$inventory_id_agent; + } + + $result = db_get_all_rows_sql($sql); + + if ($result !== false) { + $result_module = array_merge($result_module, $result); + if ($submit_filter === true) { + // Get the data. + $result_data = inventory_get_data( + array_keys($agents_node), + $inventory_module, + $utimestamp, + $inventory_search_string, + $export, + false, + $order_by_agent, + $server, + $pagination_url_parameters + ); + if ($result_data !== ERR_NODATA) { + $inventory_data .= $result_data; + } + } + } + + // Restore db connection. + metaconsole_restore_db(); + } + } + + $fields = []; + foreach ($result_module as $row) { + $id = array_shift($row); + $value = array_shift($row); + $fields[$id] = $value; + } +} + +$agent_a = (bool) check_acl($config['id_user'], 0, 'AR'); +$agent_w = (bool) check_acl($config['id_user'], 0, 'AW'); +$access = ($agent_a === true) ? 'AR' : (($agent_w === true) ? 'AW' : 'AR'); + +if (is_metaconsole() === true) { + $filteringFunction = 'active_inventory_submit()'; + ui_print_info_message(['no_close' => true, 'message' => __('You must select at least one filter.'), 'force_class' => 'select_one_filter']); + ?> + + '; + +$table = new stdClass(); +$table->width = '100%'; +$table->class = 'databox filters'; +$table->size = []; +$table->size[0] = '120px'; +$table->cellpadding = 0; +$table->cellspacing = 0; +$table->data = []; +$table->rowspan[0][4] = 2; + +if ($is_metaconsole === true) { + // Node select. + $nodes = []; + foreach ($nodes_connection as $row) { + $nodes[$row['id']] = $row['server_name']; + } + + $table->data[-1][0] = ''.__('Server').''; + $table->data[-1][1] = html_print_select($nodes, 'id_server', $id_server, $filteringFunction, __('All'), 0, true, false, true, '', false, 'min-width: 250px; max-width: 300px;'); +} + +// Group select. +$table->data[0][0] = ''.__('Group').''; + +$table->data[0][1] = '
'; +$table->data[0][1] .= html_print_select_groups( + $config['id_user'], + $access, + true, + 'id_group', + $inventory_id_group, + $filteringFunction, + '', + '1', + true, + false, + true, + '', + false +); +$table->data[0][1] .= '
'; + +// Module selected. +$table->data[0][2] = ''.__('Module').''; + +if ($is_metaconsole === true) { + $table->data[0][3] = html_print_select($fields, 'module_inventory_general_view', $inventory_module, $filteringFunction, __('All'), 0, true, false, true, '', false, 'min-width: 194px; max-width: 200px;'); +} else { + $sql = 'SELECT name as indexname, name + FROM tmodule_inventory, tagent_module_inventory + WHERE tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory'; + if ($inventory_id_agent > 0) { + $sql .= ' AND id_agente = '.$inventory_id_agent; + } + + $table->data[0][3] = html_print_select_from_sql($sql, 'module_inventory_general_view', $inventory_module, '', __('All'), 'all', true, false, false); +} + + +// Button of submit. +$table->data[0][4] = html_print_submit_button(__('Search'), 'submit_filter', $noFilterSelected, "class='sub search'", true); + +// Agent select. +if ($is_metaconsole === false) { + $agents = []; + $sql = 'SELECT id_agente, nombre FROM tagente'; + if ($inventory_id_group > 0) { + $sql .= ' WHERE id_grupo = '.$inventory_id_group; + } else { + $user_groups = implode(',', array_keys(users_get_groups($config['id_user']))); + + // Avoid errors if there are no groups. + if (empty($user_groups) === true) { + $user_groups = '"0"'; + } + + $sql .= ' WHERE id_grupo IN ('.$user_groups.')'; + } + + $result = db_get_all_rows_sql($sql); + if ($result) { + foreach ($result as $row) { + $agents[$row['id_agente']] = $row['nombre']; + } + } +} + +$table->data[1][0] = ''.__('Agent').''; + +$params = []; +$params['return'] = true; +$params['show_helptip'] = true; +$params['input_name'] = 'agent'; +$params['value'] = $inventory_agent; +$params['selectbox_id'] = 'module_inventory_general_view'; +$params['javascript_is_function_select'] = true; +$params['javascript_function_action_after_select'] = 'this.form.submit'; +$params['use_hidden_input_idagent'] = true; +$params['print_hidden_input_idagent'] = true; +$params['hidden_input_idagent_id'] = 'hidden-autocomplete_id_agent'; +$params['hidden_input_idagent_name'] = 'agent_id'; +$params['hidden_input_idagent_value'] = $inventory_id_agent; +if ($is_metaconsole === true) { + $params['print_input_id_server'] = true; + $params['input_id_server_id'] = 'hidden-autocomplete_id_server'; + $params['input_id_server_name'] = 'id_server_agent'; + $params['input_id_server_value'] = $inventory_id_server; + $params['metaconsole_enabled'] = true; +} + +$table->data[1][1] = ui_print_agent_autocomplete_input($params); + +// String search_string. +$table->data[1][2] = ''.__('Search').''; +$table->data[1][3] = html_print_input_text('search_string', $inventory_search_string, '', 25, 0, true, false, false, '', '', $filteringFunction, 'off', false, $filteringFunction); + +// Date filter. In Metaconsole has not reason for show. +if (is_metaconsole() === false) { + $table->data[2][0] = ''.__('Date').''; + $dates = inventory_get_dates($inventory_module, $inventory_agent, $inventory_id_group); + $table->data[2][1] = html_print_select($dates, 'utimestamp', $utimestamp, '', __('Last'), 0, true); +} + +// Order by agent filter. +$table->data[2][2] = ''.__('Order by agent').''; + +$table->data[2][3] = html_print_checkbox('order_by_agent', 1, $order_by_agent, true, false, ''); + +html_print_table($table); + +echo ''; + +// No agent selected or no search performed. +if ($inventory_id_agent < 0 || $submit_filter === false) { + echo ' '; + + return; +} + +if ($is_metaconsole === false) { + // Single agent selected. + if ($inventory_id_agent > 0 && isset($agents[$inventory_id_agent]) === true) { + $agents = [$inventory_id_agent => $agents[$inventory_id_agent]]; + } + + $agents_ids = array_keys($agents); + if (count($agents_ids) > 0) { + $inventory_data = inventory_get_data( + $agents_ids, + $inventory_module, + $utimestamp, + $inventory_search_string, + $export, + false, + $order_by_agent, + '', + $pagination_url_parameters + ); + } + + if (count($agents_ids) === 0 || (int) $inventory_data === ERR_NODATA) { + ui_print_info_message(['no_close' => true, 'message' => __('No data found.') ]); + echo ' '; + + return; + } + + echo "'; + echo "'; + ?> + + true, 'message' => __('No data found.') ]); + } else { + echo $inventory_data; + } + + close_meta_frame(); +} + +ui_require_jquery_file('pandora.controls'); +ui_require_jquery_file('ajaxqueue'); +ui_require_jquery_file('bgiframe'); +?> + + diff --git a/pandora_console/operation/menu.php b/pandora_console/operation/menu.php index 1e3eae4c8a..49c2400088 100644 --- a/pandora_console/operation/menu.php +++ b/pandora_console/operation/menu.php @@ -73,7 +73,11 @@ if ($access_console_node === true) { $sub['view']['sub2'] = $sub2; - enterprise_hook('inventory_menu'); + if (check_acl($config['id_user'], 0, 'AR') || check_acl($config['id_user'], 0, 'AW')) { + $sub['operation/inventory/inventory']['text'] = __('Inventory'); + $sub['operation/inventory/inventory']['id'] = 'Inventory'; + $sub['operation/inventory/inventory']['refr'] = 0; + } if ($config['activate_netflow']) { $sub['network_traffic'] = [ diff --git a/pandora_server/bin/pandora_server b/pandora_server/bin/pandora_server index ce091872e2..5275829422 100755 --- a/pandora_server/bin/pandora_server +++ b/pandora_server/bin/pandora_server @@ -40,6 +40,7 @@ use PandoraFMS::WMIServer; use PandoraFMS::PluginServer; use PandoraFMS::PredictionServer; use PandoraFMS::WebServer; +use PandoraFMS::InventoryServer; # Constants for Win32 services. use constant WIN32_SERVICE_STOPPED => 0x01; @@ -157,6 +158,8 @@ sub pandora_startup () { push (@Servers, new PandoraFMS::PluginServer (\%Config, $DBH)); push (@Servers, new PandoraFMS::PredictionServer (\%Config, $DBH)); push (@Servers, new PandoraFMS::WebServer (\%Config, $DBH)); + push (@Servers, new PandoraFMS::InventoryServer (\%Config, $DBH)); + } else { # Metaconsole service modules are run by the prediction server push (@Servers, new PandoraFMS::PredictionServer (\%Config, $DBH)); diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 35a8b6869a..5d01eadf67 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -278,6 +278,8 @@ our @EXPORT = qw( notification_set_targets notification_get_users notification_get_groups + process_inventory_data + process_inventory_module_diff ); # Some global variables @@ -4987,277 +4989,6 @@ sub process_inc_abs_data ($$$$$$) { return $diff; } -################################################################################ -################################################################################ -## Inventory XML data -################################################################################ -################################################################################ - - -################################################################################ -# Process inventory data, creating the module if necessary. -################################################################################ -sub process_inventory_data ($$$$$$$) { - my ($pa_config, $data, $server_id, $agent_name, - $interval, $timestamp, $dbh) = @_; - - foreach my $inventory (@{$data->{'inventory'}}) { - - # Process inventory modules - foreach my $module_data (@{$inventory->{'inventory_module'}}) { - - my $module_name = get_tag_value ($module_data, 'name', ''); - - # Unnamed module - next if ($module_name eq ''); - - # Process inventory data - my $data_list = ''; - foreach my $list (@{$module_data->{'datalist'}}) { - - # Empty list - next unless defined ($list->{'data'}); - - foreach my $data (@{$list->{'data'}}) { - $data_list .= $data . "\n"; - } - } - - next if ($data_list eq ''); - process_inventory_module_data ($pa_config, $data_list, $server_id, $agent_name, $module_name, $interval, $timestamp, $dbh); - } - } -} - -################################################################################ -# Process inventory module data, creating the module if necessary. -################################################################################ -sub process_inventory_module_data ($$$$$$$$) { - my ($pa_config, $data, $server_id, $agent_name, - $module_name, $interval, $timestamp, $dbh) = @_; - - logger ($pa_config, "Processing inventory module '$module_name' for agent '$agent_name'.", 10); - - # Get agent data - my $agent = get_db_single_row ($dbh, - 'SELECT * FROM tagente WHERE nombre = ?', safe_input($agent_name)); - if (! defined ($agent)) { - logger ($pa_config, "Agent '$agent_name' not found for inventory module '$module_name'.", 3); - return; - } - - # Parse the timestamp and process the module - if ($timestamp !~ /(\d+)\/(\d+)\/(\d+) +(\d+):(\d+):(\d+)/ && - $timestamp !~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/) { - logger($pa_config, "Invalid timestamp '$timestamp' from module '$module_name' agent '$agent_name'.", 3); - return; - } - my $utimestamp; - eval { - $utimestamp = strftime("%s", $6, $5, $4, $3, $2 - 1, $1 - 1900); - }; - if ($@) { - logger($pa_config, "Invalid timestamp '$timestamp' from module '$module_name' agent '$agent_name'.", 3); - return; - } - - # Get module data or create it if it does not exist - my $inventory_module = get_db_single_row ($dbh, - 'SELECT tagent_module_inventory.*, tmodule_inventory.name - FROM tagent_module_inventory, tmodule_inventory - WHERE tagent_module_inventory.id_module_inventory = tmodule_inventory.id_module_inventory - AND id_agente = ? AND name = ?', - $agent->{'id_agente'}, safe_input($module_name)); - - - - if (! defined ($inventory_module)) { - # Get the module - my $module_id = get_db_value ($dbh, - 'SELECT id_module_inventory FROM tmodule_inventory WHERE name = ? AND id_os = ?', - safe_input($module_name), $agent->{'id_os'}); - return unless defined ($module_id); - - my $id_agent_module_inventory = 0; - # Update the module data - - $id_agent_module_inventory = db_insert ($dbh, 'id_agent_module_inventory', - "INSERT INTO tagent_module_inventory (id_agente, id_module_inventory, - ${RDBMS_QUOTE}interval${RDBMS_QUOTE}, data, timestamp, utimestamp, flag) - VALUES (?, ?, ?, ?, ?, ?, ?)", - $agent->{'id_agente'}, $module_id, $interval, safe_input($data), $timestamp, $utimestamp, 0); - - - return unless ($id_agent_module_inventory > 0); - - db_do ($dbh, - 'INSERT INTO tagente_datos_inventory (id_agent_module_inventory, data, timestamp, utimestamp) - VALUES (?, ?, ?, ?)', - $id_agent_module_inventory, safe_input($data), $timestamp, $utimestamp); - - return; - } - - process_inventory_module_diff($pa_config, safe_input($data), - $inventory_module, $timestamp, $utimestamp, $dbh, $interval); -} - -################################################################################ -# Searching differences between incoming module and stored module, -# creating/updating module and event -################################################################################ -sub process_inventory_module_diff ($$$$$$;$) { - my ($pa_config, $incoming_data, $inventory_module, $timestamp, $utimestamp, $dbh, $interval) = @_; - - my $stored_data = $inventory_module->{'data'}; - my $agent_id = $inventory_module->{'id_agente'}; - my $stored_utimestamp = $inventory_module->{'utimestamp'}; - my $agent_module_inventory_id = $inventory_module->{'id_agent_module_inventory'}; - my $module_inventory_id = $inventory_module->{'id_module_inventory'}; - - - process_inventory_alerts($pa_config, $incoming_data, - $inventory_module, $timestamp, $utimestamp, $dbh, $interval); - - # If there were any changes generate an event and save the new data - if (decode('UTF-8', $stored_data) ne $incoming_data) { - my $inventory_db = $stored_data; - my $inventory_new = $incoming_data; - my @inventory = split('\n', $inventory_new); - my $diff_new = ""; - my $diff_delete = ""; - - foreach my $inv (@inventory) { - my $inv_clean = quotemeta($inv); - if($inventory_db =~ m/$inv_clean/) { - $inventory_db =~ s/$inv_clean//g; - $inventory_new =~ s/$inv_clean//g; - } - else { - $diff_new .= "$inv\n"; - } - } - - # If any register is in the stored yet, we store as deleted - $inventory_db =~ s/\n\n*/\n/g; - $inventory_db =~ s/^\n//g; - - $diff_delete = $inventory_db; - - if($diff_new ne "") { - $diff_new = " NEW: '$diff_new' "; - } - if($diff_delete ne "") { - $diff_delete = " DELETED: '$diff_delete' "; - } - - db_do ($dbh, 'INSERT INTO tagente_datos_inventory (id_agent_module_inventory, data, timestamp, utimestamp) VALUES (?, ?, ?, ?)', - $agent_module_inventory_id, $incoming_data, $timestamp, $utimestamp); - - # Do not generate an event the first time the module runs - if ($stored_utimestamp != 0) { - my $inventory_changes_blacklist = pandora_get_config_value ($dbh, 'inventory_changes_blacklist'); - my $inventory_module_blocked = 0; - - if($inventory_changes_blacklist ne "") { - foreach my $inventory_id_excluded (split (',', $inventory_changes_blacklist)) { - # If the inventory_module_id is in the blacklist, the change will not be processed - if($inventory_module->{'id_module_inventory'} == $inventory_id_excluded) { - logger ($pa_config, "Inventory change omitted on inventory #$inventory_id_excluded due be on the changes blacklist", 10); - $inventory_module_blocked = 1; - } - } - } - - # If the inventory_module_id is in the blacklist, the change will not be processed - if ($inventory_module_blocked == 0) { - my $inventory_module_name = get_db_value ($dbh, "SELECT name FROM tmodule_inventory WHERE id_module_inventory = ?", $module_inventory_id); - return unless defined ($inventory_module_name); - - my $agent_name = get_agent_name ($dbh, $agent_id); - return unless defined ($agent_name); - - my $agent_alias = get_agent_alias ($dbh, $agent_id); - return unless defined ($agent_alias); - - my $group_id = get_agent_group ($dbh, $agent_id); - - - - $stored_data =~ s/&#x20;/ /g; - $incoming_data =~ s/&#x20;/ /g; - - my @values_stored = split(' ', $stored_data); - my @finalc_stored = (); - my @values_incoming = split(' ', $incoming_data); - my @finalc_incoming = (); - my @finalc_compare_added = (); - my @finalc_compare_deleted = (); - my @finalc_compare_updated = (); - my @finalc_compare_updated_del = (); - my @finalc_compare_updated_add = (); - my $temp_compare = (); - my $final_d = ''; - my $final_a = ''; - my $final_u = ''; - - - - foreach my $i (0 .. $#values_stored) { - $finalc_stored[$i] = $values_stored[$i]; - - if ( grep $_ eq $values_stored[$i], @values_incoming ) { - - } else { - # Use 'safe_output' to avoid double encode the entities when creating the event with 'pandora_event' - $final_d .= "DELETED RECORD: ".safe_output($values_stored[$i])."\n"; - } - } - - foreach my $i (0 .. $#values_incoming) { - $finalc_incoming[$i] = $values_incoming[$i]; - - if ( grep $_ eq $values_incoming[$i], @values_stored ) { - - } else { - # Use 'safe_output' to avoid double encode the entities when creating the event with 'pandora_event' - $final_a .= "NEW RECORD: ".safe_output($values_incoming[$i])."\n"; - } - } - - # foreach my $i (0 .. $#finalc_compare_deleted) { - # $finalc_compare_updated_del[$i] = split(';', $finalc_compare_deleted[$i]); - # $finalc_compare_updated_add[$i] = split(';', $finalc_compare_added[$i]); - # if($finalc_compare_updated_del[$i] ~~ @finalc_compare_updated_add){ - # $finalc_compare_updated[$i] = $finalc_compare_updated_del[$i]; - # } - # $finalc_compare_updated[$i] =~ s/DELETED RECORD:/UPDATED RECORD:/g; - # $finalc_compare_updated[$i] =~ s/NEW RECORD://g; - # } - - - pandora_event ($pa_config, "Configuration change:\n".$final_d.$final_a." for agent '" . safe_output($agent_alias) . "' module '" . safe_output($inventory_module_name) . "'.", $group_id, $agent_id, 0, 0, 0, "configuration_change", 0, $dbh); - } - } - } - - # Update the module data - if (defined($interval)) { - db_do ($dbh, 'UPDATE tagent_module_inventory - SET'. $RDBMS_QUOTE . 'interval' . - $RDBMS_QUOTE . '=?, data=?, timestamp=?, utimestamp=? - WHERE id_agent_module_inventory=?', - $interval, $incoming_data, $timestamp, - $utimestamp, $agent_module_inventory_id); - - } - else { - db_do ($dbh, 'UPDATE tagent_module_inventory - SET data = ?, timestamp = ?, utimestamp = ? - WHERE id_agent_module_inventory = ?', - $incoming_data, $timestamp, $utimestamp, $agent_module_inventory_id); - } -} sub log4x_get_severity_num($) { my ($data_object) = @_; @@ -7400,6 +7131,278 @@ sub notification_get_groups { return @results; } +################################################################################ +################################################################################ +## Inventory XML data +################################################################################ +################################################################################ + + +################################################################################ +# Process inventory data, creating the module if necessary. +################################################################################ +sub process_inventory_data ($$$$$$$) { + my ($pa_config, $data, $server_id, $agent_name, + $interval, $timestamp, $dbh) = @_; + + foreach my $inventory (@{$data->{'inventory'}}) { + + # Process inventory modules + foreach my $module_data (@{$inventory->{'inventory_module'}}) { + + my $module_name = get_tag_value ($module_data, 'name', ''); + + # Unnamed module + next if ($module_name eq ''); + + # Process inventory data + my $data_list = ''; + foreach my $list (@{$module_data->{'datalist'}}) { + + # Empty list + next unless defined ($list->{'data'}); + + foreach my $data (@{$list->{'data'}}) { + $data_list .= $data . "\n"; + } + } + + next if ($data_list eq ''); + process_inventory_module_data ($pa_config, $data_list, $server_id, $agent_name, $module_name, $interval, $timestamp, $dbh); + } + } +} + +################################################################################ +# Process inventory module data, creating the module if necessary. +################################################################################ +sub process_inventory_module_data ($$$$$$$$) { + my ($pa_config, $data, $server_id, $agent_name, + $module_name, $interval, $timestamp, $dbh) = @_; + + logger ($pa_config, "Processing inventory module '$module_name' for agent '$agent_name'.", 10); + + # Get agent data + my $agent = get_db_single_row ($dbh, + 'SELECT * FROM tagente WHERE nombre = ?', safe_input($agent_name)); + if (! defined ($agent)) { + logger ($pa_config, "Agent '$agent_name' not found for inventory module '$module_name'.", 3); + return; + } + + # Parse the timestamp and process the module + if ($timestamp !~ /(\d+)\/(\d+)\/(\d+) +(\d+):(\d+):(\d+)/ && + $timestamp !~ /(\d+)\-(\d+)\-(\d+) +(\d+):(\d+):(\d+)/) { + logger($pa_config, "Invalid timestamp '$timestamp' from module '$module_name' agent '$agent_name'.", 3); + return; + } + my $utimestamp; + eval { + $utimestamp = strftime("%s", $6, $5, $4, $3, $2 - 1, $1 - 1900); + }; + if ($@) { + logger($pa_config, "Invalid timestamp '$timestamp' from module '$module_name' agent '$agent_name'.", 3); + return; + } + + # Get module data or create it if it does not exist + my $inventory_module = get_db_single_row ($dbh, + 'SELECT tagent_module_inventory.*, tmodule_inventory.name + FROM tagent_module_inventory, tmodule_inventory + WHERE tagent_module_inventory.id_module_inventory = tmodule_inventory.id_module_inventory + AND id_agente = ? AND name = ?', + $agent->{'id_agente'}, safe_input($module_name)); + + + + if (! defined ($inventory_module)) { + # Get the module + my $module_id = get_db_value ($dbh, + 'SELECT id_module_inventory FROM tmodule_inventory WHERE name = ? AND id_os = ?', + safe_input($module_name), $agent->{'id_os'}); + return unless defined ($module_id); + + my $id_agent_module_inventory = 0; + # Update the module data + + $id_agent_module_inventory = db_insert ($dbh, 'id_agent_module_inventory', + "INSERT INTO tagent_module_inventory (id_agente, id_module_inventory, + ${RDBMS_QUOTE}interval${RDBMS_QUOTE}, data, timestamp, utimestamp, flag) + VALUES (?, ?, ?, ?, ?, ?, ?)", + $agent->{'id_agente'}, $module_id, $interval, safe_input($data), $timestamp, $utimestamp, 0); + + + return unless ($id_agent_module_inventory > 0); + + db_do ($dbh, + 'INSERT INTO tagente_datos_inventory (id_agent_module_inventory, data, timestamp, utimestamp) + VALUES (?, ?, ?, ?)', + $id_agent_module_inventory, safe_input($data), $timestamp, $utimestamp); + + return; + } + + process_inventory_module_diff($pa_config, safe_input($data), + $inventory_module, $timestamp, $utimestamp, $dbh, $interval); +} + +################################################################################ +# Searching differences between incoming module and stored module, +# creating/updating module and event +################################################################################ +sub process_inventory_module_diff ($$$$$$;$) { + my ($pa_config, $incoming_data, $inventory_module, $timestamp, $utimestamp, $dbh, $interval) = @_; + + my $stored_data = $inventory_module->{'data'}; + my $agent_id = $inventory_module->{'id_agente'}; + my $stored_utimestamp = $inventory_module->{'utimestamp'}; + my $agent_module_inventory_id = $inventory_module->{'id_agent_module_inventory'}; + my $module_inventory_id = $inventory_module->{'id_module_inventory'}; + + + enterprise_hook('process_inventory_alerts', [$pa_config, $incoming_data, + $inventory_module, $timestamp, $utimestamp, $dbh, $interval]); + + # If there were any changes generate an event and save the new data + if (decode('UTF-8', $stored_data) ne $incoming_data) { + my $inventory_db = $stored_data; + my $inventory_new = $incoming_data; + my @inventory = split('\n', $inventory_new); + my $diff_new = ""; + my $diff_delete = ""; + + foreach my $inv (@inventory) { + my $inv_clean = quotemeta($inv); + if($inventory_db =~ m/$inv_clean/) { + $inventory_db =~ s/$inv_clean//g; + $inventory_new =~ s/$inv_clean//g; + } + else { + $diff_new .= "$inv\n"; + } + } + + # If any register is in the stored yet, we store as deleted + $inventory_db =~ s/\n\n*/\n/g; + $inventory_db =~ s/^\n//g; + + $diff_delete = $inventory_db; + + if($diff_new ne "") { + $diff_new = " NEW: '$diff_new' "; + } + if($diff_delete ne "") { + $diff_delete = " DELETED: '$diff_delete' "; + } + + db_do ($dbh, 'INSERT INTO tagente_datos_inventory (id_agent_module_inventory, data, timestamp, utimestamp) VALUES (?, ?, ?, ?)', + $agent_module_inventory_id, $incoming_data, $timestamp, $utimestamp); + + # Do not generate an event the first time the module runs + if ($stored_utimestamp != 0) { + my $inventory_changes_blacklist = pandora_get_config_value ($dbh, 'inventory_changes_blacklist'); + my $inventory_module_blocked = 0; + + if($inventory_changes_blacklist ne "") { + foreach my $inventory_id_excluded (split (',', $inventory_changes_blacklist)) { + # If the inventory_module_id is in the blacklist, the change will not be processed + if($inventory_module->{'id_module_inventory'} == $inventory_id_excluded) { + logger ($pa_config, "Inventory change omitted on inventory #$inventory_id_excluded due be on the changes blacklist", 10); + $inventory_module_blocked = 1; + } + } + } + + # If the inventory_module_id is in the blacklist, the change will not be processed + if ($inventory_module_blocked == 0) { + my $inventory_module_name = get_db_value ($dbh, "SELECT name FROM tmodule_inventory WHERE id_module_inventory = ?", $module_inventory_id); + return unless defined ($inventory_module_name); + + my $agent_name = get_agent_name ($dbh, $agent_id); + return unless defined ($agent_name); + + my $agent_alias = get_agent_alias ($dbh, $agent_id); + return unless defined ($agent_alias); + + my $group_id = get_agent_group ($dbh, $agent_id); + + + + $stored_data =~ s/&#x20;/ /g; + $incoming_data =~ s/&#x20;/ /g; + + my @values_stored = split(' ', $stored_data); + my @finalc_stored = (); + my @values_incoming = split(' ', $incoming_data); + my @finalc_incoming = (); + my @finalc_compare_added = (); + my @finalc_compare_deleted = (); + my @finalc_compare_updated = (); + my @finalc_compare_updated_del = (); + my @finalc_compare_updated_add = (); + my $temp_compare = (); + my $final_d = ''; + my $final_a = ''; + my $final_u = ''; + + + + foreach my $i (0 .. $#values_stored) { + $finalc_stored[$i] = $values_stored[$i]; + + if ( grep $_ eq $values_stored[$i], @values_incoming ) { + + } else { + # Use 'safe_output' to avoid double encode the entities when creating the event with 'pandora_event' + $final_d .= "DELETED RECORD: ".safe_output($values_stored[$i])."\n"; + } + } + + foreach my $i (0 .. $#values_incoming) { + $finalc_incoming[$i] = $values_incoming[$i]; + + if ( grep $_ eq $values_incoming[$i], @values_stored ) { + + } else { + # Use 'safe_output' to avoid double encode the entities when creating the event with 'pandora_event' + $final_a .= "NEW RECORD: ".safe_output($values_incoming[$i])."\n"; + } + } + + # foreach my $i (0 .. $#finalc_compare_deleted) { + # $finalc_compare_updated_del[$i] = split(';', $finalc_compare_deleted[$i]); + # $finalc_compare_updated_add[$i] = split(';', $finalc_compare_added[$i]); + # if($finalc_compare_updated_del[$i] ~~ @finalc_compare_updated_add){ + # $finalc_compare_updated[$i] = $finalc_compare_updated_del[$i]; + # } + # $finalc_compare_updated[$i] =~ s/DELETED RECORD:/UPDATED RECORD:/g; + # $finalc_compare_updated[$i] =~ s/NEW RECORD://g; + # } + + + pandora_event ($pa_config, "Configuration change:\n".$final_d.$final_a." for agent '" . safe_output($agent_alias) . "' module '" . safe_output($inventory_module_name) . "'.", $group_id, $agent_id, 0, 0, 0, "configuration_change", 0, $dbh); + } + } + } + + # Update the module data + if (defined($interval)) { + db_do ($dbh, 'UPDATE tagent_module_inventory + SET'. $RDBMS_QUOTE . 'interval' . + $RDBMS_QUOTE . '=?, data=?, timestamp=?, utimestamp=? + WHERE id_agent_module_inventory=?', + $interval, $incoming_data, $timestamp, + $utimestamp, $agent_module_inventory_id); + + } + else { + db_do ($dbh, 'UPDATE tagent_module_inventory + SET data = ?, timestamp = ?, utimestamp = ? + WHERE id_agent_module_inventory = ?', + $incoming_data, $timestamp, $utimestamp, $agent_module_inventory_id); + } +} + # End of function declaration # End of defined Code diff --git a/pandora_server/lib/PandoraFMS/InventoryServer.pm b/pandora_server/lib/PandoraFMS/InventoryServer.pm new file mode 100644 index 0000000000..f0c92a7fd3 --- /dev/null +++ b/pandora_server/lib/PandoraFMS/InventoryServer.pm @@ -0,0 +1,267 @@ +package PandoraFMS::InventoryServer; + +########################################################################## +# Pandora FMS Inventory Server. +########################################################################## +# Copyright (c) 2007-2021 Artica Soluciones Tecnologicas S.L +# This code is not free or OpenSource. Please don't redistribute. +########################################################################## + +use strict; +use warnings; + +use threads; +use threads::shared; +use Thread::Semaphore; + +use File::Temp qw(tempfile unlink0); +use POSIX qw(strftime); +use HTML::Entities; +use MIME::Base64; +use JSON; + +# UTF-8 flags control with I/O for multibyte characters +use open ":utf8"; + +# Default lib dir for RPM and DEB packages +BEGIN { push @INC, '/usr/lib/perl5'; } + +use PandoraFMS::Tools; +use PandoraFMS::DB; +use PandoraFMS::Core; +use PandoraFMS::ProducerConsumerServer; + +# Inherits from PandoraFMS::ProducerConsumerServer +our @ISA = qw(PandoraFMS::ProducerConsumerServer); + +# Global variables +my @TaskQueue :shared; +my %PendingTasks :shared; +my $Sem :shared; +my $TaskSem :shared; + +######################################################################################## +# Inventory Server class constructor. +######################################################################################## +sub new ($$;$) { + my ($class, $config, $dbh) = @_; + + return undef unless $config->{'inventoryserver'} == 1; + + # Initialize semaphores and queues + @TaskQueue = (); + %PendingTasks = (); + $Sem = Thread::Semaphore->new; + $TaskSem = Thread::Semaphore->new (0); + + # Call the constructor of the parent class + my $self = $class->SUPER::new($config, INVENTORYSERVER, \&PandoraFMS::InventoryServer::data_producer, \&PandoraFMS::InventoryServer::data_consumer, $dbh); + + bless $self, $class; + return $self; +} + +############################################################################### +# Run. +############################################################################### +sub run ($) { + my $self = shift; + my $pa_config = $self->getConfig (); + + print_message ($pa_config, " [*] Starting " . $pa_config->{'rb_product_name'} . " Inventory Server.", 1); + $self->setNumThreads ($pa_config->{'inventory_threads'}); + $self->SUPER::run (\@TaskQueue, \%PendingTasks, $Sem, $TaskSem); +} + +############################################################################### +# Data producer. +############################################################################### +sub data_producer ($) { + my $self = shift; + my ($pa_config, $dbh) = ($self->getConfig (), $self->getDBH ()); + + my @tasks; + my @rows; + + if (pandora_is_master($pa_config) == 0) { + if ($pa_config->{'dbengine'} ne 'oracle') { + @rows = get_db_rows ($dbh, + 'SELECT tagent_module_inventory.id_agent_module_inventory, tagent_module_inventory.flag, tagent_module_inventory.timestamp + FROM tagente, tagent_module_inventory, tmodule_inventory + WHERE tagente.server_name = ? + AND tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory + AND tmodule_inventory.id_os IS NOT NULL + AND tagente.id_agente = tagent_module_inventory.id_agente + AND tagent_module_inventory.target <> \'\' + AND tagente.disabled = 0 + AND (tagent_module_inventory.timestamp = \'1970-01-01 00:00:00\' + OR UNIX_TIMESTAMP(tagent_module_inventory.timestamp) + tagent_module_inventory.interval < UNIX_TIMESTAMP() + OR tagent_module_inventory.flag = 1) + ORDER BY tagent_module_inventory.timestamp ASC', + $pa_config->{'servername'}); + } + else { + @rows = get_db_rows ($dbh, + 'SELECT tagent_module_inventory.id_agent_module_inventory, tagent_module_inventory.flag, tagent_module_inventory.timestamp + FROM tagente, tagent_module_inventory, tmodule_inventory + WHERE tagente.server_name = ? + AND tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory + AND tmodule_inventory.id_os IS NOT NULL + AND tagente.id_agente = tagent_module_inventory.id_agente + AND tagent_module_inventory.target IS NOT NULL + AND tagente.disabled = 0 + AND (tagent_module_inventory.timestamp = \'1970-01-01 00:00:00\' + OR UNIX_TIMESTAMP(tagent_module_inventory.timestamp) + tagent_module_inventory.' . ${RDBMS_QUOTE} . 'interval' . ${RDBMS_QUOTE} . '< UNIX_TIMESTAMP() + OR tagent_module_inventory.flag = 1) + ORDER BY tagent_module_inventory.timestamp ASC', + $pa_config->{'servername'}); + } + } + else { + if ($pa_config->{'dbengine'} ne 'oracle') { + @rows = get_db_rows ($dbh, + 'SELECT tagent_module_inventory.id_agent_module_inventory, tagent_module_inventory.flag, tagent_module_inventory.timestamp + FROM tagente, tagent_module_inventory, tmodule_inventory + WHERE (server_name = ? OR server_name = ANY(SELECT name FROM tserver WHERE status <> 1 AND server_type = ?)) + AND tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory + AND tmodule_inventory.id_os IS NOT NULL + AND tagente.id_agente = tagent_module_inventory.id_agente + AND tagent_module_inventory.target <> \'\' + AND tagente.disabled = 0 + AND (tagent_module_inventory.timestamp = \'1970-01-01 00:00:00\' + OR UNIX_TIMESTAMP(tagent_module_inventory.timestamp) + tagent_module_inventory.interval < UNIX_TIMESTAMP() + OR tagent_module_inventory.flag = 1) + ORDER BY tagent_module_inventory.timestamp ASC', + $pa_config->{'servername'}, INVENTORYSERVER); + } + else { + @rows = get_db_rows ($dbh, + 'SELECT tagent_module_inventory.id_agent_module_inventory, tagent_module_inventory.flag, tagent_module_inventory.timestamp + FROM tagente, tagent_module_inventory, tmodule_inventory + WHERE (server_name = ? OR server_name = ANY(SELECT name FROM tserver WHERE status <> 1 AND server_type = ?)) + AND tmodule_inventory.id_module_inventory = tagent_module_inventory.id_module_inventory + AND tmodule_inventory.id_os IS NOT NULL + AND tagente.id_agente = tagent_module_inventory.id_agente + AND tagent_module_inventory.target IS NOT NULL + AND tagente.disabled = 0 + AND (tagent_module_inventory.timestamp = \'1970-01-01 00:00:00\' + OR UNIX_TIMESTAMP(tagent_module_inventory.timestamp) + tagent_module_inventory.' . ${RDBMS_QUOTE} . 'interval' . ${RDBMS_QUOTE} . ' < UNIX_TIMESTAMP() + OR tagent_module_inventory.flag = 1) + ORDER BY tagent_module_inventory.timestamp ASC', + $pa_config->{'servername'}, INVENTORYSERVER); + } + } + + foreach my $row (@rows) { + + # Reset forced execution flag + if ($row->{'flag'} == 1) { + db_do ($dbh, 'UPDATE tagent_module_inventory SET flag = 0 WHERE id_agent_module_inventory = ?', $row->{'id_agent_module_inventory'}); + } + + push (@tasks, $row->{'id_agent_module_inventory'}); + } + + return @tasks; +} + +############################################################################### +# Data consumer. +############################################################################### +sub data_consumer ($$) { + my ($self, $module_id) = @_; + my ($pa_config, $dbh) = ($self->getConfig (), $self->getDBH ()); + + my $timeout = $pa_config->{'inventory_timeout'}; + + # Get inventory module data + my $module = get_db_single_row ($dbh, + 'SELECT * FROM tagent_module_inventory, tmodule_inventory + WHERE tagent_module_inventory.id_agent_module_inventory = ? + AND tagent_module_inventory.id_module_inventory = tmodule_inventory.id_module_inventory', + $module_id); + + # No code to run + return if ($module->{'interpreter'} eq ''); + + # Save script in a temporary file + my ($fh, $temp_file) = tempfile(); + $fh->print (decode_base64($module->{'code'})); + close ($fh); + set_file_permissions($pa_config, $temp_file, "0777"); + + # Run the script + my $command = $module->{'interpreter'} . ' ' . $temp_file . ' "' . $module->{'target'} . '"'; + + # Try to read the custom fields to use them as arguments into the command + if (defined($module->{'custom_fields'}) && $module->{'custom_fields'} ne '') { + my $decoded_cfields; + + eval { + $decoded_cfields = decode_json (decode_base64 ($module->{'custom_fields'})); + }; + if ($@) { + logger($pa_config, "Failed to encode received inventory data", 10); + } + + if (!defined ($decoded_cfields)) { + logger ($pa_config, "Remote inventory module ".$module->{'name'}." has failed because the custom fields can't be read", 6); + unlink ($temp_file); + return; + } + + foreach my $field (@{$decoded_cfields}) { + if ($field->{'secure'}) { + $command .= ' "' . pandora_output_password($pa_config, $field->{'value'}) . '"'; + } + else { + $command .= ' "' . $field->{'value'} . '"'; + } + } + } + # Add the default user/password arguments to the command + else { + # Initialize macros. + my %macros = ( + '_agentcustomfield_\d+_' => undef, + ); + + my $wmi_user = safe_output(subst_column_macros($module->{"username"}, \%macros, $pa_config, $dbh, undef, $module)); + my $wmi_pass = safe_output(pandora_output_password($pa_config, subst_column_macros($module->{"password"}, \%macros, $pa_config, $dbh, undef, $module))); + $command .= ' "' . $wmi_user . '" "' . $wmi_pass . '"'; + } + + logger ($pa_config, "Inventory execution command $command", 10); + my $data = `$command 2>$DEVNULL`; + + # Check for errors + if ($? != 0) { + logger ($pa_config, "Remote inventory module ".$module->{'name'}." has failed with error level $?", 6); + unlink ($temp_file); + return; + } + + unlink ($temp_file); + my $utimestamp = time (); + my $timestamp = strftime ("%Y-%m-%d %H:%M:%S", localtime ($utimestamp)); + eval { + $data = encode_entities ($data, "'<>&"); + }; + if ($@) { + logger($pa_config, "Failed to encode received inventory data", 10); + return; + } + + # Get previous data from the database + my $inventory_module = get_db_single_row ($dbh, + 'SELECT * FROM tagent_module_inventory + WHERE id_agent_module_inventory = ?', + $module_id); + return unless defined ($inventory_module); + + process_inventory_module_diff($pa_config, $data, + $inventory_module, $timestamp, $utimestamp, $dbh); +} + +1; +__END__ From 72e2b623b990d7c7f29d2fb0cf8f63049e88bde2 Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 16 Sep 2022 11:45:03 +0200 Subject: [PATCH 12/72] Move inventory to open --- pandora_console/godmode/agentes/inventory_manager.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/agentes/inventory_manager.php b/pandora_console/godmode/agentes/inventory_manager.php index b477d7e923..09336ec88b 100644 --- a/pandora_console/godmode/agentes/inventory_manager.php +++ b/pandora_console/godmode/agentes/inventory_manager.php @@ -27,7 +27,7 @@ if (! check_acl($config['id_user'], 0, 'AW')) { global $direccion_agente, $id_agente, $id_os; // include_once ($config['homedir'].'/'.ENTERPRISE_DIR.'/include/functions_policies.php'); -enterprise_include_once('include/functions_ui.php'); +require_once $config['homedir'].'/include/functions_ui.php'; // Initialize data $add_inventory_module = (boolean) get_parameter('add_inventory_module'); From 3351b6b9bd562654287cfc8663ac1209dcd71d5d Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 7 Dec 2022 15:54:40 +0100 Subject: [PATCH 13/72] #9783 Fixed networkmap --- .../include/functions_networkmap.php | 335 +++--------------- 1 file changed, 49 insertions(+), 286 deletions(-) diff --git a/pandora_console/include/functions_networkmap.php b/pandora_console/include/functions_networkmap.php index 54005a571a..e1a18e03f8 100644 --- a/pandora_console/include/functions_networkmap.php +++ b/pandora_console/include/functions_networkmap.php @@ -4159,6 +4159,53 @@ function networkmap_get_new_nodes_and_links($networkmap, $x, $y) if ((int) $networkmap['source'] === SOURCE_TASK) { $agents = get_discovery_agents($id_recon, true); + + $relations_discovery = modules_get_relations(['id_rt' => $id_recon, 'distinct' => true]); + $relations_maps = db_get_all_rows_sql( + sprintf( + 'SELECT * FROM trel_item WHERE id_map = %s AND parent_type = 1 AND child_type = 1', + $id_networkmap + ) + ); + + $id_recon = $id_networkmap; + + foreach ($relations_discovery as $key => $discovery) { + foreach ($relations_maps as $key2 => $map) { + if ($map['id_parent_source_data'] == $discovery['module_a'] + && $map['id_child_source_data'] == $discovery['module_b'] + ) { + hd('entra y borra', true); + unset($relations_discovery[$key]); + unset($relations_maps[$key2]); + continue 2; + } else if ($map['id_parent_source_data'] == $discovery['module_b'] + && $map['id_child_source_data'] == $discovery['module_a'] + ) { + hd('entra y borra 2', true); + unset($relations_discovery[$key]); + unset($relations_maps[$key2]); + continue 2; + } + } + } + + foreach ($relations_discovery as $key => $value) { + // db_process_sql_insert( + // 'trel_item', + // [ + // 'id_map' => $id_networkmap, + // 'id_parent' => $parent_node, + // 'id_child' => $child_node, + // 'id_parent_source_data' => $parent, + // 'id_child_source_data' => $node['source_data'], + // 'parent_type' => 0, + // 'child_type' => 0, + // ] + // ); + } + + hd($relations_discovery, true); } else if ((int) $networkmap['source'] === SOURCE_NETWORK) { // Network map, based on direct network. $agents = networkmap_get_nodes_from_ip_mask( @@ -4267,6 +4314,8 @@ function networkmap_get_new_nodes_and_links($networkmap, $x, $y) GROUP BY source_data'; $nodes = db_get_all_rows_sql($sql); + hd($nodes, true); + foreach ($nodes as $node) { // First the relation parents without l2 interfaces. $parent = db_get_value_filter( @@ -4372,280 +4421,6 @@ function networkmap_get_new_nodes_and_links($networkmap, $x, $y) } } - // foreach ($interfaces as $interface) { - // $relations = modules_get_relations( - // ['id_module' => $interface['id_agente_modulo']] - // ); - // if (empty($relations) === true) { - // $relations = []; - // } - // foreach ($relations as $relation) { - // Get the links althought they are deleted (for to - // avoid to add) - // Check if the module is ping. - // if (modules_get_agentmodule_type($relation['module_a']) === '6') { - // The pings modules are not exist as interface - // the link is with the agent. - // $node_a = db_get_value_filter( - // 'id', - // 'titem', - // [ - // 'source_data' => modules_get_agentmodule_agent( - // $relation['module_a'] - // ), - // 'id_map' => $id_networkmap, - // ] - // ); - // } else { - // $node_a = db_get_value_filter( - // 'id', - // 'titem', - // [ - // 'source_data' => $relation['module_a'], - // 'type' => 1, - // 'id_map' => $id_networkmap, - // ] - // ); - // } - // Check if the module is ping. - // if (modules_get_agentmodule_type($relation['module_b']) == 6) { - // The pings modules are not exist as interface - // the link is with the agent. - // $node_b = db_get_value_filter( - // 'id', - // 'titem', - // [ - // 'source_data' => modules_get_agentmodule_agent( - // $relation['module_b'] - // ), - // 'id_map' => $id_networkmap, - // ] - // ); - // } else { - // $node_b = db_get_value_filter( - // 'id', - // 'titem', - // [ - // 'source_data' => $relation['module_b'], - // 'type' => 1, - // 'id_map' => $id_networkmap, - // ] - // ); - // } - // $exist = db_get_row_filter( - // 'trel_item', - // [ - // 'id_map' => $id_networkmap, - // 'id_parent_source_data' => $relation['module_a'], - // 'id_child_source_data' => $relation['module_b'], - // 'deleted' => 0, - // ] - // ); - // $exist_reverse = db_get_row_filter( - // 'trel_item', - // [ - // 'id_map' => $id_networkmap, - // 'id_parent_source_data' => $relation['module_b'], - // 'id_child_source_data' => $relation['module_a'], - // 'deleted' => 0, - // ] - // ); - // if (empty($exist) && empty($exist_reverse)) { - // Create the nodes for interfaces - // Ag1 ----- I1 ------ I2 ----- Ag2 - // * 2 interfaces nodes - // * 3 relations - // * I1 between I2 - // * Ag1 between I1 - // * Ag2 between I2 - // - // But check if it exists the relations - // agent between interface. - // if ($interface['id_agente_modulo'] == $relation['module_a']) { - // $agent_a = $interface['id_agente']; - // $agent_b = modules_get_agentmodule_agent( - // $relation['module_b'] - // ); - // } else { - // $agent_a = modules_get_agentmodule_agent( - // $relation['module_a'] - // ); - // $agent_b = $interface['id_agente']; - // } - // $item_a = db_get_value( - // 'id', - // 'titem', - // 'source_data', - // $agent_a - // ); - // $item_b = db_get_value( - // 'id', - // 'titem', - // 'source_data', - // $agent_b - // ); - // hd('----------------------', true); - // hd($agent_a, true); - // hd($agent_b, true); - // foreach ($interfaces as $interface) { - // $relations = modules_get_relations( - // ['id_module' => $interface['id_agente_modulo']] - // ); - // if (empty($relations) === true) { - // $relations = []; - // } - // foreach ($relations as $relation) {hd($item_a. '<->'. $item_b, true); - // hd('----------------------', true); - // continue; - // $exist_node_interface1 = db_get_row_filter( - // 'titem', - // [ - // 'id_map' => $id_networkmap, - // 'type' => 0, - // 'source_data' => $relation['module_a'], - // ] - // ); - // if (empty($exist_node_interface1) === true) { - // Crete the interface node - // and create the relation between agent and - // interface. - // $style = []; - // $style['id_agent'] = $agent_a; - // $style['shape'] = 'circle'; - // $style['image'] = 'images/mod_snmp_proc.png'; - // $style['width'] = 50; - // $style['height'] = 16; - // $style['label'] = modules_get_agentmodule_name($relation['module_a']); - // $id_int1 = db_process_sql_insert( - // 'titem', - // [ - // 'id_map' => $id_networkmap, - // 'x' => 666, - // 'y' => 666, - // 'z' => 0, - // 'deleted' => 0, - // 'type' => 1, - // 'refresh' => 0, - // 'source' => 0, - // 'source_data' => $relation['module_a'], - // 'style' => json_encode($style), - // ] - // ); - // $node_interface1 = db_get_row_filter( - // 'titem', - // [ - // 'id_map' => $id_networkmap, - // 'type' => 1, - // 'id' => $id_int1, - // ] - // ); - // $node_agent1 = db_get_value( - // 'id', - // 'titem', - // 'source_data', - // $agent_a - // ); - // db_process_sql_insert( - // 'trel_item', - // [ - // 'id_map' => $id_networkmap, - // 'id_parent' => $node_agent1, - // 'id_child' => $node_interface1, - // 'id_parent-source_data' => $agent_a, - // 'id_child-source_data' => $relation['module_a'], - // 'parent_type' => 0, - // 'child_type' => 1, - // ] - // ); - // } else { - // $node_interface1 = $exist_node_interface1; - // } - // $exist_node_interface2 = db_get_row_filter( - // 'titem', - // [ - // 'id_map' => $id_networkmap, - // 'type' => 1, - // 'source_data' => $relation['module_b'], - // ] - // ); - // if (empty($exist_node_interface2) === true) { - // Crete the interface node - // and create the relation between agent and - // interface. - // $style = []; - // $style['id_agent'] = $agent_a; - // $style['shape'] = 'circle'; - // $style['image'] = 'images/mod_snmp_proc.png'; - // $style['width'] = 50; - // $style['height'] = 16; - // $style['label'] = modules_get_agentmodule_name($relation['module_b']); - // $id_int2 = db_process_sql_insert( - // 'titem', - // [ - // 'id_map' => $id_networkmap, - // 'x' => 666, - // 'y' => 666, - // 'z' => 0, - // 'deleted' => 0, - // 'type' => 1, - // 'refresh' => 0, - // 'source' => 0, - // 'source_data' => $relation['module_b'], - // 'style' => json_encode($style), - // ] - // ); - // $node_interface2 = db_get_row_filter( - // 'titem', - // [ - // 'id_map' => $id_networkmap, - // 'type' => 1, - // 'id' => $id_int1, - // ] - // ); - // $node_agent1 = db_get_value( - // 'id', - // 'titem', - // 'source_data', - // $agent_a - // ); - // db_process_sql_insert( - // 'trel_item', - // [ - // 'id_map' => $id_networkmap, - // 'id_parent' => $node_agent1, - // 'id_child' => $node_interface1, - // 'id_parent-source_data' => $agent_a, - // 'id_child-source_data' => $relation['module_b'], - // 'parent_type' => 0, - // 'child_type' => 1, - // ] - // ); - // } else { - // $node_interface2 = $exist_node_interface2; - // } - // if (empty($node_interface1) === false && empty($node_interface2) === false) { - // if (is_array($node_interface1) === true) { - // $node_interface1 = $node_interface1['id']; - // } - // if (is_array($node_interface2) === true) { - // $node_interface2 = $node_interface2['id']; - // } - // db_process_sql_insert( - // 'trel_item', - // [ - // 'id_map' => $id_networkmap, - // 'id_parent' => $node_interface2, - // 'id_child' => $node_interface1, - // 'id_parent_source_data' => $relation['module_b'], - // 'id_child_source_data' => $relation['module_a'], - // 'parent_type' => 1, - // 'child_type' => 1, - // ] - // ); - // } - // } - // } - // } $relations = modules_get_relations( [ 'id_agent' => $node['source_data'], @@ -4723,18 +4498,6 @@ function networkmap_get_new_nodes_and_links($networkmap, $x, $y) if (empty($interfaces) === true) { $interfaces = []; } - - // hd('interfaces', true); - // foreach ($interfaces as $interface) { - // $relations = modules_get_relations( - // ['id_module' => $interface['id_agente_modulo']] - // ); - // if (empty($relations) === true) { - // $relations = []; - // } - // foreach ($relations as $relation) { - // } - // } } } From 52e2ccba54d9e0c06a850ea06538af1c2e91aa81 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 14 Dec 2022 11:27:51 +0100 Subject: [PATCH 14/72] #9783 Fixed networkmap 2 --- .../include/functions_networkmap.php | 71 ++++++++++++++----- 1 file changed, 54 insertions(+), 17 deletions(-) diff --git a/pandora_console/include/functions_networkmap.php b/pandora_console/include/functions_networkmap.php index e1a18e03f8..06d5fdbf76 100644 --- a/pandora_console/include/functions_networkmap.php +++ b/pandora_console/include/functions_networkmap.php @@ -4175,14 +4175,12 @@ function networkmap_get_new_nodes_and_links($networkmap, $x, $y) if ($map['id_parent_source_data'] == $discovery['module_a'] && $map['id_child_source_data'] == $discovery['module_b'] ) { - hd('entra y borra', true); unset($relations_discovery[$key]); unset($relations_maps[$key2]); continue 2; } else if ($map['id_parent_source_data'] == $discovery['module_b'] && $map['id_child_source_data'] == $discovery['module_a'] ) { - hd('entra y borra 2', true); unset($relations_discovery[$key]); unset($relations_maps[$key2]); continue 2; @@ -4190,22 +4188,61 @@ function networkmap_get_new_nodes_and_links($networkmap, $x, $y) } } - foreach ($relations_discovery as $key => $value) { - // db_process_sql_insert( - // 'trel_item', - // [ - // 'id_map' => $id_networkmap, - // 'id_parent' => $parent_node, - // 'id_child' => $child_node, - // 'id_parent_source_data' => $parent, - // 'id_child_source_data' => $node['source_data'], - // 'parent_type' => 0, - // 'child_type' => 0, - // ] - // ); - } + // Relations Module <-> Module. + foreach ($relations_discovery as $key => $relation) { + $module_a = $relation['module_a']; + $agent_a = modules_get_agentmodule_agent($module_a); + $module_b = $relation['module_b']; + $agent_b = modules_get_agentmodule_agent($module_b); - hd($relations_discovery, true); + $exist = db_get_row_filter( + 'trel_item', + [ + 'id_map' => $id_networkmap, + 'id_parent_source_data' => $module_a, + 'id_child_source_data' => $module_b, + 'deleted' => 0, + ] + ); + $exist_reverse = db_get_row_filter( + 'trel_item', + [ + 'id_map' => $id_networkmap, + 'id_parent_source_data' => $module_b, + 'id_child_source_data' => $module_a, + 'deleted' => 0, + ] + ); + + if (empty($exist) === true && empty($exist_reverse) === true) { + $item_a = db_get_value( + 'id', + 'titem', + 'source_data', + $agent_a + ); + + $item_b = db_get_value( + 'id', + 'titem', + 'source_data', + $agent_b + ); + + db_process_sql_insert( + 'trel_item', + [ + 'id_map' => $id_networkmap, + 'id_parent' => $item_a, + 'id_child' => $item_b, + 'id_parent_source_data' => $module_a, + 'id_child_source_data' => $module_b, + 'parent_type' => 1, + 'child_type' => 1, + ] + ); + } + } } else if ((int) $networkmap['source'] === SOURCE_NETWORK) { // Network map, based on direct network. $agents = networkmap_get_nodes_from_ip_mask( From 1e6c2fcdf7fa4bf8c5384ffe98baefef931bf620 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Fri, 16 Dec 2022 10:43:07 +0100 Subject: [PATCH 15/72] #10023 Fixed duplex --- pandora_server/util/plugin/pandora_snmp_bandwidth.pl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pandora_server/util/plugin/pandora_snmp_bandwidth.pl b/pandora_server/util/plugin/pandora_snmp_bandwidth.pl index 9b28848b48..1111e8fadb 100755 --- a/pandora_server/util/plugin/pandora_snmp_bandwidth.pl +++ b/pandora_server/util/plugin/pandora_snmp_bandwidth.pl @@ -230,7 +230,12 @@ sub prepare_tree { my $duplex = snmp_get(\%duplex_call); if (ref($duplex) eq "HASH") { +<<<<<<< Updated upstream if (! exists($duplex->{'data'}) || $duplex->{'data'} eq '') { +======= + if ($duplex->{'data'} ne '2' && $duplex->{'data'} ne '3') { + # Unknown duplex. +>>>>>>> Stashed changes $duplex = 0; } else { $duplex = int $duplex->{'data'}; From 1d3d460ad54a0aec4fba70e32ba61b1a51694918 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Fri, 16 Dec 2022 10:48:03 +0100 Subject: [PATCH 16/72] #10023 Fixed duplex 2 --- pandora_server/util/plugin/pandora_snmp_bandwidth.pl | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pandora_server/util/plugin/pandora_snmp_bandwidth.pl b/pandora_server/util/plugin/pandora_snmp_bandwidth.pl index 1111e8fadb..fc02d83f7c 100755 --- a/pandora_server/util/plugin/pandora_snmp_bandwidth.pl +++ b/pandora_server/util/plugin/pandora_snmp_bandwidth.pl @@ -230,12 +230,8 @@ sub prepare_tree { my $duplex = snmp_get(\%duplex_call); if (ref($duplex) eq "HASH") { -<<<<<<< Updated upstream - if (! exists($duplex->{'data'}) || $duplex->{'data'} eq '') { -======= - if ($duplex->{'data'} ne '2' && $duplex->{'data'} ne '3') { + if (! exists($duplex->{'data'}) || ($duplex->{'data'} ne '2' && $duplex->{'data'} ne '3')) { # Unknown duplex. ->>>>>>> Stashed changes $duplex = 0; } else { $duplex = int $duplex->{'data'}; From c9cac037f1fb6ed28425e48d60ed3eb855d2f011 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 19 Dec 2022 09:01:02 +0100 Subject: [PATCH 17/72] #9783 Fixed networkmap 3 --- pandora_console/include/functions_modules.php | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_modules.php b/pandora_console/include/functions_modules.php index 443e482173..9ff9c3b9b3 100755 --- a/pandora_console/include/functions_modules.php +++ b/pandora_console/include/functions_modules.php @@ -3112,7 +3112,7 @@ function modules_get_relations($params=[]) } $distinct = ''; - if (empty($params)) { + if (empty($params) || isset($params['distinct'])) { $distinct = 'DISTINCT'; } @@ -3136,6 +3136,11 @@ function modules_get_relations($params=[]) ); } + $id_rt_filter = ''; + if (isset($params['id_rt'])) { + $id_rt_filter = sprintf('AND tmr.id_rt = %d', $params['id_rt']); + } + $sql = sprintf( 'SELECT %s tmr.id, tmr.module_a, tmr.module_b, tmr.disable_update, tmr.type @@ -3153,7 +3158,8 @@ function modules_get_relations($params=[]) $module_type, $agent_filter, $disabled_update_filter, - $modules_type_filter + $modules_type_filter, + $id_rt_filter ); return db_get_all_rows_sql($sql); From b46f9c9319f7a72263d413f548b04433cd8e937b Mon Sep 17 00:00:00 2001 From: Calvo Date: Thu, 22 Dec 2022 12:47:03 +0100 Subject: [PATCH 18/72] Move inventory to open --- pandora_agents/pc/FreeBSD/pandora_agent.conf | 2 +- pandora_agents/pc/Linux/pandora_agent.conf | 2 +- pandora_agents/shellscript/linux/pandora_agent.conf | 2 +- pandora_agents/shellscript/mac_osx/pandora_agent.conf | 2 +- pandora_agents/unix/FreeBSD/pandora_agent.conf | 2 +- pandora_agents/unix/Linux/pandora_agent.conf | 2 +- pandora_agents/unix/NetBSD/pandora_agent.conf | 2 +- pandora_console/extras/delete_files/delete_files.txt | 7 +++++++ pandora_console/godmode/agentes/inventory_manager.php | 1 + .../godmode/modules/manage_inventory_modules.php | 8 +++++++- .../godmode/modules/manage_inventory_modules_form.php | 1 - pandora_server/FreeBSD/pandora_server.conf.new | 4 ++-- pandora_server/NetBSD/pandora_server.conf.new | 4 ++-- pandora_server/conf/pandora_server.conf.new | 4 ++-- pandora_server/conf/pandora_server.conf.windows | 4 ++-- 15 files changed, 30 insertions(+), 17 deletions(-) diff --git a/pandora_agents/pc/FreeBSD/pandora_agent.conf b/pandora_agents/pc/FreeBSD/pandora_agent.conf index 9e90282e7d..5c4b8d90d8 100644 --- a/pandora_agents/pc/FreeBSD/pandora_agent.conf +++ b/pandora_agents/pc/FreeBSD/pandora_agent.conf @@ -207,6 +207,6 @@ module_end module_plugin grep_log /var/log/auth.log Syslog sshd -# Plugin for inventory on the agent (Only Enterprise) +# Plugin for invenotry on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software diff --git a/pandora_agents/pc/Linux/pandora_agent.conf b/pandora_agents/pc/Linux/pandora_agent.conf index 94491a8855..c4ae8e3a37 100644 --- a/pandora_agents/pc/Linux/pandora_agent.conf +++ b/pandora_agents/pc/Linux/pandora_agent.conf @@ -269,7 +269,7 @@ module_plugin grep_log /var/log/syslog Syslog ssh #module_description Used memory in KB postprocessed to be in MB #module_end -# Plugin for inventory on the agent (Only Enterprise) +# Plugin for invenotry on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software init_services filesystem users process ip route diff --git a/pandora_agents/shellscript/linux/pandora_agent.conf b/pandora_agents/shellscript/linux/pandora_agent.conf index bc7dc2b2c0..fc91b88018 100644 --- a/pandora_agents/shellscript/linux/pandora_agent.conf +++ b/pandora_agents/shellscript/linux/pandora_agent.conf @@ -164,5 +164,5 @@ module_end module_plugin grep_log /var/log/syslog Syslog ssh -# Plugin for inventory on the agent (Only Enterprise) +# Plugin for invenotry on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software diff --git a/pandora_agents/shellscript/mac_osx/pandora_agent.conf b/pandora_agents/shellscript/mac_osx/pandora_agent.conf index 7bf2d86d38..0794549fa4 100644 --- a/pandora_agents/shellscript/mac_osx/pandora_agent.conf +++ b/pandora_agents/shellscript/mac_osx/pandora_agent.conf @@ -379,6 +379,6 @@ module_end #module_plugin grep_log /var/log/syslog Syslog ssh -# Plugin for inventory on the agent (Only Enterprise) +# Plugin for invenotry on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software diff --git a/pandora_agents/unix/FreeBSD/pandora_agent.conf b/pandora_agents/unix/FreeBSD/pandora_agent.conf index 587157ebc7..21ab70feaf 100644 --- a/pandora_agents/unix/FreeBSD/pandora_agent.conf +++ b/pandora_agents/unix/FreeBSD/pandora_agent.conf @@ -272,7 +272,7 @@ module_plugin pandora_df_free module_plugin grep_log /var/log/auth.log Syslog sshd -# Plugin for inventory on the agent (Only Enterprise) +# Plugin for invenotry on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software init_services filesystem users route # Log collection modules. Only for enterprise version, this will collect log files for forensic analysis. diff --git a/pandora_agents/unix/Linux/pandora_agent.conf b/pandora_agents/unix/Linux/pandora_agent.conf index 48dcd5eae0..cd3e430712 100644 --- a/pandora_agents/unix/Linux/pandora_agent.conf +++ b/pandora_agents/unix/Linux/pandora_agent.conf @@ -269,7 +269,7 @@ module_plugin pandora_netusage # Service autodiscovery plugin module_plugin autodiscover --default -# Plugin for inventory on the agent (Only Enterprise) +# Plugin for invenotry on the agent. #module_plugin inventory 1 cpu ram video nic hd cdrom software init_services filesystem users route # Log collection modules. Only for enterprise version, this will collect log files for forensic analysis. diff --git a/pandora_agents/unix/NetBSD/pandora_agent.conf b/pandora_agents/unix/NetBSD/pandora_agent.conf index 7947d9d2e3..d3cf44f62a 100644 --- a/pandora_agents/unix/NetBSD/pandora_agent.conf +++ b/pandora_agents/unix/NetBSD/pandora_agent.conf @@ -232,6 +232,6 @@ module_end module_plugin grep_log /var/log/auth.log Syslog sshd -# Plugin for inventory on the agent (Only Enterprise) +# Plugin for invenotry on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software diff --git a/pandora_console/extras/delete_files/delete_files.txt b/pandora_console/extras/delete_files/delete_files.txt index 9f37940896..b129e30635 100644 --- a/pandora_console/extras/delete_files/delete_files.txt +++ b/pandora_console/extras/delete_files/delete_files.txt @@ -1685,3 +1685,10 @@ enterprise/operation/agentes/manage_transmap.php enterprise/operation/agentes/manage_transmap_creation.php enterprise/operation/agentes/manage_transmap_creation_phases_data.php enterprise/operation/agentes/transactional_map.php +enterprise/godmode/agentes/inventory_manager.php +enterprise/operation/agentes/agent_inventory.php +enterprise/godmode/modules/manage_inventory_modules.php +enterprise/godmode/modules/manage_inventory_modules_form.php +enterprise/operation/inventory/inventory.php + + diff --git a/pandora_console/godmode/agentes/inventory_manager.php b/pandora_console/godmode/agentes/inventory_manager.php index 09336ec88b..b8d8014545 100644 --- a/pandora_console/godmode/agentes/inventory_manager.php +++ b/pandora_console/godmode/agentes/inventory_manager.php @@ -211,6 +211,7 @@ $result = db_process_sql($sql); if (db_get_num_rows($sql) == 0) { echo ' '; } else { + $table = new stdClass(); $table->width = '100%'; $table->class = 'databox filters'; $table->data = []; diff --git a/pandora_console/godmode/modules/manage_inventory_modules.php b/pandora_console/godmode/modules/manage_inventory_modules.php index 0eb4807beb..cc358ccc67 100644 --- a/pandora_console/godmode/modules/manage_inventory_modules.php +++ b/pandora_console/godmode/modules/manage_inventory_modules.php @@ -87,10 +87,12 @@ if ($id_os == 0) { } $interpreter = (string) get_parameter('interpreter'); +$script_mode = (string) get_parameter('script_mode'); $code = (string) get_parameter('code'); $code = base64_encode(str_replace("\r", '', html_entity_decode($code, ENT_QUOTES))); $format = (string) get_parameter('format'); $block_mode = (int) get_parameter('block_mode', 0); +$script_path = (string) get_parameter('script_path'); // Create inventory module. if ($create_module_inventory === true) { @@ -102,6 +104,8 @@ if ($create_module_inventory === true) { 'code' => $code, 'data_format' => $format, 'block_mode' => $block_mode, + 'script_mode' => $script_mode, + 'script_path' => $script_path, ]; $result = (bool) inventory_create_inventory_module($values); @@ -128,6 +132,8 @@ if ($create_module_inventory === true) { 'code' => $code, 'data_format' => $format, 'block_mode' => $block_mode, + 'script_mode' => $script_mode, + 'script_path' => $script_path, ]; $result = inventory_update_inventory_module($id_module_inventory, $values); @@ -289,7 +295,7 @@ if ($result === false) { $data = []; $begin = false; if ($management_allowed === true) { - $data[0] = ''.$row['name'].''; + $data[0] = ''.$row['name'].''; } else { $data[0] = ''.$row['name'].''; } diff --git a/pandora_console/godmode/modules/manage_inventory_modules_form.php b/pandora_console/godmode/modules/manage_inventory_modules_form.php index 8e151ce0b5..a955979672 100644 --- a/pandora_console/godmode/modules/manage_inventory_modules_form.php +++ b/pandora_console/godmode/modules/manage_inventory_modules_form.php @@ -153,7 +153,6 @@ $table->data[7][0] .= ui_print_help_tip(__("Here is placed the script for the RE $table->data[7][1] = html_print_textarea('code', 25, 80, base64_decode($code), '', true); - echo '
'; diff --git a/pandora_server/FreeBSD/pandora_server.conf.new b/pandora_server/FreeBSD/pandora_server.conf.new index bbd58b5cff..8127795339 100644 --- a/pandora_server/FreeBSD/pandora_server.conf.new +++ b/pandora_server/FreeBSD/pandora_server.conf.new @@ -387,11 +387,11 @@ web_threads 1 # Uncomment to perform web checks with LWP instead of CURL. #web_engine lwp -# Enable (1) or disable (0) Pandora FMS Inventory Server (PANDORA FMS ENTERPRISE ONLY). +# Enable (1) or disable (0) Pandora FMS Inventory Server. inventoryserver 1 -# Number of threads for the Web Server (PANDORA FMS ENTERPRISE ONLY). +# Number of threads for the Inventory Server. inventory_threads 1 diff --git a/pandora_server/NetBSD/pandora_server.conf.new b/pandora_server/NetBSD/pandora_server.conf.new index f5c2e79275..1a7fae6877 100644 --- a/pandora_server/NetBSD/pandora_server.conf.new +++ b/pandora_server/NetBSD/pandora_server.conf.new @@ -379,11 +379,11 @@ web_threads 1 # Uncomment to perform web checks with LWP instead of CURL. #web_engine lwp -# Enable (1) or disable (0) Pandora FMS Inventory Server (PANDORA FMS ENTERPRISE ONLY). +# Enable (1) or disable (0) Pandora FMS Inventory Server. inventoryserver 1 -# Number of threads for the Web Server (PANDORA FMS ENTERPRISE ONLY). +# Number of threads for the Inventory Server. inventory_threads 1 diff --git a/pandora_server/conf/pandora_server.conf.new b/pandora_server/conf/pandora_server.conf.new index 8332becd62..0c74e476dc 100644 --- a/pandora_server/conf/pandora_server.conf.new +++ b/pandora_server/conf/pandora_server.conf.new @@ -466,11 +466,11 @@ web_timeout 60 # Uncomment to perform web checks with LWP instead of CURL. #web_engine lwp -# Enable (1) or disable (0) Pandora FMS Inventory Server (PANDORA FMS ENTERPRISE ONLY). +# Enable (1) or disable (0) Pandora FMS Inventory Server. inventoryserver 1 -# Number of threads for the Web Server (PANDORA FMS ENTERPRISE ONLY). +# Number of threads for the Inventory Server. inventory_threads 1 diff --git a/pandora_server/conf/pandora_server.conf.windows b/pandora_server/conf/pandora_server.conf.windows index efed94ed52..0a2fcdb978 100644 --- a/pandora_server/conf/pandora_server.conf.windows +++ b/pandora_server/conf/pandora_server.conf.windows @@ -384,11 +384,11 @@ web_threads 1 # Uncomment to perform web checks with LWP instead of CURL. #web_engine lwp -# Enable (1) or disable (0) Pandora FMS Inventory Server (PANDORA FMS ENTERPRISE ONLY). +# Enable (1) or disable (0) Pandora FMS Inventory Server. inventoryserver 1 -# Number of threads for the Web Server (PANDORA FMS ENTERPRISE ONLY). +# Number of threads for the Inventory Server. inventory_threads 1 From 4b8902b605d7cd34a6c89a7e0801898b02efb149 Mon Sep 17 00:00:00 2001 From: Calvo Date: Thu, 22 Dec 2022 17:12:16 +0100 Subject: [PATCH 19/72] Fix agents conf typo --- pandora_agents/pc/FreeBSD/pandora_agent.conf | 2 +- pandora_agents/pc/Linux/pandora_agent.conf | 2 +- pandora_agents/shellscript/linux/pandora_agent.conf | 2 +- pandora_agents/shellscript/mac_osx/pandora_agent.conf | 2 +- pandora_agents/unix/FreeBSD/pandora_agent.conf | 2 +- pandora_agents/unix/Linux/pandora_agent.conf | 2 +- pandora_agents/unix/NetBSD/pandora_agent.conf | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pandora_agents/pc/FreeBSD/pandora_agent.conf b/pandora_agents/pc/FreeBSD/pandora_agent.conf index 5c4b8d90d8..486163d697 100644 --- a/pandora_agents/pc/FreeBSD/pandora_agent.conf +++ b/pandora_agents/pc/FreeBSD/pandora_agent.conf @@ -207,6 +207,6 @@ module_end module_plugin grep_log /var/log/auth.log Syslog sshd -# Plugin for invenotry on the agent. +# Plugin for inventory on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software diff --git a/pandora_agents/pc/Linux/pandora_agent.conf b/pandora_agents/pc/Linux/pandora_agent.conf index c4ae8e3a37..ad2d9ff756 100644 --- a/pandora_agents/pc/Linux/pandora_agent.conf +++ b/pandora_agents/pc/Linux/pandora_agent.conf @@ -269,7 +269,7 @@ module_plugin grep_log /var/log/syslog Syslog ssh #module_description Used memory in KB postprocessed to be in MB #module_end -# Plugin for invenotry on the agent. +# Plugin for inventory on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software init_services filesystem users process ip route diff --git a/pandora_agents/shellscript/linux/pandora_agent.conf b/pandora_agents/shellscript/linux/pandora_agent.conf index fc91b88018..5fab196ef4 100644 --- a/pandora_agents/shellscript/linux/pandora_agent.conf +++ b/pandora_agents/shellscript/linux/pandora_agent.conf @@ -164,5 +164,5 @@ module_end module_plugin grep_log /var/log/syslog Syslog ssh -# Plugin for invenotry on the agent. +# Plugin for inventory on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software diff --git a/pandora_agents/shellscript/mac_osx/pandora_agent.conf b/pandora_agents/shellscript/mac_osx/pandora_agent.conf index 0794549fa4..c3c55b7967 100644 --- a/pandora_agents/shellscript/mac_osx/pandora_agent.conf +++ b/pandora_agents/shellscript/mac_osx/pandora_agent.conf @@ -379,6 +379,6 @@ module_end #module_plugin grep_log /var/log/syslog Syslog ssh -# Plugin for invenotry on the agent. +# Plugin for inventory on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software diff --git a/pandora_agents/unix/FreeBSD/pandora_agent.conf b/pandora_agents/unix/FreeBSD/pandora_agent.conf index 21ab70feaf..594a7a377c 100644 --- a/pandora_agents/unix/FreeBSD/pandora_agent.conf +++ b/pandora_agents/unix/FreeBSD/pandora_agent.conf @@ -272,7 +272,7 @@ module_plugin pandora_df_free module_plugin grep_log /var/log/auth.log Syslog sshd -# Plugin for invenotry on the agent. +# Plugin for inventory on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software init_services filesystem users route # Log collection modules. Only for enterprise version, this will collect log files for forensic analysis. diff --git a/pandora_agents/unix/Linux/pandora_agent.conf b/pandora_agents/unix/Linux/pandora_agent.conf index cd3e430712..5916bba912 100644 --- a/pandora_agents/unix/Linux/pandora_agent.conf +++ b/pandora_agents/unix/Linux/pandora_agent.conf @@ -269,7 +269,7 @@ module_plugin pandora_netusage # Service autodiscovery plugin module_plugin autodiscover --default -# Plugin for invenotry on the agent. +# Plugin for inventory on the agent. #module_plugin inventory 1 cpu ram video nic hd cdrom software init_services filesystem users route # Log collection modules. Only for enterprise version, this will collect log files for forensic analysis. diff --git a/pandora_agents/unix/NetBSD/pandora_agent.conf b/pandora_agents/unix/NetBSD/pandora_agent.conf index d3cf44f62a..a5d99933a9 100644 --- a/pandora_agents/unix/NetBSD/pandora_agent.conf +++ b/pandora_agents/unix/NetBSD/pandora_agent.conf @@ -232,6 +232,6 @@ module_end module_plugin grep_log /var/log/auth.log Syslog sshd -# Plugin for invenotry on the agent. +# Plugin for inventory on the agent. # module_plugin inventory 1 cpu ram video nic hd cdrom software From fd59061800702c512c6df32a80714413b20ecb72 Mon Sep 17 00:00:00 2001 From: Calvo Date: Thu, 22 Dec 2022 17:43:49 +0100 Subject: [PATCH 20/72] Fix wrong link to inventory modules form --- pandora_console/godmode/modules/manage_inventory_modules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/modules/manage_inventory_modules.php b/pandora_console/godmode/modules/manage_inventory_modules.php index cc358ccc67..9116c022ca 100644 --- a/pandora_console/godmode/modules/manage_inventory_modules.php +++ b/pandora_console/godmode/modules/manage_inventory_modules.php @@ -295,7 +295,7 @@ if ($result === false) { $data = []; $begin = false; if ($management_allowed === true) { - $data[0] = ''.$row['name'].''; + $data[0] = ''.$row['name'].''; } else { $data[0] = ''.$row['name'].''; } From 8f53ec448f4729a0b96280a03210906ed8dc4fd1 Mon Sep 17 00:00:00 2001 From: Calvo Date: Thu, 22 Dec 2022 17:48:37 +0100 Subject: [PATCH 21/72] Fix button delete inventory modules --- pandora_console/godmode/modules/manage_inventory_modules.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/godmode/modules/manage_inventory_modules.php b/pandora_console/godmode/modules/manage_inventory_modules.php index 9116c022ca..e81fa05cd9 100644 --- a/pandora_console/godmode/modules/manage_inventory_modules.php +++ b/pandora_console/godmode/modules/manage_inventory_modules.php @@ -151,7 +151,7 @@ if ($create_module_inventory === true) { ); // Delete inventory module. -} else if ($delete_inventory_module === true) { +} else if ((bool) $delete_inventory_module === true) { $result = db_process_sql_delete( 'tmodule_inventory', ['id_module_inventory' => $delete_inventory_module] From 68141bf910e5a5700496c0fbca95e1241092c147 Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Fri, 23 Dec 2022 12:01:16 +0100 Subject: [PATCH 22/72] Rename *agent_unix* to *agent_linux*. --- extras/build_src.sh | 4 ++-- extras/deploy-scripts/pandora_agent_deploy.sh | 6 +++--- extras/deploy-scripts/pandora_deploy_community.sh | 6 +++--- extras/deploy-scripts/pandora_deploy_community_el8.sh | 6 +++--- .../pandora_deploy_community_ubuntu_2204.sh | 8 ++++---- extras/fedora_official_specs/pandorafms-agent.spec | 4 ++-- pandora_agents/pc/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/pc/OpenWRT/INSTALL | 4 ++-- pandora_agents/pc/pandora_agent.redhat.spec | 2 +- pandora_agents/pc/pandora_agent.spec | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 4 ++-- pandora_agents/unix/OpenWRT/INSTALL | 4 ++-- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- 14 files changed, 28 insertions(+), 28 deletions(-) diff --git a/extras/build_src.sh b/extras/build_src.sh index da5b75d20b..a9e3262afd 100755 --- a/extras/build_src.sh +++ b/extras/build_src.sh @@ -24,7 +24,7 @@ cd $CODEHOME && tar zcvf $RPMHOME/SOURCES/pandorafms_server-$LOCAL_VERSION.tar.g cd $CODEHOME/pandora_agents/shellscript && tar zcvf $RPMHOME/SOURCES/pandorafms_agent-$LOCAL_VERSION.tar.gz --exclude \.exe --exclude \.svn --exclude nohup linux || exit 1 # Unix agent -cd $CODEHOME/pandora_agents && tar zvcf $RPMHOME/SOURCES/pandorafms_agent_unix-$LOCAL_VERSION.tar.gz --exclude \.exe --exclude \.svn --exclude nohup --exclude NT4 --exclude Darwin/dmg unix || exit 1 +cd $CODEHOME/pandora_agents && tar zvcf $RPMHOME/SOURCES/pandorafms_agent_linux-$LOCAL_VERSION.tar.gz --exclude \.exe --exclude \.svn --exclude nohup --exclude NT4 --exclude Darwin/dmg unix || exit 1 # Enterprise console cd $PANDHOME_ENT/pandora_console && tar zcvf $RPMHOME/SOURCES/pandorafms_console_enterprise-$LOCAL_VERSION.tar.gz --exclude \.exe --exclude \.svn enterprise/* || exit 1 @@ -37,7 +37,7 @@ if [ "$1" == "nightly" ]; then ln -s $RPMHOME/SOURCES/pandorafms_console-$LOCAL_VERSION.tar.gz $RPMHOME/SOURCES/pandorafms_console-$VERSION.tar.gz || exit 1 ln -s $RPMHOME/SOURCES/pandorafms_server-$LOCAL_VERSION.tar.gz $RPMHOME/SOURCES/pandorafms_server-$VERSION.tar.gz || exit 1 ln -s $RPMHOME/SOURCES/pandorafms_agent-$LOCAL_VERSION.tar.gz $RPMHOME/SOURCES/pandorafms_agent-$VERSION.tar.gz || exit 1 - ln -s $RPMHOME/SOURCES/pandorafms_agent_unix-$LOCAL_VERSION.tar.gz $RPMHOME/SOURCES/pandorafms_agent_unix-$VERSION.tar.gz || exit 1 + ln -s $RPMHOME/SOURCES/pandorafms_agent_linux-$LOCAL_VERSION.tar.gz $RPMHOME/SOURCES/pandorafms_agent_linux-$VERSION.tar.gz || exit 1 ln -s $RPMHOME/SOURCES/pandorafms_console_enterprise-$LOCAL_VERSION.tar.gz $RPMHOME/SOURCES/pandorafms_console_enterprise-$VERSION.tar.gz || exit 1 ln -s $RPMHOME/SOURCES/pandorafms_server_enterprise-$LOCAL_VERSION.tar.gz $RPMHOME/SOURCES/pandorafms_server_enterprise-$VERSION.tar.gz || exit 1 fi diff --git a/extras/deploy-scripts/pandora_agent_deploy.sh b/extras/deploy-scripts/pandora_agent_deploy.sh index 281ad530a9..3f7ffcb7bf 100644 --- a/extras/deploy-scripts/pandora_agent_deploy.sh +++ b/extras/deploy-scripts/pandora_agent_deploy.sh @@ -142,7 +142,7 @@ if [[ $OS_RELEASE =~ 'rhel' ]] || [[ $OS_RELEASE =~ 'fedora' ]]; then echo -e "${cyan}Installing agent dependencies...${reset}" ${green}OK${reset} # Insatall pandora agent - $package_manager_cmd install -y http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_unix-7.0NG.noarch.rpm &>> $LOGFILE + $package_manager_cmd install -y http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_linux-7.0NG.noarch.rpm &>> $LOGFILE echo -en "${cyan}Installing Pandora FMS agent...${reset}" check_cmd_status 'Error installing Pandora FMS agent' @@ -151,8 +151,8 @@ fi if [[ $OS_RELEASE == 'debian' ]]; then execute_cmd "apt update" 'Updating repos' execute_cmd "apt install -y perl wget curl unzip procps python3 python3-pip" 'Installing agent dependencies' - execute_cmd 'wget http://firefly.artica.es/pandorafms/latest/Debian_Ubuntu/pandorafms.agent_unix_7.0NG.deb' 'Downloading Pandora FMS agent dependencies' - execute_cmd 'apt install -y ./pandorafms.agent_unix_7.0NG.deb' 'Installing Pandora FMS agent' + execute_cmd 'wget http://firefly.artica.es/pandorafms/latest/Debian_Ubuntu/pandorafms.agent_linux_7.0NG.deb' 'Downloading Pandora FMS agent dependencies' + execute_cmd 'apt install -y ./pandorafms.agent_linux_7.0NG.deb' 'Installing Pandora FMS agent' fi # Configuring Agente diff --git a/extras/deploy-scripts/pandora_deploy_community.sh b/extras/deploy-scripts/pandora_deploy_community.sh index fe4af3d924..9cc438dffc 100644 --- a/extras/deploy-scripts/pandora_deploy_community.sh +++ b/extras/deploy-scripts/pandora_deploy_community.sh @@ -409,17 +409,17 @@ execute_cmd "systemctl restart mysqld" "Configuring database engine" if [ "$PANDORA_BETA" -eq '0' ] ; then [ "$PANDORA_SERVER_PACKAGE" ] || PANDORA_SERVER_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_server-7.0NG.noarch.rpm" [ "$PANDORA_CONSOLE_PACKAGE" ] || PANDORA_CONSOLE_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_console-7.0NG.noarch.rpm" - [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_unix-7.0NG.noarch.rpm" + [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_linux-7.0NG.noarch.rpm" elif [ "$PANDORA_BETA" -ne '0' ] ; then [ "$PANDORA_SERVER_PACKAGE" ] || PANDORA_SERVER_PACKAGE="http://firefly.artica.es/pandora_enterprise_nightlies/pandorafms_server-latest.x86_64.rpm" [ "$PANDORA_CONSOLE_PACKAGE" ] || PANDORA_CONSOLE_PACKAGE="https://pandorafms.com/community/community-console-rpm-beta/" - [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_unix-7.0NG.noarch.rpm" + [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_linux-7.0NG.noarch.rpm" fi # Downloading Pandora Packages execute_cmd "curl -LSs --output pandorafms_server-7.0NG.noarch.rpm ${PANDORA_SERVER_PACKAGE}" "Downloading Pandora FMS Server community" execute_cmd "curl -LSs --output pandorafms_console-7.0NG.noarch.rpm ${PANDORA_CONSOLE_PACKAGE}" "Downloading Pandora FMS Console community" -execute_cmd "curl -LSs --output pandorafms_agent_unix-7.0NG.noarch.rpm ${PANDORA_AGENT_PACKAGE}" "Downloading Pandora FMS Agent community" +execute_cmd "curl -LSs --output pandorafms_agent_linux-7.0NG.noarch.rpm ${PANDORA_AGENT_PACKAGE}" "Downloading Pandora FMS Agent community" # Install Pandora execute_cmd "yum install -y $HOME/pandora_deploy_tmp/pandorafms*.rpm" "installing PandoraFMS packages" diff --git a/extras/deploy-scripts/pandora_deploy_community_el8.sh b/extras/deploy-scripts/pandora_deploy_community_el8.sh index fd4855f67b..3ee6eeff76 100644 --- a/extras/deploy-scripts/pandora_deploy_community_el8.sh +++ b/extras/deploy-scripts/pandora_deploy_community_el8.sh @@ -487,17 +487,17 @@ export MYSQL_PWD=$DBPASS if [ "$PANDORA_BETA" -eq '0' ] ; then [ "$PANDORA_SERVER_PACKAGE" ] || PANDORA_SERVER_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_server-7.0NG.noarch.rpm" [ "$PANDORA_CONSOLE_PACKAGE" ] || PANDORA_CONSOLE_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_console-7.0NG.noarch.rpm" - [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_unix-7.0NG.noarch.rpm" + [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_linux-7.0NG.noarch.rpm" elif [ "$PANDORA_BETA" -ne '0' ] ; then [ "$PANDORA_SERVER_PACKAGE" ] || PANDORA_SERVER_PACKAGE="http://firefly.artica.es/pandora_enterprise_nightlies/pandorafms_server-latest.x86_64.rpm" [ "$PANDORA_CONSOLE_PACKAGE" ] || PANDORA_CONSOLE_PACKAGE="https://pandorafms.com/community/community-console-rpm-beta/" - [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_unix-7.0NG.noarch.rpm" + [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/RHEL_CentOS/pandorafms_agent_linux-7.0NG.noarch.rpm" fi # Downloading Pandora Packages execute_cmd "curl -LSs --output pandorafms_server-7.0NG.noarch.rpm ${PANDORA_SERVER_PACKAGE}" "Downloading Pandora FMS Server community" execute_cmd "curl -LSs --output pandorafms_console-7.0NG.noarch.rpm ${PANDORA_CONSOLE_PACKAGE}" "Downloading Pandora FMS Console community" -execute_cmd "curl -LSs --output pandorafms_agent_unix-7.0NG.noarch.rpm ${PANDORA_AGENT_PACKAGE}" "Downloading Pandora FMS Agent community" +execute_cmd "curl -LSs --output pandorafms_agent_linux-7.0NG.noarch.rpm ${PANDORA_AGENT_PACKAGE}" "Downloading Pandora FMS Agent community" # Install Pandora execute_cmd "dnf install -y $HOME/pandora_deploy_tmp/pandorafms*.rpm" "Installing Pandora FMS packages" diff --git a/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh b/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh index feced2cbe7..e7f0b8cda1 100644 --- a/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh +++ b/extras/deploy-scripts/pandora_deploy_community_ubuntu_2204.sh @@ -415,11 +415,11 @@ execute_cmd "systemctl restart mysql" "Configuring and restarting database engin if [ "$PANDORA_BETA" -eq '0' ] ; then [ "$PANDORA_SERVER_PACKAGE" ] || PANDORA_SERVER_PACKAGE="http://firefly.artica.es/pandorafms/latest/Tarball/pandorafms_server-7.0NG.tar.gz" [ "$PANDORA_CONSOLE_PACKAGE" ] || PANDORA_CONSOLE_PACKAGE="http://firefly.artica.es/pandorafms/latest/Tarball/pandorafms_console-7.0NG.tar.gz" - [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/Tarball/pandorafms_agent_unix-7.0NG.tar.gz" + [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/Tarball/pandorafms_agent_linux-7.0NG.tar.gz" elif [ "$PANDORA_BETA" -ne '0' ] ; then [ "$PANDORA_SERVER_PACKAGE" ] || PANDORA_SERVER_PACKAGE="http://firefly.artica.es/pandora_enterprise_nightlies/pandorafms_server-latest_x86_64.tar.gz" [ "$PANDORA_CONSOLE_PACKAGE" ] || PANDORA_CONSOLE_PACKAGE="http://firefly.artica.es/pandora_enterprise_nightlies/pandorafms_console-latest.tar.gz" - [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/Tarball/pandorafms_agent_unix-7.0NG.tar.gz" + [ "$PANDORA_AGENT_PACKAGE" ] || PANDORA_AGENT_PACKAGE="http://firefly.artica.es/pandorafms/latest/Tarball/pandorafms_agent_linux-7.0NG.tar.gz" fi # Downloading Pandora Packages @@ -427,7 +427,7 @@ cd $WORKDIR &>> "$LOGFILE" curl -LSs --output pandorafms_console-7.0NG.tar.gz "${PANDORA_CONSOLE_PACKAGE}" &>> "$LOGFILE" curl -LSs --output pandorafms_server-7.0NG.tar.gz "${PANDORA_SERVER_PACKAGE}" &>> "$LOGFILE" -curl -LSs --output pandorafms_agent_unix-7.0NG.tar.gz "${PANDORA_AGENT_PACKAGE}" &>> "$LOGFILE" +curl -LSs --output pandorafms_agent_linux-7.0NG.tar.gz "${PANDORA_AGENT_PACKAGE}" &>> "$LOGFILE" # Install PandoraFMS Console echo -en "${cyan}Installing PandoraFMS Console...${reset}" @@ -444,7 +444,7 @@ check_cmd_status "Error installing PandoraFMS Server" #Install agent: execute_cmd "apt install -y libyaml-tiny-perl perl coreutils wget curl unzip procps python3 python3-pip" "Installing PandoraFMS Agent Dependencies" echo -en "${cyan}Installing PandoraFMS Agent...${reset}" - tar xvzf $WORKDIR/pandorafms_agent_unix-7.0NG.tar.gz &>> "$LOGFILE" && cd unix && ./pandora_agent_installer --install &>> $LOGFILE && cp -a tentacle_client /usr/local/bin/ &>> $LOGFILE && cd $WORKDIR + tar xvzf $WORKDIR/pandorafms_agent_linux-7.0NG.tar.gz &>> "$LOGFILE" && cd unix && ./pandora_agent_installer --install &>> $LOGFILE && cp -a tentacle_client /usr/local/bin/ &>> $LOGFILE && cd $WORKDIR check_cmd_status "Error installing PandoraFMS Agent" # Copy gotty utility diff --git a/extras/fedora_official_specs/pandorafms-agent.spec b/extras/fedora_official_specs/pandorafms-agent.spec index 8819a76cf4..2603777a1e 100644 --- a/extras/fedora_official_specs/pandorafms-agent.spec +++ b/extras/fedora_official_specs/pandorafms-agent.spec @@ -4,9 +4,9 @@ Release: 140223.sp3%{?dist} Summary: Host/service/network agent for Pandora FMS monitoring system License: GPLv2 Vendor: Artica -Source: http://code.pandorafms.com/static_download/pandorafms_agent_unix-5.0SP3.tar.gz +Source: http://code.pandorafms.com/static_download/pandorafms_agent_linux-5.0SP3.tar.gz #Source: %{name}-%{version}.tar.gz -#Source0: http://code.pandorafms.com/static_download/pandorafms_agent_unix-5.0SP3.tar.gz +#Source0: http://code.pandorafms.com/static_download/pandorafms_agent_linux-5.0SP3.tar.gz URL: http://pandorafms.com Group: Applications/System #Prefix: /usr/share diff --git a/pandora_agents/pc/DEBIAN/make_deb_package.sh b/pandora_agents/pc/DEBIAN/make_deb_package.sh index 483afe1b2e..1496975d21 100644 --- a/pandora_agents/pc/DEBIAN/make_deb_package.sh +++ b/pandora_agents/pc/DEBIAN/make_deb_package.sh @@ -114,7 +114,7 @@ echo "END" echo "Make the package \"Pandorafms console\"." dpkg-deb --build temp_package -mv temp_package.deb pandorafms.agent_unix_$pandora_version.deb +mv temp_package.deb pandorafms.agent_linux_$pandora_version.deb echo "Delete the \"temp_package\" temp dir for job." rm -rf temp_package diff --git a/pandora_agents/pc/OpenWRT/INSTALL b/pandora_agents/pc/OpenWRT/INSTALL index 6975acdfbb..cae96b27cf 100644 --- a/pandora_agents/pc/OpenWRT/INSTALL +++ b/pandora_agents/pc/OpenWRT/INSTALL @@ -31,14 +31,14 @@ Install procedure Step 1 - Get the latest package and copy to /tmp, you can get the latest package at: - http://sourceforge.net/projects/pandora/files/Pandora%20FMS%203.2/Stable%20release/Unix%20%28Tarball%29/pandorafms_agent_unix-3.2.tar.gz/download + http://sourceforge.net/projects/pandora/files/Pandora%20FMS%203.2/Stable%20release/Unix%20%28Tarball%29/pandorafms_agent_linux-3.2.tar.gz/download Note: You will get a special version of the launcher, you can get it from our SVN repository and replace the perl daemon launcher with this special version for OpenWRT. Just replace it after do the package install for the Unix/Perl generic agent. Step 2 - Install it cd /tmp - tar xvzf pandorafms_agent_unix-3.2.tar.gz + tar xvzf pandorafms_agent_linux-3.2.tar.gz cd unix ./pandora_agent --install diff --git a/pandora_agents/pc/pandora_agent.redhat.spec b/pandora_agents/pc/pandora_agent.redhat.spec index b09d423d36..ae481e3403 100644 --- a/pandora_agents/pc/pandora_agent.redhat.spec +++ b/pandora_agents/pc/pandora_agent.redhat.spec @@ -1,7 +1,7 @@ # #Pandora FMS Linux Agent # -%define name pandorafms_agent_unix +%define name pandorafms_agent_linux %define version 4.0 %define release 1 diff --git a/pandora_agents/pc/pandora_agent.spec b/pandora_agents/pc/pandora_agent.spec index 1378fa26c1..1bfc289d52 100644 --- a/pandora_agents/pc/pandora_agent.spec +++ b/pandora_agents/pc/pandora_agent.spec @@ -1,7 +1,7 @@ # #Pandora FMS Linux Agent # -%define name pandorafms_agent_unix +%define name pandorafms_agent_linux %define version 4.0.1 %define release 1 diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index f1167e132d..3bbd799dd0 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -61,7 +61,7 @@ chmod 755 -R temp_package/DEBIAN #cp -aRf * temp_package/usr/share/pandora_agent/ #but don't copy recursive the temp_package into temp_package -for item in `ls | grep -v NT4 | grep -v AIX | grep -v FreeBSD | grep -v NetBSD | grep -v HP-UX | grep -v SunOS | grep -v Darwin | grep -v OpenWRT | grep -v pandorafms.agent_unix | grep -v temp_package` +for item in `ls | grep -v NT4 | grep -v AIX | grep -v FreeBSD | grep -v NetBSD | grep -v HP-UX | grep -v SunOS | grep -v Darwin | grep -v OpenWRT | grep -v pandorafms.agent_linux | grep -v temp_package` do #if [ \( $item != 'temp_package' \) -a \( $item != 'NT4' \) ] #then @@ -137,7 +137,7 @@ if [ "$USE_DOCKER_APP" == "1" ]; then else dpkg-deb --root-owner-group --build temp_package fi -mv temp_package.deb pandorafms.agent_unix_$pandora_version.deb +mv temp_package.deb pandorafms.agent_linux_$pandora_version.deb echo "Delete the \"temp_package\" temp dir for job." rm -rf temp_package diff --git a/pandora_agents/unix/OpenWRT/INSTALL b/pandora_agents/unix/OpenWRT/INSTALL index 6975acdfbb..cae96b27cf 100644 --- a/pandora_agents/unix/OpenWRT/INSTALL +++ b/pandora_agents/unix/OpenWRT/INSTALL @@ -31,14 +31,14 @@ Install procedure Step 1 - Get the latest package and copy to /tmp, you can get the latest package at: - http://sourceforge.net/projects/pandora/files/Pandora%20FMS%203.2/Stable%20release/Unix%20%28Tarball%29/pandorafms_agent_unix-3.2.tar.gz/download + http://sourceforge.net/projects/pandora/files/Pandora%20FMS%203.2/Stable%20release/Unix%20%28Tarball%29/pandorafms_agent_linux-3.2.tar.gz/download Note: You will get a special version of the launcher, you can get it from our SVN repository and replace the perl daemon launcher with this special version for OpenWRT. Just replace it after do the package install for the Unix/Perl generic agent. Step 2 - Install it cd /tmp - tar xvzf pandorafms_agent_unix-3.2.tar.gz + tar xvzf pandorafms_agent_linux-3.2.tar.gz cd unix ./pandora_agent --install diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 45b24b8017..9b64b0cf22 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -1,7 +1,7 @@ # #Pandora FMS Linux Agent # -%define name pandorafms_agent_unix +%define name pandorafms_agent_linux %define version 7.0NG.767 %define release 221223 diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index df6046506c..147ba5e4c7 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -1,7 +1,7 @@ # #Pandora FMS Linux Agent # -%define name pandorafms_agent_unix +%define name pandorafms_agent_linux %define version 7.0NG.767 %define release 221223 From f8b3183ad36a9d46eb1819f5e4ac7b8f2f04ef7e Mon Sep 17 00:00:00 2001 From: Calvo Date: Tue, 27 Dec 2022 13:02:03 +0100 Subject: [PATCH 23/72] Moved inventory blacklist to open --- .../godmode/setup/setup_general.php | 81 +++++++++++++++++++ 1 file changed, 81 insertions(+) diff --git a/pandora_console/godmode/setup/setup_general.php b/pandora_console/godmode/setup/setup_general.php index 93a3d64a27..c5d611e59b 100644 --- a/pandora_console/godmode/setup/setup_general.php +++ b/pandora_console/godmode/setup/setup_general.php @@ -350,6 +350,87 @@ $table->data[$i++][1] = html_print_textarea( true ); +// Inventory changes blacklist. +$table->data[$i][0] = __('Inventory changes blacklist'); + +$inventory_changes_blacklist_id = get_parameter( + 'inventory_changes_blacklist', + $config['inventory_changes_blacklist'] +); + +if (!is_array($inventory_changes_blacklist_id)) { + $inventory_changes_blacklist_id = explode( + ',', + $inventory_changes_blacklist_id + ); +} + +$inventory_modules = db_get_all_rows_sql( + 'SELECT mi.id_module_inventory, mi.name module_inventory_name, os.name os_name + FROM tmodule_inventory mi, tconfig_os os + WHERE os.id_os = mi.id_os' +); + +$inventory_changes_blacklist = []; +$inventory_changes_blacklist_out = []; + +foreach ($inventory_modules as $inventory_module) { + if (in_array($inventory_module['id_module_inventory'], $inventory_changes_blacklist_id)) { + $inventory_changes_blacklist[$inventory_module['id_module_inventory']] = $inventory_module['module_inventory_name'].' ('.$inventory_module['os_name'].')'; + } else { + $inventory_changes_blacklist_out[$inventory_module['id_module_inventory']] = $inventory_module['module_inventory_name'].' ('.$inventory_module['os_name'].')'; + } +} + +$select_out = html_print_select( + $inventory_changes_blacklist_out, + 'inventory_changes_blacklist_out[]', + '', + '', + '', + '', + true, + true, + true, + '', + false, + 'width:200px' +); +$arrows = ' '; +$select_in = html_print_select( + $inventory_changes_blacklist, + 'inventory_changes_blacklist[]', + '', + '', + '', + '', + true, + true, + true, + '', + false, + 'width:200px' +); + +$table_ichanges = ' + + + + + + + + + + +
'.__('Out of black list').''.__('In black list').'
'.$select_out.' + '.html_print_image('images/darrowright.png', true, ['id' => 'right_iblacklist', 'alt' => __('Push selected modules into blacklist'), 'title' => __('Push selected modules into blacklist'), 'class' => 'invert_filter']).' +

+ '.html_print_image('images/darrowleft.png', true, ['id' => 'left_iblacklist', 'alt' => __('Pop selected modules out of blacklist'), 'title' => __('Pop selected modules out of blacklist'), 'class' => 'invert_filter']).' +
'.$select_in.'
'; + +$table->data[$i++][1] = $table_ichanges; + $table->data[$i][0] = __('Referer security'); $table->data[$i++][1] = html_print_checkbox_switch( 'referer_security', From 0e2829eca0294da4571496b4712f319308fe353a Mon Sep 17 00:00:00 2001 From: Calvo Date: Wed, 28 Dec 2022 18:28:03 +0100 Subject: [PATCH 24/72] Fix inventory blacklist js --- .../godmode/setup/setup_general.php | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/pandora_console/godmode/setup/setup_general.php b/pandora_console/godmode/setup/setup_general.php index 4d76d9f7d6..f0bbc77339 100644 --- a/pandora_console/godmode/setup/setup_general.php +++ b/pandora_console/godmode/setup/setup_general.php @@ -896,5 +896,58 @@ $(document).ready (function () { }) $('input#button-email_test').click(perform_email_test); + + $("#right_iblacklist").click (function () { + jQuery.each($("select[name='inventory_changes_blacklist_out[]'] option:selected"), function (key, value) { + imodule_name = $(value).html(); + if (imodule_name != ) { + id_imodule = $(value).attr('value'); + $("select[name='inventory_changes_blacklist[]']") + .append( + $("") + .val(id_imodule) + .html('' + imodule_name + '') + ); + $("#inventory_changes_blacklist_out") + .find("option[value='" + id_imodule + "']").remove(); + $("#inventory_changes_blacklist") + .find("option[value='']").remove(); + if($("#inventory_changes_blacklist_out option").length == 0) { + $("select[name='inventory_changes_blacklist_out[]']") + .append( + $("") + .val('') + .html('') + ); + } + } + }); + }); + $("#left_iblacklist").click (function () { + jQuery.each($("select[name='inventory_changes_blacklist[]'] option:selected"), function (key, value) { + imodule_name = $(value).html(); + if (imodule_name != ) { + id_imodule = $(value).attr('value'); + $("select[name='inventory_changes_blacklist_out[]']") + .append( + $("") + .val('') + .html('') + ); + } + } + }); + }); }); From c14842a4f9d4e88897ac89c8df32f29125e2ebbb Mon Sep 17 00:00:00 2001 From: Calvo Date: Thu, 29 Dec 2022 17:20:34 +0100 Subject: [PATCH 25/72] WIP:Api auth with bearer token --- pandora_console/extensions/api_checker.php | 52 ++++++++++++------- pandora_console/include/api.php | 15 +++++- pandora_console/include/functions.php | 47 ++++++++++++++++- pandora_console/include/functions_api.php | 34 ++++++------ pandora_console/include/functions_ui.php | 8 ++- pandora_console/include/styles/pandora.css | 15 ++++++ pandora_console/operation/users/user_edit.php | 23 +++++++- 7 files changed, 153 insertions(+), 41 deletions(-) diff --git a/pandora_console/extensions/api_checker.php b/pandora_console/extensions/api_checker.php index e301f5029f..895d621178 100755 --- a/pandora_console/extensions/api_checker.php +++ b/pandora_console/extensions/api_checker.php @@ -65,42 +65,58 @@ function api_execute( string $other_mode='', string $token='' ) { + $data = []; + if (empty($url) === true) { - $url = 'http://'.$ip.$pandora_url.'/include/api.php'; - $url .= '?'; - $url .= '&op='.$op; - $url .= '&op2='.$op2; + $url = 'http://'.$ip.$pandora_url.'/include/api.php?'; + + if (empty($op) === false) { + $data['op'] = $op; + } + + if (empty($op2) === false) { + $data['op2'] = $op2; + } if (empty($id) === false) { - $url .= '&id='.$id; + $data['id'] = $id; } if (empty($id2) === false) { - $url .= '&id2='.$id2; + $data['id2'] = $id2; } if (empty($return_type) === false) { - $url .= '&return_type='.$return_type; + $data['return_type'] = $return_type; } if (empty($other) === false) { - $url .= '&other_mode='.$other_mode; - $url .= '&other='.$other; + $data['other_mode'] = $other_mode; + $data['other'] = $other; } - // If token is reported, have priority. - if (empty($token) === false) { - $url .= 'token='.$token; - } else { - $url .= 'apipass='.$apipass; - $url .= '&user='.$user; - $url .= '&pass='.$password; + // If token is not reported,use old method. + if (empty($token) === true) { + $data['apipass'] = $apipass; + $data['user'] = $user; + $data['password'] = $password; } } - $curlObj = curl_init(); + $curlObj = curl_init($url); + if (empty($data) === false) { + $url .= http_build_query($data); + } + + // set the content type json + $headers = [ + 'Content-Type: application/json', + 'Authorization: Bearer '.$token, + ]; + curl_setopt($curlObj, CURLOPT_URL, $url); - curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, 1); + curl_setopt($curlObj, CURLOPT_HTTPHEADER, $headers); + curl_setopt($curlObj, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($curlObj); curl_close($curlObj); diff --git a/pandora_console/include/api.php b/pandora_console/include/api.php index c9672816a8..aefb33aed8 100644 --- a/pandora_console/include/api.php +++ b/pandora_console/include/api.php @@ -74,7 +74,6 @@ $password = get_parameter('pass', ''); $user = get_parameter('user', ''); $info = get_parameter('info', ''); $raw_decode = (bool) get_parameter('raw_decode', false); -$apiToken = (string) get_parameter('token'); $other = parseOtherParameter($otherSerialize, $otherMode, $raw_decode); $apiPassword = io_output_password( @@ -85,7 +84,19 @@ $apiPassword = io_output_password( ) ); -$apiTokenValid = (isset($_GET['token']) === true && (bool) api_token_check($apiToken)); +// Try getting bearer token from header. +// TODO. Getting token from url will be removed. +$apiToken = (string) getBearerToken(); +if ($apiToken === false) { + // Legacy token in GET. + // TODO. Revome in future. + $apiToken = (string) get_parameter('token'); + $apiTokenValid = (isset($_GET['token']) === true && (bool) api_token_check($apiToken)); +} else { + $apiTokenValid = (bool) api_token_check($apiToken); +} + + $correctLogin = false; $no_login_msg = ''; diff --git a/pandora_console/include/functions.php b/pandora_console/include/functions.php index eadd275bcc..0f74004141 100644 --- a/pandora_console/include/functions.php +++ b/pandora_console/include/functions.php @@ -6277,7 +6277,7 @@ function arrayOutputSorting($sort, $sortField) /** * Get dowload started cookie from js and set ready cokkie for download ready comntrol. * - * @return + * @return void */ function setDownloadCookieToken() { @@ -6293,3 +6293,48 @@ function setDownloadCookieToken() ); } } + + +/** + * Get header Authorization + * */ +function getAuthorizationHeader() +{ + $headers = null; + if (isset($_SERVER['Authorization'])) { + $headers = trim($_SERVER['Authorization']); + } else if (isset($_SERVER['HTTP_AUTHORIZATION'])) { + // Nginx or fast CGI + $headers = trim($_SERVER['HTTP_AUTHORIZATION']); + } else if (function_exists('apache_request_headers')) { + $requestHeaders = apache_request_headers(); + // Server-side fix for bug in old Android versions (a nice side-effect of this fix means we don't care about capitalization for Authorization) + $requestHeaders = array_combine(array_map('ucwords', array_keys($requestHeaders)), array_values($requestHeaders)); + // print_r($requestHeaders); + if (isset($requestHeaders['Authorization'])) { + $headers = trim($requestHeaders['Authorization']); + } + } + + return $headers; +} + + +/** + * Get access token from header + * + * @return array/false Token received, false in case thre is no token. + * */ +function getBearerToken() +{ + $headers = getAuthorizationHeader(); + + // HEADER: Get the access token from the header + if (!empty($headers)) { + if (preg_match('/Bearer\s(\S+)/', $headers, $matches)) { + return $matches[1]; + } + } + + return false; +} diff --git a/pandora_console/include/functions_api.php b/pandora_console/include/functions_api.php index 46eb20f7c2..4e201e9c64 100644 --- a/pandora_console/include/functions_api.php +++ b/pandora_console/include/functions_api.php @@ -17346,23 +17346,6 @@ function api_set_enable_disable_discovery_task($id_task, $thrash2, $other) } -/** - * Check if token is correct. - * - * @param string $token Token for check. - * - * @return mixed Id of user. If returns 0 there is not valid token. - */ -function api_token_check(string $token) -{ - if (empty($token) === true) { - return -1; - } else { - return db_get_value('id_user', 'tusuario', 'api_token', $token); - } -} - - /** * Make report (PDF, CSV or XML) and send it via e-mail (this method is intended to be used by server's execution * of alert actions that involve sending reports by e-mail). @@ -17660,3 +17643,20 @@ function api_set_send_report($thrash1, $thrash2, $other, $returnType) returnData($returnType, $data, ';'); } } + + +/** + * Check if token is correct. + * + * @param string $token Token for check. + * + * @return mixed Id of user. If returns 0 there is not valid token. + */ +function api_token_check(string $token) +{ + if (empty($token) === true) { + return 0; + } else { + return db_get_value('id_user', 'tusuario', 'api_token', $token); + } +} diff --git a/pandora_console/include/functions_ui.php b/pandora_console/include/functions_ui.php index 52ad703edd..798c8cf72a 100755 --- a/pandora_console/include/functions_ui.php +++ b/pandora_console/include/functions_ui.php @@ -2370,13 +2370,17 @@ function ui_print_help_tip( $return=false, $img='images/tip_help.png', $is_relative=false, - $style='' + $style='', + $blink=false ) { $output = ''; $output .= html_print_image( $img, true, - ['title' => $text], + [ + 'title' => $text, + 'class' => $blink === true ? 'blink' : '', + ], false, $is_relative && is_metaconsole() ).''; diff --git a/pandora_console/include/styles/pandora.css b/pandora_console/include/styles/pandora.css index feec4a48ef..c0fb182b9e 100644 --- a/pandora_console/include/styles/pandora.css +++ b/pandora_console/include/styles/pandora.css @@ -4678,6 +4678,21 @@ input:checked + .p-slider:before { animation: fadein 0.5s, fadeout 0.5s 7.5s; } +.blink { + animation: blink-animation 1s steps(5, start) infinite; + -webkit-animation: blink-animation 1s steps(5, start) infinite; +} +@keyframes blink-animation { + to { + visibility: hidden; + } +} +@-webkit-keyframes blink-animation { + to { + visibility: hidden; + } +} + .snackbar p, .snackbar h3 { text-align: left; diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index 6c6e244585..12070947ea 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -290,6 +290,16 @@ $user_id .= html_print_anchor( true ); +// Check php conf for header auth. +$lines = file('/etc/httpd/conf.d/php.conf'); +$http_authorization = false; + +foreach ($lines as $l) { + if (preg_match('/SetEnvIfNoCase \^Authorization\$ \"\(\.\+\)\" HTTP_AUTHORIZATION=\$1/', $l)) { + $http_authorization = true; + } +} + $user_id .= html_print_anchor( [ 'onClick' => sprintf( @@ -309,8 +319,19 @@ $user_id .= html_print_anchor( ], true ); -$user_id .= '
'; +if ($http_authorization === false) { + $user_id .= ui_print_help_tip( + __('Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf.d/php.conf'), + true, + 'images/warn.png', + false, + '', + true + ); +} + +$user_id .= ''; $full_name = '
'.html_print_input_text_extended( 'fullname', $user_info['fullname'], From 867749f9d3f97ed4101fa18489dad8f287ecc476 Mon Sep 17 00:00:00 2001 From: Calvo Date: Thu, 29 Dec 2022 18:14:43 +0100 Subject: [PATCH 26/72] Fix inventory blacklist open --- pandora_console/godmode/setup/setup_general.php | 6 ++++++ pandora_console/include/functions_config.php | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/pandora_console/godmode/setup/setup_general.php b/pandora_console/godmode/setup/setup_general.php index f0bbc77339..b846b89728 100644 --- a/pandora_console/godmode/setup/setup_general.php +++ b/pandora_console/godmode/setup/setup_general.php @@ -949,5 +949,11 @@ $(document).ready (function () { } }); }); + + $("#submit-update_button").click(function () { + $('#inventory_changes_blacklist option').map(function(){ + $(this).prop('selected', true); + }); + }); }); diff --git a/pandora_console/include/functions_config.php b/pandora_console/include/functions_config.php index f7b85e5137..01a7e78ffc 100644 --- a/pandora_console/include/functions_config.php +++ b/pandora_console/include/functions_config.php @@ -395,6 +395,11 @@ function config_update_config() if (config_update_value('email_password', io_input_password(get_parameter('email_password')), true) === false) { $error_update[] = __('Email password'); } + + $inventory_changes_blacklist = get_parameter('inventory_changes_blacklist', []); + if (config_update_value('inventory_changes_blacklist', implode(',', $inventory_changes_blacklist), true) === false) { + $error_update[] = __('Inventory changes blacklist'); + } break; case 'enterprise': @@ -458,11 +463,6 @@ function config_update_config() if (config_update_value('sap_license', get_parameter('sap_license'), true) === false) { $error_update[] = __('SAP/R3 Plugin Licence'); } - - $inventory_changes_blacklist = get_parameter('inventory_changes_blacklist', []); - if (config_update_value('inventory_changes_blacklist', implode(',', $inventory_changes_blacklist), true) === false) { - $error_update[] = __('Inventory changes blacklist'); - } } break; From 19fe7ffe73b57b1712885bcf77d4f742c46dc337 Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 30 Dec 2022 15:04:07 +0100 Subject: [PATCH 27/72] Fix minor bug --- pandora_console/godmode/setup/setup_general.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/godmode/setup/setup_general.php b/pandora_console/godmode/setup/setup_general.php index b846b89728..db8c218708 100644 --- a/pandora_console/godmode/setup/setup_general.php +++ b/pandora_console/godmode/setup/setup_general.php @@ -924,13 +924,14 @@ $(document).ready (function () { }); }); $("#left_iblacklist").click (function () { + debugger; jQuery.each($("select[name='inventory_changes_blacklist[]'] option:selected"), function (key, value) { imodule_name = $(value).html(); if (imodule_name != ) { id_imodule = $(value).attr('value'); $("select[name='inventory_changes_blacklist_out[]']") .append( - $("") .val(id_imodule) .html('' + imodule_name + '') ); From c608ef6fcf422719f8fd68a0c902cc5b4df12229 Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 30 Dec 2022 15:55:46 +0100 Subject: [PATCH 28/72] Api auth bearer token --- pandora_console/include/api.php | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/pandora_console/include/api.php b/pandora_console/include/api.php index aefb33aed8..c0ee23e172 100644 --- a/pandora_console/include/api.php +++ b/pandora_console/include/api.php @@ -69,9 +69,6 @@ $id2 = get_parameter('id2'); $otherSerialize = get_parameter('other'); $otherMode = get_parameter('other_mode', 'url_encode'); $returnType = get_parameter('return_type', 'string'); -$api_password = get_parameter('apipass', ''); -$password = get_parameter('pass', ''); -$user = get_parameter('user', ''); $info = get_parameter('info', ''); $raw_decode = (bool) get_parameter('raw_decode', false); @@ -84,14 +81,16 @@ $apiPassword = io_output_password( ) ); +$apiTokenValid = false; // Try getting bearer token from header. // TODO. Getting token from url will be removed. $apiToken = (string) getBearerToken(); -if ($apiToken === false) { - // Legacy token in GET. +if (empty($apiToken) === true) { + // Legacy user/pass token. // TODO. Revome in future. - $apiToken = (string) get_parameter('token'); - $apiTokenValid = (isset($_GET['token']) === true && (bool) api_token_check($apiToken)); + $api_password = get_parameter('apipass', ''); + $user = get_parameter('user', ''); + $password = get_parameter('pass', ''); } else { $apiTokenValid = (bool) api_token_check($apiToken); } From af800fa886a195bab5e394d598b6d2e1e2a5e901 Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 30 Dec 2022 16:03:49 +0100 Subject: [PATCH 29/72] Updated MR --- pandora_console/extras/mr/55.sql | 1 - pandora_console/extras/mr/60.sql | 2 ++ 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pandora_console/extras/mr/55.sql b/pandora_console/extras/mr/55.sql index 6be8fbe064..687678c22b 100644 --- a/pandora_console/extras/mr/55.sql +++ b/pandora_console/extras/mr/55.sql @@ -40,7 +40,6 @@ ALTER TABLE `tservice` ADD COLUMN `asynchronous` TINYINT NOT NULL DEFAULT 0; ALTER TABLE `tservice` ADD COLUMN `rca` TEXT; ALTER TABLE `tdashboard` MODIFY `name` TEXT NOT NULL DEFAULT ''; -ALTER TABLE `tusuario` ADD COLUMN `api_token` VARCHAR(255) NOT NULL DEFAULT ''; ALTER TABLE `tevent_alert` ADD COLUMN `field1_recovery` TEXT AFTER `recovery_notify`; ALTER TABLE `tevent_alert` ADD COLUMN `field4_recovery` TEXT AFTER `field3_recovery`; diff --git a/pandora_console/extras/mr/60.sql b/pandora_console/extras/mr/60.sql index 7be8a0b4ef..9b2c360dbc 100644 --- a/pandora_console/extras/mr/60.sql +++ b/pandora_console/extras/mr/60.sql @@ -46,4 +46,6 @@ update `tmodule_inventory` set `code`='IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjI update `tmodule_inventory` set `code`='IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9wcm9kdWN0SUQucGwKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMTUgQm9yamEgU2FuY2hleiwgPGZib3JqYS5zYW5jaGV6QGFydGljYS5lcz4KIyAgICAgICAgICAgKGMpIDIwMTUgQXJ0aWNhIFNvbHVjaW9uZXMgVGVjbm9sb2dpY2FzIFMuTAojCiMgVGhpcyBwcm9ncmFtIGlzIGZyZWUgc29mdHdhcmU7IHlvdSBjYW4gcmVkaXN0cmlidXRlIGl0IGFuZC9vcgojIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdOVSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZvdW5kYXRpb247IHZlcnNpb24gMi4KIwojIFRoaXMgcHJvZ3JhbSBpcyBkaXN0cmlidXRlZCBpbiB0aGUgaG9wZSB0aGF0IGl0IHdpbGwgYmUgdXNlZnVsLAojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5UWTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mCiMgTUVSQ0hBTlRBQklMSVRZIG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLiAgU2VlIHRoZQojIEdOVSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlIGZvciBtb3JlIGRldGFpbHMuCiMgWW91IHNob3VsZCBoYXZlIHJlY2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhbG9uZyB3aXRoIHRoaXMgcHJvZ3JhbTsgaWYgbm90LCB3cml0ZSB0byB0aGUgRnJlZSBTb2Z0d2FyZQojIEZvdW5kYXRpb24sIEluYy4sIDUxIEZyYW5rbGluIFN0cmVldCwgRmlmdGggRmxvb3IsIEJvc3RvbiwgTUEgIDAyMTEwLTEzMDEsIFVTQS4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKCiN1c2Ugc3RyaWN0Owp1c2Ugd2FybmluZ3M7Cgp1c2UgRmlsZTo6QmFzZW5hbWU7CnVzZSBIVE1MOjpFbnRpdGllcyAoKTsKCiMgQ2hlY2sgZm9yIHdtaWMKbXkgJHdtaV9jbGllbnQgPSAiL3Vzci9iaW4vcGFuZG9yYXdtaWMiOwp1bmxlc3MoLWUgJHdtaV9jbGllbnQpIHsKCXByaW50ICJbZXJyb3JdICR3bWlfY2xpZW50IG5vdCBmb3VuZC5cbiI7CglleGl0IDE7Cn0KCmlmICgkI0FSR1YgIT0gMikgewoJcHJpbnQgIlVzYWdlOiAkMCA8dGFyZ2V0IGlwPiA8dXNlcm5hbWU+IDxwYXNzd29yZD5cbiI7CglleGl0IDE7Cn0KCm15ICR0YXJnZXRfaXAgPSAkQVJHVlswXTsKbXkgJHVzZXJuYW1lID0gJEFSR1ZbMV07Cm15ICRwYXNzd29yZCA9ICRBUkdWWzJdOwoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBTVUIgcnVuX3F1ZXJ5ICgkd3FsX3F1ZXJ5KQojIFJ1bnMgdGhlIGdpdmVuIFdRTCBxdWVyeSBhbmQgcmV0dXJucyB0aGUgcmVzdWx0IGFzIGFuIGFycmF5IG9mIGhhc2hlcy4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKc3ViIHJ1bl9xdWVyeSB7CglteSAkd3FsX3F1ZXJ5ID0gJF9bMF07CglteSBAcmVzdWx0ID0ge307CgoJJHdxbF9xdWVyeSA9fiAncy8iL1wnL2cnOwoKCSMgUnVuIHRoZSBEQ09NL1dNSSBjbGllbnQKCW15ICRvdXRwdXQgPSBgJHdtaV9jbGllbnQgLVUgJyR1c2VybmFtZSclJyRwYXNzd29yZCcgLy8kdGFyZ2V0X2lwIFwiJHdxbF9xdWVyeVwiIDI+L2Rldi9udWxsYDsKCglteSBAbGluZXMgPSBzcGxpdCgvXG4vLCAkb3V0cHV0KTsKCSMgSGVhZGVyLCBkZXNjcmlwdGlvbiwgcmVzdWx0cwoJaWYgKCQjbGluZXMgPCAyKSB7CgkJZXhpdCAxOwoJfQoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGluZXMpOwoJCQoJIyBHZXQgY29sdW1uIG5hbWVzCglteSBAY29sdW1uX25hbWVzID0gc3BsaXQoL1x8Lywgc2hpZnQgKEBsaW5lcykpOwoKCSMgR2V0IHJvdyBkYXRhCglteSAkaWR4ID0gMDsKCWZvciAobXkgJGkgPSAwOyAkaSA8PSAkI2xpbmVzOyAkaSsrKSB7CgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sgbGlzdAoJCWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCQlteSBAY29sdW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQjY29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07CgkJCX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEsIAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1MIHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlvbiBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwgdGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRhIHsKCW15IEBtb2R1bGVfaGVhZGVycyA9IEB7JF9bMF19OwoJbXkgQG1vZHVsZV91bml0cyAgID0gQHskX1sxXX07CglteSBAZGF0YSAgICAgICAgICAgPSBAeyRfWzJdfTsKCW15ICRyZXN1bHQ7Cglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCSRyZXN1bHQgPSAnJzsKCQlmb3IgKCRpPTA7ICRpPEBtb2R1bGVfaGVhZGVyczskaSsrKSB7CgkJCWlmIChkZWZpbmVkICgkZWxlbWVudC0+eyRtb2R1bGVfaGVhZGVyc1skaV19KSkgewoJCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaGVhZGVyc1skaV19IC4gJG1vZHVsZV91bml0c1skaV0gLiAnOyc7CgkJCX0KCQkJZWxzZSB7CgkJCQkkcmVzdWx0IC49ICc7JzsKCQkJfQoJCX0KCQljaG9wKCRyZXN1bHQpOwoJCXByaW50ICRyZXN1bHQgLiAiXG4iOwkKCX0KfQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBNYWluCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCgpteSBAcmVzdWx0ICA9IHJ1bl9xdWVyeSgiU2VsZWN0IFNlcmlhbE51bWJlciBmcm9tIFdpbjMyX09wZXJhdGluZ1N5c3RlbSIpOwojIFJlbWVtYmVyIHRvIG1hdGNoIGxlbmdodCBvZiBib3RoIGFycmF5cyBoZWFkZXJzICYgdW5pdHMKbXkgQGhlYWRlcnMgPSAoIlNlcmlhbE51bWJlciIpOwpteSBAdW5pdHMgICA9ICgiIik7CnByaW50X21vZHVsZWRhdGEgKFxAaGVhZGVycyxcQHVuaXRzLCBcQHJlc3VsdCk7CmV4aXQgMDsKCg==' where `code`='IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9wcm9kdWN0SUQucGwKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMTUgQm9yamEgU2FuY2hleiwgPGZib3JqYS5zYW5jaGV6QGFydGljYS5lcz4KIyAgICAgICAgICAgKGMpIDIwMTUgQXJ0aWNhIFNvbHVjaW9uZXMgVGVjbm9sb2dpY2FzIFMuTAojCiMgVGhpcyBwcm9ncmFtIGlzIGZyZWUgc29mdHdhcmU7IHlvdSBjYW4gcmVkaXN0cmlidXRlIGl0IGFuZC9vcgojIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdOVSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZvdW5kYXRpb247IHZlcnNpb24gMi4KIwojIFRoaXMgcHJvZ3JhbSBpcyBkaXN0cmlidXRlZCBpbiB0aGUgaG9wZSB0aGF0IGl0IHdpbGwgYmUgdXNlZnVsLAojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5UWTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mCiMgTUVSQ0hBTlRBQklMSVRZIG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLiAgU2VlIHRoZQojIEdOVSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlIGZvciBtb3JlIGRldGFpbHMuCiMgWW91IHNob3VsZCBoYXZlIHJlY2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhbG9uZyB3aXRoIHRoaXMgcHJvZ3JhbTsgaWYgbm90LCB3cml0ZSB0byB0aGUgRnJlZSBTb2Z0d2FyZQojIEZvdW5kYXRpb24sIEluYy4sIDUxIEZyYW5rbGluIFN0cmVldCwgRmlmdGggRmxvb3IsIEJvc3RvbiwgTUEgIDAyMTEwLTEzMDEsIFVTQS4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKCiN1c2Ugc3RyaWN0Owp1c2Ugd2FybmluZ3M7Cgp1c2UgRmlsZTo6QmFzZW5hbWU7CnVzZSBIVE1MOjpFbnRpdGllcyAoKTsKCiMgQ2hlY2sgZm9yIHdtaWMKbXkgJHdtaV9jbGllbnQgPSAid21pYyI7CmlmIChzeXN0ZW0oIiR3bWlfY2xpZW50ID4gL2Rldi9udWxsIDI+JjEiKSAhPSAyNTYpIHsKCXByaW50ICJbZXJyb3JdICR3bWlfY2xpZW50IG5vdCBmb3VuZC5cbiI7CglleGl0IDE7Cn0KCmlmICgkI0FSR1YgIT0gMikgewoJcHJpbnQgIlVzYWdlOiAkMCA8dGFyZ2V0IGlwPiA8dXNlcm5hbWU+IDxwYXNzd29yZD5cbiI7CglleGl0IDE7Cn0KCm15ICR0YXJnZXRfaXAgPSAkQVJHVlswXTsKbXkgJHVzZXJuYW1lID0gJEFSR1ZbMV07Cm15ICRwYXNzd29yZCA9ICRBUkdWWzJdOwoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBTVUIgcnVuX3F1ZXJ5ICgkd3FsX3F1ZXJ5KQojIFJ1bnMgdGhlIGdpdmVuIFdRTCBxdWVyeSBhbmQgcmV0dXJucyB0aGUgcmVzdWx0IGFzIGFuIGFycmF5IG9mIGhhc2hlcy4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKc3ViIHJ1bl9xdWVyeSB7CglteSAkd3FsX3F1ZXJ5ID0gJF9bMF07CglteSBAcmVzdWx0ID0ge307CgoJJHdxbF9xdWVyeSA9fiAncy8iL1wnL2cnOwoKCSMgUnVuIHRoZSBEQ09NL1dNSSBjbGllbnQKCW15ICRvdXRwdXQgPSBgJHdtaV9jbGllbnQgLVUgJyR1c2VybmFtZSclJyRwYXNzd29yZCcgLy8kdGFyZ2V0X2lwIFwiJHdxbF9xdWVyeVwiIDI+L2Rldi9udWxsYDsKCglteSBAbGluZXMgPSBzcGxpdCgvXG4vLCAkb3V0cHV0KTsKCSMgSGVhZGVyLCBkZXNjcmlwdGlvbiwgcmVzdWx0cwoJaWYgKCQjbGluZXMgPCAyKSB7CgkJZXhpdCAxOwoJfQoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGluZXMpOwoJCQoJIyBHZXQgY29sdW1uIG5hbWVzCglteSBAY29sdW1uX25hbWVzID0gc3BsaXQoL1x8Lywgc2hpZnQgKEBsaW5lcykpOwoKCSMgR2V0IHJvdyBkYXRhCglteSAkaWR4ID0gMDsKCWZvciAobXkgJGkgPSAwOyAkaSA8PSAkI2xpbmVzOyAkaSsrKSB7CgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sgbGlzdAoJCWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCQlteSBAY29sdW1uID0gc3BsaXQoL1x8LywgJGxpbmVzWyRpXSk7CgkJZm9yIChteSAkaiA9IDA7ICRqIDw9ICQjY29sdW1uX25hbWVzOyAkaisrKSB7CgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gIiI7CgkJCX0KCQkJZWxzZSB7CgkJCQkkcmVzdWx0WyRpZHhdLT57JGNvbHVtbl9uYW1lc1skal19ID0gJGNvbHVtblskal07CgkJCX0KCQl9CgkJCgkJJGlkeCsrOwoJfQoJCglyZXR1cm4gQHJlc3VsdDsKfQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEsIAojICRtb2R1bGVfZGVzY3JpcHRpb24sIEBkYXRhKQojIFByaW50cyBhIG1vZHVsZWRhdGEgWE1MIHRhZy4gJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEgYW5kCiMgJG1vZHVsZV9kZXNjcmlwdGlvbiBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24KIyBYTUwgdGFncyByZXNwZWN0aXZlbHkuCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCnN1YiBwcmludF9tb2R1bGVkYXRhIHsKCW15IEBtb2R1bGVfaGVhZGVycyA9IEB7JF9bMF19OwoJbXkgQG1vZHVsZV91bml0cyAgID0gQHskX1sxXX07CglteSBAZGF0YSAgICAgICAgICAgPSBAeyRfWzJdfTsKCW15ICRyZXN1bHQ7Cglmb3JlYWNoIG15ICRlbGVtZW50IChAZGF0YSkgewoJCSRyZXN1bHQgPSAnJzsKCQlmb3IgKCRpPTA7ICRpPEBtb2R1bGVfaGVhZGVyczskaSsrKSB7CgkJCWlmIChkZWZpbmVkICgkZWxlbWVudC0+eyRtb2R1bGVfaGVhZGVyc1skaV19KSkgewoJCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaGVhZGVyc1skaV19IC4gJG1vZHVsZV91bml0c1skaV0gLiAnOyc7CgkJCX0KCQkJZWxzZSB7CgkJCQkkcmVzdWx0IC49ICc7JzsKCQkJfQoJCX0KCQljaG9wKCRyZXN1bHQpOwoJCXByaW50ICRyZXN1bHQgLiAiXG4iOwkKCX0KfQoKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBNYWluCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCgpteSBAcmVzdWx0ICA9IHJ1bl9xdWVyeSgiU2VsZWN0IFNlcmlhbE51bWJlciBmcm9tIFdpbjMyX09wZXJhdGluZ1N5c3RlbSIpOwojIFJlbWVtYmVyIHRvIG1hdGNoIGxlbmdodCBvZiBib3RoIGFycmF5cyBoZWFkZXJzICYgdW5pdHMKbXkgQGhlYWRlcnMgPSAoIlNlcmlhbE51bWJlciIpOwpteSBAdW5pdHMgICA9ICgiIik7CnByaW50X21vZHVsZWRhdGEgKFxAaGVhZGVycyxcQHVuaXRzLCBcQHJlc3VsdCk7CmV4aXQgMDsKCg==' and `name` = 'product_ID' and `id_module_inventory`=36; +ALTER TABLE `tusuario` ADD COLUMN `api_token` VARCHAR(255) NOT NULL DEFAULT ''; + COMMIT; From 88aed19d304b178107344cae8ed50ce6ba081aff Mon Sep 17 00:00:00 2001 From: Calvo Date: Fri, 30 Dec 2022 16:11:49 +0100 Subject: [PATCH 30/72] Api auth bearer token working --- pandora_console/include/auth/mysql.php | 16 ++++--- pandora_console/operation/users/user_edit.php | 43 ++++++++++--------- 2 files changed, 33 insertions(+), 26 deletions(-) diff --git a/pandora_console/include/auth/mysql.php b/pandora_console/include/auth/mysql.php index 9b41f10975..dffe9cb5cc 100644 --- a/pandora_console/include/auth/mysql.php +++ b/pandora_console/include/auth/mysql.php @@ -168,13 +168,17 @@ function process_user_login_local($login, $pass, $api=false, $passAlreadyEncrypt $row = db_get_row_sql($sql); - // Perform password check whether it is MD5-hashed (old hashing) or Bcrypt-hashed. - if (strlen($row['password']) === 32) { - // MD5. - $credentials_check = $row !== false && $row['password'] !== md5('') && $row['password'] == md5($pass); + if ($passAlreadyEncrypted) { + $credentials_check = $pass === $row['password']; } else { - // Bcrypt. - $credentials_check = password_verify($pass, $row['password']); + // Perform password check whether it is MD5-hashed (old hashing) or Bcrypt-hashed. + if (strlen($row['password']) === 32) { + // MD5. + $credentials_check = $row !== false && $row['password'] !== md5('') && $row['password'] == md5($pass); + } else { + // Bcrypt. + $credentials_check = password_verify($pass, $row['password']); + } } if ($credentials_check === true) { diff --git a/pandora_console/operation/users/user_edit.php b/pandora_console/operation/users/user_edit.php index 2dd991e3b4..f77a5dfa49 100644 --- a/pandora_console/operation/users/user_edit.php +++ b/pandora_console/operation/users/user_edit.php @@ -269,26 +269,29 @@ $user_id = '

'.__('U $user_id .= ''.$id.'

'; $user_id .= '

'.__('API Token').'

'; -$user_id .= html_print_anchor( - [ - 'onClick' => sprintf( - 'javascript:renewAPIToken(\'%s\', \'%s\', \'%s\')', - __('Warning'), - __('The API token will be renewed. After this action, the last token you were using will not work. Are you sure?'), - 'user_profile_form', - ), - 'content' => html_print_image( - 'images/icono-refrescar.png', - true, - [ - 'class' => 'renew_api_token_image clickable', - 'title' => __('Renew API Token'), - ] - ), - 'class' => 'renew_api_token_link', - ], - true -); +if (is_management_allowed()) { + $user_id .= html_print_anchor( + [ + 'onClick' => sprintf( + 'javascript:renewAPIToken(\'%s\', \'%s\', \'%s\')', + __('Warning'), + __('The API token will be renewed. After this action, the last token you were using will not work. Are you sure?'), + 'user_profile_form', + ), + 'content' => html_print_image( + 'images/icono-refrescar.png', + true, + [ + 'class' => 'renew_api_token_image clickable', + 'title' => __('Renew API Token'), + ] + ), + 'class' => 'renew_api_token_link', + ], + true + ); +} + // Check php conf for header auth. $lines = file('/etc/httpd/conf.d/php.conf'); From 57c9c55159d1305199cfffcd86283460b8282c40 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 2 Jan 2023 15:41:22 +0100 Subject: [PATCH 31/72] #10023 Fixed duplex 3 --- pandora_server/util/plugin/pandora_snmp_bandwidth.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/util/plugin/pandora_snmp_bandwidth.pl b/pandora_server/util/plugin/pandora_snmp_bandwidth.pl index fc02d83f7c..1d011e31bf 100755 --- a/pandora_server/util/plugin/pandora_snmp_bandwidth.pl +++ b/pandora_server/util/plugin/pandora_snmp_bandwidth.pl @@ -232,7 +232,7 @@ sub prepare_tree { if (ref($duplex) eq "HASH") { if (! exists($duplex->{'data'}) || ($duplex->{'data'} ne '2' && $duplex->{'data'} ne '3')) { # Unknown duplex. - $duplex = 0; + $duplex = 1; } else { $duplex = int $duplex->{'data'}; } From c8bbf1e2dce2ac947f838f9615dc339f25a785db Mon Sep 17 00:00:00 2001 From: Calvo Date: Thu, 5 Jan 2023 08:56:07 +0100 Subject: [PATCH 32/72] Fix minor bug --- pandora_console/godmode/setup/setup_general.php | 1 - 1 file changed, 1 deletion(-) diff --git a/pandora_console/godmode/setup/setup_general.php b/pandora_console/godmode/setup/setup_general.php index db8c218708..fa889f3071 100644 --- a/pandora_console/godmode/setup/setup_general.php +++ b/pandora_console/godmode/setup/setup_general.php @@ -924,7 +924,6 @@ $(document).ready (function () { }); }); $("#left_iblacklist").click (function () { - debugger; jQuery.each($("select[name='inventory_changes_blacklist[]'] option:selected"), function (key, value) { imodule_name = $(value).html(); if (imodule_name != ) { From a14b100b3fa83999e49782c446549c0c564f7c1d Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Mon, 9 Jan 2023 14:53:10 +0100 Subject: [PATCH 33/72] #10023 Fixed unknown duplex --- pandora_server/util/plugin/pandora_snmp_bandwidth.pl | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pandora_server/util/plugin/pandora_snmp_bandwidth.pl b/pandora_server/util/plugin/pandora_snmp_bandwidth.pl index 1d011e31bf..c4224299ba 100755 --- a/pandora_server/util/plugin/pandora_snmp_bandwidth.pl +++ b/pandora_server/util/plugin/pandora_snmp_bandwidth.pl @@ -136,6 +136,9 @@ sub update_config_key ($) { if ($arg eq 'outUsage') { return "outUsage"; } + if ($arg eq 'f') { + return "unknown_fullduplex"; + } } ################################################################################ @@ -232,7 +235,11 @@ sub prepare_tree { if (ref($duplex) eq "HASH") { if (! exists($duplex->{'data'}) || ($duplex->{'data'} ne '2' && $duplex->{'data'} ne '3')) { # Unknown duplex. - $duplex = 1; + if (is_enabled($config->{'unknown_fullduplex'})) { + $duplex = 3; + } else { + $duplex = 1; + } } else { $duplex = int $duplex->{'data'}; } From acd36289b0e9bdede4227ae216ed29cd7a59f8f2 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 9 Jan 2023 17:17:04 +0100 Subject: [PATCH 34/72] #10103 added module name in A-A THRESHOLDS --- pandora_console/include/lib/ClusterViewer/ClusterWizard.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/include/lib/ClusterViewer/ClusterWizard.php b/pandora_console/include/lib/ClusterViewer/ClusterWizard.php index 50a14d9c85..405d891ac5 100644 --- a/pandora_console/include/lib/ClusterViewer/ClusterWizard.php +++ b/pandora_console/include/lib/ClusterViewer/ClusterWizard.php @@ -1027,6 +1027,7 @@ class ClusterWizard extends \HTML foreach ($aa_modules as $module) { $inputs[] = [ 'block_id' => 'from-to-threshold', + 'label' => ''.$module->name().'', 'class' => 'flex-row line w100p', 'direct' => 1, 'block_content' => [ From df87c122af2b922e5731633665040f2c5ffdadc9 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 10 Jan 2023 10:50:47 +0100 Subject: [PATCH 35/72] added ip in modules list --- pandora_console/godmode/agentes/module_manager.php | 6 +++++- pandora_console/include/ajax/module.php | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/pandora_console/godmode/agentes/module_manager.php b/pandora_console/godmode/agentes/module_manager.php index 083517c122..e315ec3d16 100644 --- a/pandora_console/godmode/agentes/module_manager.php +++ b/pandora_console/godmode/agentes/module_manager.php @@ -1177,7 +1177,11 @@ foreach ($modules as $module) { $data[6] = ui_print_status_image( $status, htmlspecialchars($title), - true + true, + false, + false, + false, + ($module['ip_target']) ? 'IP: '.$module['ip_target'] : false ); // MAX / MIN values. diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index 61720a99a4..4c935a6e55 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -1176,10 +1176,10 @@ if (check_login()) { $status, $title ); - - $last_status_change_text = 'Time elapsed since last status change: '; + $last_status_change_text = ($module['ip_target']) ? 'IP: '.$module['ip_target'].'
' : ''; + $last_status_change_text .= 'Time elapsed since last status change: '; $last_status_change_text .= !empty($module['last_status_change']) ? human_time_comparation($module['last_status_change']) : __('N/A'); - + hd($module, true); $data[5] = ui_print_status_image($status, htmlspecialchars($title), true, false, false, false, $last_status_change_text); if (!$show_context_help_first_time) { $show_context_help_first_time = true; From f37db99337657f6d2a31497631984170503fff71 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Tue, 10 Jan 2023 11:46:14 +0100 Subject: [PATCH 36/72] #9618 deleted hd() --- pandora_console/include/ajax/module.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/ajax/module.php b/pandora_console/include/ajax/module.php index 4c935a6e55..293977f51f 100755 --- a/pandora_console/include/ajax/module.php +++ b/pandora_console/include/ajax/module.php @@ -1179,7 +1179,7 @@ if (check_login()) { $last_status_change_text = ($module['ip_target']) ? 'IP: '.$module['ip_target'].'
' : ''; $last_status_change_text .= 'Time elapsed since last status change: '; $last_status_change_text .= !empty($module['last_status_change']) ? human_time_comparation($module['last_status_change']) : __('N/A'); - hd($module, true); + $data[5] = ui_print_status_image($status, htmlspecialchars($title), true, false, false, false, $last_status_change_text); if (!$show_context_help_first_time) { $show_context_help_first_time = true; From 0832d9613a974735a92fe125880996e8a5b04d0d Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Tue, 10 Jan 2023 16:40:53 +0100 Subject: [PATCH 37/72] #10052 Fixed fictional color --- pandora_console/include/class/NetworkMap.class.php | 2 +- pandora_console/operation/agentes/pandora_networkmap.view.php | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/class/NetworkMap.class.php b/pandora_console/include/class/NetworkMap.class.php index ccfbf102c1..470a0deb52 100644 --- a/pandora_console/include/class/NetworkMap.class.php +++ b/pandora_console/include/class/NetworkMap.class.php @@ -1672,7 +1672,7 @@ class NetworkMap if (isset($source_data['color'])) { $item['color'] = $source_data['color']; } else { - if (empty($node['status']) && empty($node['id_module']) && !empty($node['style']['id_networkmap'])) { + if (empty($node['style']['id_networkmap']) === false) { $status_aux = get_status_color_networkmap_fictional_point($node['style']['id_networkmap']); $item['color'] = $status_aux; } else { diff --git a/pandora_console/operation/agentes/pandora_networkmap.view.php b/pandora_console/operation/agentes/pandora_networkmap.view.php index 6d118d6e10..e35ba182a1 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.view.php +++ b/pandora_console/operation/agentes/pandora_networkmap.view.php @@ -881,7 +881,11 @@ if (is_ajax() === true) { $shape = get_parameter('shape', 0); $radious = (int) get_parameter('radious', 20); $color = get_parameter('color', 0); + $networkmap = (int) get_parameter('networkmap', 0); + if (empty($networkmap) === false) { + $color = get_status_color_networkmap_fictional_point($networkmap); + } $return = []; $return['correct'] = false; From a7fccc2f770dcdae65ad47ba1e9e95e9e72ed739 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 11 Jan 2023 10:59:52 +0100 Subject: [PATCH 38/72] #10106 deleted session when user is deleted --- pandora_console/godmode/users/user_list.php | 1 + pandora_console/include/functions_users.php | 14 ++++++++++++++ 2 files changed, 15 insertions(+) diff --git a/pandora_console/godmode/users/user_list.php b/pandora_console/godmode/users/user_list.php index 3af06054a4..e5d15006fe 100644 --- a/pandora_console/godmode/users/user_list.php +++ b/pandora_console/godmode/users/user_list.php @@ -333,6 +333,7 @@ if ($delete_user === true) { $result = delete_user($id_user); if ($result) { + delete_session_user($id_user); db_pandora_audit( AUDIT_LOG_USER_MANAGEMENT, __('Deleted user %s', io_safe_output($id_user)) diff --git a/pandora_console/include/functions_users.php b/pandora_console/include/functions_users.php index 17dc7911ee..8e4cbdecbf 100755 --- a/pandora_console/include/functions_users.php +++ b/pandora_console/include/functions_users.php @@ -811,6 +811,20 @@ function users_get_users_by_group($id_group, $um=false, $disabled=true) } +/** + * Delete session user if exist + * + * @param string $id_user User id. + * + * @return boolean Return . + */ +function delete_session_user($id_user) +{ + $sql = "DELETE FROM tsessions_php where data like '%\"".$id_user."\"%'"; + return db_process_sql($sql); +} + + function users_has_profile_without_UM($id_user, $id_groups) { $sql = sprintf( From 31d0cceecc2419d4871ad4cf85e3c2e25b7af627 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Wed, 11 Jan 2023 17:00:39 +0100 Subject: [PATCH 39/72] #10131 fixed error 500 in module templates --- pandora_console/godmode/agentes/agent_template.php | 1 + 1 file changed, 1 insertion(+) diff --git a/pandora_console/godmode/agentes/agent_template.php b/pandora_console/godmode/agentes/agent_template.php index 31e6de29b5..933b37fbce 100644 --- a/pandora_console/godmode/agentes/agent_template.php +++ b/pandora_console/godmode/agentes/agent_template.php @@ -224,6 +224,7 @@ if ($result === false) { $result = []; } +$table = new stdClass(); $table->width = '100%'; $table->cellpadding = 0; $table->cellspacing = 0; From 4d08ca57b400801dbddaef96fe66c8ef2a0d22f9 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 12 Jan 2023 09:55:07 +0100 Subject: [PATCH 40/72] #10129 fixed Circular progress bar name --- pandora_console/include/functions_visual_map_editor.php | 2 +- .../include/rest-api/models/VisualConsole/Items/Percentile.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/functions_visual_map_editor.php b/pandora_console/include/functions_visual_map_editor.php index b32714b819..9d4eaad1d6 100755 --- a/pandora_console/include/functions_visual_map_editor.php +++ b/pandora_console/include/functions_visual_map_editor.php @@ -685,7 +685,7 @@ function visual_map_editor_print_item_palette($visualConsole_id, $background) $percentile_type = [ 'percentile' => __('Percentile'), 'bubble' => __('Bubble'), - 'circular_progress_bar' => __('Circular porgress bar'), + 'circular_progress_bar' => __('Circular progress bar'), 'interior_circular_progress_bar' => __('Circular progress bar (interior)'), ]; $percentile_value = [ diff --git a/pandora_console/include/rest-api/models/VisualConsole/Items/Percentile.php b/pandora_console/include/rest-api/models/VisualConsole/Items/Percentile.php index 657f73364d..181ceeb020 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Items/Percentile.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Items/Percentile.php @@ -457,7 +457,7 @@ final class Percentile extends Item $fields = [ 'progress-bar' => __('Percentile'), 'bubble' => __('Bubble'), - 'circular-progress-bar' => __('Circular porgress bar'), + 'circular-progress-bar' => __('Circular progress bar'), 'circular-progress-bar-alt' => __( 'Circular progress bar (interior)' ), From 63ee1c1e2f202cebbe324ebeedf81eac712a6fd0 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 12 Jan 2023 11:42:46 +0100 Subject: [PATCH 41/72] #10123 added file chart.umd.js.map --- pandora_console/include/graphs/chartjs/chart.umd.js.map | 1 + 1 file changed, 1 insertion(+) create mode 100644 pandora_console/include/graphs/chartjs/chart.umd.js.map diff --git a/pandora_console/include/graphs/chartjs/chart.umd.js.map b/pandora_console/include/graphs/chartjs/chart.umd.js.map new file mode 100644 index 0000000000..615c48c6e5 --- /dev/null +++ b/pandora_console/include/graphs/chartjs/chart.umd.js.map @@ -0,0 +1 @@ +{"version":3,"file":"chart.umd.js","sources":["../src/helpers/helpers.core.ts","../src/helpers/helpers.math.ts","../src/helpers/helpers.collection.ts","../src/helpers/helpers.extras.ts","../src/core/core.animator.js","../node_modules/.pnpm/@kurkle+color@0.3.0/node_modules/@kurkle/color/dist/color.esm.js","../src/helpers/helpers.color.ts","../src/core/core.animations.defaults.js","../src/helpers/helpers.intl.ts","../src/core/core.ticks.js","../src/core/core.defaults.js","../src/core/core.layouts.defaults.js","../src/core/core.scale.defaults.js","../src/helpers/helpers.dom.ts","../src/helpers/helpers.canvas.js","../src/helpers/helpers.config.js","../src/helpers/helpers.curve.ts","../src/helpers/helpers.easing.ts","../src/helpers/helpers.interpolation.ts","../src/helpers/helpers.options.ts","../src/helpers/helpers.rtl.ts","../src/helpers/helpers.segment.js","../src/core/core.interaction.js","../src/core/core.layouts.js","../src/platform/platform.base.js","../src/platform/platform.basic.js","../src/platform/platform.dom.js","../src/platform/index.js","../src/core/core.animation.js","../src/core/core.animations.js","../src/core/core.datasetController.js","../src/core/core.element.ts","../src/core/core.scale.autoskip.js","../src/core/core.scale.js","../src/core/core.typedRegistry.js","../src/core/core.registry.js","../src/core/core.plugins.js","../src/core/core.config.js","../src/core/core.controller.js","../src/core/core.adapters.ts","../src/controllers/controller.bar.js","../src/controllers/controller.doughnut.js","../src/controllers/controller.polarArea.js","../src/controllers/controller.bubble.js","../src/controllers/controller.line.js","../src/controllers/controller.pie.js","../src/controllers/controller.radar.js","../src/controllers/controller.scatter.js","../src/elements/element.arc.ts","../src/elements/element.line.js","../src/elements/element.point.ts","../src/elements/element.bar.js","../src/scales/scale.category.js","../src/scales/scale.linearbase.js","../src/scales/scale.linear.js","../src/scales/scale.logarithmic.js","../src/scales/scale.radialLinear.js","../src/scales/scale.time.js","../src/scales/scale.timeseries.js","../src/plugins/plugin.colors.ts","../src/plugins/plugin.decimation.js","../src/plugins/plugin.filler/filler.segment.js","../src/plugins/plugin.filler/filler.helper.js","../src/plugins/plugin.filler/filler.options.js","../src/plugins/plugin.filler/filler.target.stack.js","../src/plugins/plugin.filler/simpleArc.js","../src/plugins/plugin.filler/filler.target.js","../src/plugins/plugin.filler/filler.drawing.js","../src/plugins/plugin.filler/index.js","../src/plugins/plugin.legend.js","../src/plugins/plugin.title.js","../src/plugins/plugin.subtitle.js","../src/plugins/plugin.tooltip.js","../src/index.umd.ts"],"sourcesContent":["/**\n * @namespace Chart.helpers\n */\n\nimport type {AnyObject} from '../types/basic.js';\nimport type {ActiveDataPoint, ChartEvent} from '../types/index.js';\n\n/**\n * An empty function that can be used, for example, for optional callback.\n */\nexport function noop() {\n /* noop */\n}\n\n/**\n * Returns a unique id, sequentially generated from a global variable.\n */\nexport const uid = (() => {\n let id = 0;\n return () => id++;\n})();\n\n/**\n * Returns true if `value` is neither null nor undefined, else returns false.\n * @param value - The value to test.\n * @since 2.7.0\n */\nexport function isNullOrUndef(value: unknown): value is null | undefined {\n return value === null || typeof value === 'undefined';\n}\n\n/**\n * Returns true if `value` is an array (including typed arrays), else returns false.\n * @param value - The value to test.\n * @function\n */\nexport function isArray(value: unknown): value is T[] {\n if (Array.isArray && Array.isArray(value)) {\n return true;\n }\n const type = Object.prototype.toString.call(value);\n if (type.slice(0, 7) === '[object' && type.slice(-6) === 'Array]') {\n return true;\n }\n return false;\n}\n\n/**\n * Returns true if `value` is an object (excluding null), else returns false.\n * @param value - The value to test.\n * @since 2.7.0\n */\nexport function isObject(value: unknown): value is AnyObject {\n return value !== null && Object.prototype.toString.call(value) === '[object Object]';\n}\n\n/**\n * Returns true if `value` is a finite number, else returns false\n * @param value - The value to test.\n */\nfunction isNumberFinite(value: unknown): value is number {\n return (typeof value === 'number' || value instanceof Number) && isFinite(+value);\n}\nexport {\n isNumberFinite as isFinite,\n};\n\n/**\n * Returns `value` if finite, else returns `defaultValue`.\n * @param value - The value to return if defined.\n * @param defaultValue - The value to return if `value` is not finite.\n */\nexport function finiteOrDefault(value: unknown, defaultValue: number) {\n return isNumberFinite(value) ? value : defaultValue;\n}\n\n/**\n * Returns `value` if defined, else returns `defaultValue`.\n * @param value - The value to return if defined.\n * @param defaultValue - The value to return if `value` is undefined.\n */\nexport function valueOrDefault(value: T | undefined, defaultValue: T) {\n return typeof value === 'undefined' ? defaultValue : value;\n}\n\nexport const toPercentage = (value: number | string, dimension: number) =>\n typeof value === 'string' && value.endsWith('%') ?\n parseFloat(value) / 100\n : +value / dimension;\n\nexport const toDimension = (value: number | string, dimension: number) =>\n typeof value === 'string' && value.endsWith('%') ?\n parseFloat(value) / 100 * dimension\n : +value;\n\n/**\n * Calls `fn` with the given `args` in the scope defined by `thisArg` and returns the\n * value returned by `fn`. If `fn` is not a function, this method returns undefined.\n * @param fn - The function to call.\n * @param args - The arguments with which `fn` should be called.\n * @param [thisArg] - The value of `this` provided for the call to `fn`.\n */\nexport function callback R, TA, R>(\n fn: T | undefined,\n args: unknown[],\n thisArg?: TA\n): R | undefined {\n if (fn && typeof fn.call === 'function') {\n return fn.apply(thisArg, args);\n }\n}\n\n/**\n * Note(SB) for performance sake, this method should only be used when loopable type\n * is unknown or in none intensive code (not called often and small loopable). Else\n * it's preferable to use a regular for() loop and save extra function calls.\n * @param loopable - The object or array to be iterated.\n * @param fn - The function to call for each item.\n * @param [thisArg] - The value of `this` provided for the call to `fn`.\n * @param [reverse] - If true, iterates backward on the loopable.\n */\nexport function each(\n loopable: Record,\n fn: (this: TA, v: T, i: string) => void,\n thisArg?: TA,\n reverse?: boolean\n): void;\nexport function each(\n loopable: T[],\n fn: (this: TA, v: T, i: number) => void,\n thisArg?: TA,\n reverse?: boolean\n): void;\nexport function each(\n loopable: T[] | Record,\n fn: (this: TA, v: T, i: any) => void,\n thisArg?: TA,\n reverse?: boolean\n) {\n let i: number, len: number, keys: string[];\n if (isArray(loopable)) {\n len = loopable.length;\n if (reverse) {\n for (i = len - 1; i >= 0; i--) {\n fn.call(thisArg, loopable[i], i);\n }\n } else {\n for (i = 0; i < len; i++) {\n fn.call(thisArg, loopable[i], i);\n }\n }\n } else if (isObject(loopable)) {\n keys = Object.keys(loopable);\n len = keys.length;\n for (i = 0; i < len; i++) {\n fn.call(thisArg, loopable[keys[i]], keys[i]);\n }\n }\n}\n\n/**\n * Returns true if the `a0` and `a1` arrays have the same content, else returns false.\n * @param a0 - The array to compare\n * @param a1 - The array to compare\n * @private\n */\nexport function _elementsEqual(a0: ActiveDataPoint[], a1: ActiveDataPoint[]) {\n let i: number, ilen: number, v0: ActiveDataPoint, v1: ActiveDataPoint;\n\n if (!a0 || !a1 || a0.length !== a1.length) {\n return false;\n }\n\n for (i = 0, ilen = a0.length; i < ilen; ++i) {\n v0 = a0[i];\n v1 = a1[i];\n\n if (v0.datasetIndex !== v1.datasetIndex || v0.index !== v1.index) {\n return false;\n }\n }\n\n return true;\n}\n\n/**\n * Returns a deep copy of `source` without keeping references on objects and arrays.\n * @param source - The value to clone.\n */\nexport function clone(source: T): T {\n if (isArray(source)) {\n return source.map(clone) as unknown as T;\n }\n\n if (isObject(source)) {\n const target = Object.create(null);\n const keys = Object.keys(source);\n const klen = keys.length;\n let k = 0;\n\n for (; k < klen; ++k) {\n target[keys[k]] = clone(source[keys[k]]);\n }\n\n return target;\n }\n\n return source;\n}\n\nfunction isValidKey(key: string) {\n return ['__proto__', 'prototype', 'constructor'].indexOf(key) === -1;\n}\n\n/**\n * The default merger when Chart.helpers.merge is called without merger option.\n * Note(SB): also used by mergeConfig and mergeScaleConfig as fallback.\n * @private\n */\nexport function _merger(key: string, target: AnyObject, source: AnyObject, options: AnyObject) {\n if (!isValidKey(key)) {\n return;\n }\n\n const tval = target[key];\n const sval = source[key];\n\n if (isObject(tval) && isObject(sval)) {\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n merge(tval, sval, options);\n } else {\n target[key] = clone(sval);\n }\n}\n\nexport interface MergeOptions {\n merger?: (key: string, target: AnyObject, source: AnyObject, options?: AnyObject) => void;\n}\n\n/**\n * Recursively deep copies `source` properties into `target` with the given `options`.\n * IMPORTANT: `target` is not cloned and will be updated with `source` properties.\n * @param target - The target object in which all sources are merged into.\n * @param source - Object(s) to merge into `target`.\n * @param [options] - Merging options:\n * @param [options.merger] - The merge method (key, target, source, options)\n * @returns The `target` object.\n */\nexport function merge(target: T, source: [], options?: MergeOptions): T;\nexport function merge(target: T, source: S1, options?: MergeOptions): T & S1;\nexport function merge(target: T, source: [S1], options?: MergeOptions): T & S1;\nexport function merge(target: T, source: [S1, S2], options?: MergeOptions): T & S1 & S2;\nexport function merge(target: T, source: [S1, S2, S3], options?: MergeOptions): T & S1 & S2 & S3;\nexport function merge(\n target: T,\n source: [S1, S2, S3, S4],\n options?: MergeOptions\n): T & S1 & S2 & S3 & S4;\nexport function merge(target: T, source: AnyObject[], options?: MergeOptions): AnyObject;\nexport function merge(target: T, source: AnyObject[], options?: MergeOptions): AnyObject {\n const sources = isArray(source) ? source : [source];\n const ilen = sources.length;\n\n if (!isObject(target)) {\n return target as AnyObject;\n }\n\n options = options || {};\n const merger = options.merger || _merger;\n let current: AnyObject;\n\n for (let i = 0; i < ilen; ++i) {\n current = sources[i];\n if (!isObject(current)) {\n continue;\n }\n\n const keys = Object.keys(current);\n for (let k = 0, klen = keys.length; k < klen; ++k) {\n merger(keys[k], target, current, options as AnyObject);\n }\n }\n\n return target;\n}\n\n/**\n * Recursively deep copies `source` properties into `target` *only* if not defined in target.\n * IMPORTANT: `target` is not cloned and will be updated with `source` properties.\n * @param target - The target object in which all sources are merged into.\n * @param source - Object(s) to merge into `target`.\n * @returns The `target` object.\n */\nexport function mergeIf(target: T, source: []): T;\nexport function mergeIf(target: T, source: S1): T & S1;\nexport function mergeIf(target: T, source: [S1]): T & S1;\nexport function mergeIf(target: T, source: [S1, S2]): T & S1 & S2;\nexport function mergeIf(target: T, source: [S1, S2, S3]): T & S1 & S2 & S3;\nexport function mergeIf(target: T, source: [S1, S2, S3, S4]): T & S1 & S2 & S3 & S4;\nexport function mergeIf(target: T, source: AnyObject[]): AnyObject;\nexport function mergeIf(target: T, source: AnyObject[]): AnyObject {\n // eslint-disable-next-line @typescript-eslint/no-use-before-define\n return merge(target, source, {merger: _mergerIf});\n}\n\n/**\n * Merges source[key] in target[key] only if target[key] is undefined.\n * @private\n */\nexport function _mergerIf(key: string, target: AnyObject, source: AnyObject) {\n if (!isValidKey(key)) {\n return;\n }\n\n const tval = target[key];\n const sval = source[key];\n\n if (isObject(tval) && isObject(sval)) {\n mergeIf(tval, sval);\n } else if (!Object.prototype.hasOwnProperty.call(target, key)) {\n target[key] = clone(sval);\n }\n}\n\n/**\n * @private\n */\nexport function _deprecated(scope: string, value: unknown, previous: string, current: string) {\n if (value !== undefined) {\n console.warn(scope + ': \"' + previous +\n '\" is deprecated. Please use \"' + current + '\" instead');\n }\n}\n\n// resolveObjectKey resolver cache\nconst keyResolvers = {\n // Chart.helpers.core resolveObjectKey should resolve empty key to root object\n '': v => v,\n // default resolvers\n x: o => o.x,\n y: o => o.y\n};\n\n/**\n * @private\n */\nexport function _splitKey(key: string) {\n const parts = key.split('.');\n const keys: string[] = [];\n let tmp = '';\n for (const part of parts) {\n tmp += part;\n if (tmp.endsWith('\\\\')) {\n tmp = tmp.slice(0, -1) + '.';\n } else {\n keys.push(tmp);\n tmp = '';\n }\n }\n return keys;\n}\n\nfunction _getKeyResolver(key: string) {\n const keys = _splitKey(key);\n return obj => {\n for (const k of keys) {\n if (k === '') {\n // For backward compatibility:\n // Chart.helpers.core resolveObjectKey should break at empty key\n break;\n }\n obj = obj && obj[k];\n }\n return obj;\n };\n}\n\nexport function resolveObjectKey(obj: AnyObject, key: string): AnyObject {\n const resolver = keyResolvers[key] || (keyResolvers[key] = _getKeyResolver(key));\n return resolver(obj);\n}\n\n/**\n * @private\n */\nexport function _capitalize(str: string) {\n return str.charAt(0).toUpperCase() + str.slice(1);\n}\n\n\nexport const defined = (value: unknown) => typeof value !== 'undefined';\n\nexport const isFunction = (value: unknown): value is (...args: any[]) => any => typeof value === 'function';\n\n// Adapted from https://stackoverflow.com/questions/31128855/comparing-ecma6-sets-for-equality#31129384\nexport const setsEqual = (a: Set, b: Set) => {\n if (a.size !== b.size) {\n return false;\n }\n\n for (const item of a) {\n if (!b.has(item)) {\n return false;\n }\n }\n\n return true;\n};\n\n/**\n * @param e - The event\n * @private\n */\nexport function _isClickEvent(e: ChartEvent) {\n return e.type === 'mouseup' || e.type === 'click' || e.type === 'contextmenu';\n}\n","import type {Point} from '../types/geometric.js';\nimport {isFinite as isFiniteNumber} from './helpers.core.js';\n\n/**\n * @alias Chart.helpers.math\n * @namespace\n */\n\nexport const PI = Math.PI;\nexport const TAU = 2 * PI;\nexport const PITAU = TAU + PI;\nexport const INFINITY = Number.POSITIVE_INFINITY;\nexport const RAD_PER_DEG = PI / 180;\nexport const HALF_PI = PI / 2;\nexport const QUARTER_PI = PI / 4;\nexport const TWO_THIRDS_PI = PI * 2 / 3;\n\nexport const log10 = Math.log10;\nexport const sign = Math.sign;\n\nexport function almostEquals(x: number, y: number, epsilon: number) {\n return Math.abs(x - y) < epsilon;\n}\n\n/**\n * Implementation of the nice number algorithm used in determining where axis labels will go\n */\nexport function niceNum(range: number) {\n const roundedRange = Math.round(range);\n range = almostEquals(range, roundedRange, range / 1000) ? roundedRange : range;\n const niceRange = Math.pow(10, Math.floor(log10(range)));\n const fraction = range / niceRange;\n const niceFraction = fraction <= 1 ? 1 : fraction <= 2 ? 2 : fraction <= 5 ? 5 : 10;\n return niceFraction * niceRange;\n}\n\n/**\n * Returns an array of factors sorted from 1 to sqrt(value)\n * @private\n */\nexport function _factorize(value: number) {\n const result: number[] = [];\n const sqrt = Math.sqrt(value);\n let i: number;\n\n for (i = 1; i < sqrt; i++) {\n if (value % i === 0) {\n result.push(i);\n result.push(value / i);\n }\n }\n if (sqrt === (sqrt | 0)) { // if value is a square number\n result.push(sqrt);\n }\n\n result.sort((a, b) => a - b).pop();\n return result;\n}\n\nexport function isNumber(n: unknown): n is number {\n return !isNaN(parseFloat(n as string)) && isFinite(n as number);\n}\n\nexport function almostWhole(x: number, epsilon: number) {\n const rounded = Math.round(x);\n return ((rounded - epsilon) <= x) && ((rounded + epsilon) >= x);\n}\n\n/**\n * @private\n */\nexport function _setMinAndMaxByKey(\n array: Record[],\n target: { min: number, max: number },\n property: string\n) {\n let i: number, ilen: number, value: number;\n\n for (i = 0, ilen = array.length; i < ilen; i++) {\n value = array[i][property];\n if (!isNaN(value)) {\n target.min = Math.min(target.min, value);\n target.max = Math.max(target.max, value);\n }\n }\n}\n\nexport function toRadians(degrees: number) {\n return degrees * (PI / 180);\n}\n\nexport function toDegrees(radians: number) {\n return radians * (180 / PI);\n}\n\n/**\n * Returns the number of decimal places\n * i.e. the number of digits after the decimal point, of the value of this Number.\n * @param x - A number.\n * @returns The number of decimal places.\n * @private\n */\nexport function _decimalPlaces(x: number) {\n if (!isFiniteNumber(x)) {\n return;\n }\n let e = 1;\n let p = 0;\n while (Math.round(x * e) / e !== x) {\n e *= 10;\n p++;\n }\n return p;\n}\n\n// Gets the angle from vertical upright to the point about a centre.\nexport function getAngleFromPoint(\n centrePoint: Point,\n anglePoint: Point\n) {\n const distanceFromXCenter = anglePoint.x - centrePoint.x;\n const distanceFromYCenter = anglePoint.y - centrePoint.y;\n const radialDistanceFromCenter = Math.sqrt(distanceFromXCenter * distanceFromXCenter + distanceFromYCenter * distanceFromYCenter);\n\n let angle = Math.atan2(distanceFromYCenter, distanceFromXCenter);\n\n if (angle < (-0.5 * PI)) {\n angle += TAU; // make sure the returned angle is in the range of (-PI/2, 3PI/2]\n }\n\n return {\n angle,\n distance: radialDistanceFromCenter\n };\n}\n\nexport function distanceBetweenPoints(pt1: Point, pt2: Point) {\n return Math.sqrt(Math.pow(pt2.x - pt1.x, 2) + Math.pow(pt2.y - pt1.y, 2));\n}\n\n/**\n * Shortest distance between angles, in either direction.\n * @private\n */\nexport function _angleDiff(a: number, b: number) {\n return (a - b + PITAU) % TAU - PI;\n}\n\n/**\n * Normalize angle to be between 0 and 2*PI\n * @private\n */\nexport function _normalizeAngle(a: number) {\n return (a % TAU + TAU) % TAU;\n}\n\n/**\n * @private\n */\nexport function _angleBetween(angle: number, start: number, end: number, sameAngleIsFullCircle?: boolean) {\n const a = _normalizeAngle(angle);\n const s = _normalizeAngle(start);\n const e = _normalizeAngle(end);\n const angleToStart = _normalizeAngle(s - a);\n const angleToEnd = _normalizeAngle(e - a);\n const startToAngle = _normalizeAngle(a - s);\n const endToAngle = _normalizeAngle(a - e);\n return a === s || a === e || (sameAngleIsFullCircle && s === e)\n || (angleToStart > angleToEnd && startToAngle < endToAngle);\n}\n\n/**\n * Limit `value` between `min` and `max`\n * @param value\n * @param min\n * @param max\n * @private\n */\nexport function _limitValue(value: number, min: number, max: number) {\n return Math.max(min, Math.min(max, value));\n}\n\n/**\n * @param {number} value\n * @private\n */\nexport function _int16Range(value: number) {\n return _limitValue(value, -32768, 32767);\n}\n\n/**\n * @param value\n * @param start\n * @param end\n * @param [epsilon]\n * @private\n */\nexport function _isBetween(value: number, start: number, end: number, epsilon = 1e-6) {\n return value >= Math.min(start, end) - epsilon && value <= Math.max(start, end) + epsilon;\n}\n","import {_capitalize} from './helpers.core.js';\n\n/**\n * Binary search\n * @param table - the table search. must be sorted!\n * @param value - value to find\n * @param cmp\n * @private\n */\nexport function _lookup(\n table: number[],\n value: number,\n cmp?: (value: number) => boolean\n): {lo: number, hi: number};\nexport function _lookup(\n table: T[],\n value: number,\n cmp: (value: number) => boolean\n): {lo: number, hi: number};\nexport function _lookup(\n table: unknown[],\n value: number,\n cmp?: (value: number) => boolean\n) {\n cmp = cmp || ((index) => table[index] < value);\n let hi = table.length - 1;\n let lo = 0;\n let mid: number;\n\n while (hi - lo > 1) {\n mid = (lo + hi) >> 1;\n if (cmp(mid)) {\n lo = mid;\n } else {\n hi = mid;\n }\n }\n\n return {lo, hi};\n}\n\n/**\n * Binary search\n * @param table - the table search. must be sorted!\n * @param key - property name for the value in each entry\n * @param value - value to find\n * @param last - lookup last index\n * @private\n */\nexport const _lookupByKey = (\n table: Record[],\n key: string,\n value: number,\n last?: boolean\n) =>\n _lookup(table, value, last\n ? index => {\n const ti = table[index][key];\n return ti < value || ti === value && table[index + 1][key] === value;\n }\n : index => table[index][key] < value);\n\n/**\n * Reverse binary search\n * @param table - the table search. must be sorted!\n * @param key - property name for the value in each entry\n * @param value - value to find\n * @private\n */\nexport const _rlookupByKey = (\n table: Record[],\n key: string,\n value: number\n) =>\n _lookup(table, value, index => table[index][key] >= value);\n\n/**\n * Return subset of `values` between `min` and `max` inclusive.\n * Values are assumed to be in sorted order.\n * @param values - sorted array of values\n * @param min - min value\n * @param max - max value\n */\nexport function _filterBetween(values: number[], min: number, max: number) {\n let start = 0;\n let end = values.length;\n\n while (start < end && values[start] < min) {\n start++;\n }\n while (end > start && values[end - 1] > max) {\n end--;\n }\n\n return start > 0 || end < values.length\n ? values.slice(start, end)\n : values;\n}\n\nconst arrayEvents = ['push', 'pop', 'shift', 'splice', 'unshift'] as const;\n\nexport interface ArrayListener {\n _onDataPush?(...item: T[]): void;\n _onDataPop?(): void;\n _onDataShift?(): void;\n _onDataSplice?(index: number, deleteCount: number, ...items: T[]): void;\n _onDataUnshift?(...item: T[]): void;\n}\n\n/**\n * Hooks the array methods that add or remove values ('push', pop', 'shift', 'splice',\n * 'unshift') and notify the listener AFTER the array has been altered. Listeners are\n * called on the '_onData*' callbacks (e.g. _onDataPush, etc.) with same arguments.\n */\nexport function listenArrayEvents(array: T[], listener: ArrayListener): void;\nexport function listenArrayEvents(array, listener) {\n if (array._chartjs) {\n array._chartjs.listeners.push(listener);\n return;\n }\n\n Object.defineProperty(array, '_chartjs', {\n configurable: true,\n enumerable: false,\n value: {\n listeners: [listener]\n }\n });\n\n arrayEvents.forEach((key) => {\n const method = '_onData' + _capitalize(key);\n const base = array[key];\n\n Object.defineProperty(array, key, {\n configurable: true,\n enumerable: false,\n value(...args) {\n const res = base.apply(this, args);\n\n array._chartjs.listeners.forEach((object) => {\n if (typeof object[method] === 'function') {\n object[method](...args);\n }\n });\n\n return res;\n }\n });\n });\n}\n\n\n/**\n * Removes the given array event listener and cleanup extra attached properties (such as\n * the _chartjs stub and overridden methods) if array doesn't have any more listeners.\n */\nexport function unlistenArrayEvents(array: T[], listener: ArrayListener): void;\nexport function unlistenArrayEvents(array, listener) {\n const stub = array._chartjs;\n if (!stub) {\n return;\n }\n\n const listeners = stub.listeners;\n const index = listeners.indexOf(listener);\n if (index !== -1) {\n listeners.splice(index, 1);\n }\n\n if (listeners.length > 0) {\n return;\n }\n\n arrayEvents.forEach((key) => {\n delete array[key];\n });\n\n delete array._chartjs;\n}\n\n/**\n * @param items\n */\nexport function _arrayUnique(items: T[]) {\n const set = new Set();\n let i: number, ilen: number;\n\n for (i = 0, ilen = items.length; i < ilen; ++i) {\n set.add(items[i]);\n }\n\n if (set.size === ilen) {\n return items;\n }\n\n return Array.from(set);\n}\n","import type {ChartMeta, PointElement} from '../types/index.js';\n\nimport {_limitValue} from './helpers.math.js';\nimport {_lookupByKey} from './helpers.collection.js';\n\nexport function fontString(pixelSize: number, fontStyle: string, fontFamily: string) {\n return fontStyle + ' ' + pixelSize + 'px ' + fontFamily;\n}\n\n/**\n* Request animation polyfill\n*/\nexport const requestAnimFrame = (function() {\n if (typeof window === 'undefined') {\n return function(callback) {\n return callback();\n };\n }\n return window.requestAnimationFrame;\n}());\n\n/**\n * Throttles calling `fn` once per animation frame\n * Latest arguments are used on the actual call\n */\nexport function throttled>(\n fn: (...args: TArgs) => void,\n thisArg: any,\n) {\n let argsToUse = [] as TArgs;\n let ticking = false;\n\n return function(...args: TArgs) {\n // Save the args for use later\n argsToUse = args;\n if (!ticking) {\n ticking = true;\n requestAnimFrame.call(window, () => {\n ticking = false;\n fn.apply(thisArg, argsToUse);\n });\n }\n };\n}\n\n/**\n * Debounces calling `fn` for `delay` ms\n */\nexport function debounce>(fn: (...args: TArgs) => void, delay: number) {\n let timeout;\n return function(...args: TArgs) {\n if (delay) {\n clearTimeout(timeout);\n timeout = setTimeout(fn, delay, args);\n } else {\n fn.apply(this, args);\n }\n return delay;\n };\n}\n\n/**\n * Converts 'start' to 'left', 'end' to 'right' and others to 'center'\n * @private\n */\nexport const _toLeftRightCenter = (align: 'start' | 'end' | 'center') => align === 'start' ? 'left' : align === 'end' ? 'right' : 'center';\n\n/**\n * Returns `start`, `end` or `(start + end) / 2` depending on `align`. Defaults to `center`\n * @private\n */\nexport const _alignStartEnd = (align: 'start' | 'end' | 'center', start: number, end: number) => align === 'start' ? start : align === 'end' ? end : (start + end) / 2;\n\n/**\n * Returns `left`, `right` or `(left + right) / 2` depending on `align`. Defaults to `left`\n * @private\n */\nexport const _textX = (align: 'left' | 'right' | 'center', left: number, right: number, rtl: boolean) => {\n const check = rtl ? 'left' : 'right';\n return align === check ? right : align === 'center' ? (left + right) / 2 : left;\n};\n\n/**\n * Return start and count of visible points.\n * @private\n */\nexport function _getStartAndCountOfVisiblePoints(meta: ChartMeta<'line' | 'scatter'>, points: PointElement[], animationsDisabled: boolean) {\n const pointCount = points.length;\n\n let start = 0;\n let count = pointCount;\n\n if (meta._sorted) {\n const {iScale, _parsed} = meta;\n const axis = iScale.axis;\n const {min, max, minDefined, maxDefined} = iScale.getUserBounds();\n\n if (minDefined) {\n start = _limitValue(Math.min(\n // @ts-expect-error Need to type _parsed\n _lookupByKey(_parsed, iScale.axis, min).lo,\n // @ts-expect-error Need to fix types on _lookupByKey\n animationsDisabled ? pointCount : _lookupByKey(points, axis, iScale.getPixelForValue(min)).lo),\n 0, pointCount - 1);\n }\n if (maxDefined) {\n count = _limitValue(Math.max(\n // @ts-expect-error Need to type _parsed\n _lookupByKey(_parsed, iScale.axis, max, true).hi + 1,\n // @ts-expect-error Need to fix types on _lookupByKey\n animationsDisabled ? 0 : _lookupByKey(points, axis, iScale.getPixelForValue(max), true).hi + 1),\n start, pointCount) - start;\n } else {\n count = pointCount - start;\n }\n }\n\n return {start, count};\n}\n\n/**\n * Checks if the scale ranges have changed.\n * @param {object} meta - dataset meta.\n * @returns {boolean}\n * @private\n */\nexport function _scaleRangesChanged(meta) {\n const {xScale, yScale, _scaleRanges} = meta;\n const newRanges = {\n xmin: xScale.min,\n xmax: xScale.max,\n ymin: yScale.min,\n ymax: yScale.max\n };\n if (!_scaleRanges) {\n meta._scaleRanges = newRanges;\n return true;\n }\n const changed = _scaleRanges.xmin !== xScale.min\n\t\t|| _scaleRanges.xmax !== xScale.max\n\t\t|| _scaleRanges.ymin !== yScale.min\n\t\t|| _scaleRanges.ymax !== yScale.max;\n\n Object.assign(_scaleRanges, newRanges);\n return changed;\n}\n","import {requestAnimFrame} from '../helpers/helpers.extras.js';\n\n/**\n * @typedef { import('./core.animation.js').default } Animation\n * @typedef { import('./core.controller.js').default } Chart\n */\n\n/**\n * Please use the module's default export which provides a singleton instance\n * Note: class is export for typedoc\n */\nexport class Animator {\n constructor() {\n this._request = null;\n this._charts = new Map();\n this._running = false;\n this._lastDate = undefined;\n }\n\n /**\n\t * @private\n\t */\n _notify(chart, anims, date, type) {\n const callbacks = anims.listeners[type];\n const numSteps = anims.duration;\n\n callbacks.forEach(fn => fn({\n chart,\n initial: anims.initial,\n numSteps,\n currentStep: Math.min(date - anims.start, numSteps)\n }));\n }\n\n /**\n\t * @private\n\t */\n _refresh() {\n if (this._request) {\n return;\n }\n this._running = true;\n\n this._request = requestAnimFrame.call(window, () => {\n this._update();\n this._request = null;\n\n if (this._running) {\n this._refresh();\n }\n });\n }\n\n /**\n\t * @private\n\t */\n _update(date = Date.now()) {\n let remaining = 0;\n\n this._charts.forEach((anims, chart) => {\n if (!anims.running || !anims.items.length) {\n return;\n }\n const items = anims.items;\n let i = items.length - 1;\n let draw = false;\n let item;\n\n for (; i >= 0; --i) {\n item = items[i];\n\n if (item._active) {\n if (item._total > anims.duration) {\n // if the animation has been updated and its duration prolonged,\n // update to total duration of current animations run (for progress event)\n anims.duration = item._total;\n }\n item.tick(date);\n draw = true;\n } else {\n // Remove the item by replacing it with last item and removing the last\n // A lot faster than splice.\n items[i] = items[items.length - 1];\n items.pop();\n }\n }\n\n if (draw) {\n chart.draw();\n this._notify(chart, anims, date, 'progress');\n }\n\n if (!items.length) {\n anims.running = false;\n this._notify(chart, anims, date, 'complete');\n anims.initial = false;\n }\n\n remaining += items.length;\n });\n\n this._lastDate = date;\n\n if (remaining === 0) {\n this._running = false;\n }\n }\n\n /**\n\t * @private\n\t */\n _getAnims(chart) {\n const charts = this._charts;\n let anims = charts.get(chart);\n if (!anims) {\n anims = {\n running: false,\n initial: true,\n items: [],\n listeners: {\n complete: [],\n progress: []\n }\n };\n charts.set(chart, anims);\n }\n return anims;\n }\n\n /**\n\t * @param {Chart} chart\n\t * @param {string} event - event name\n\t * @param {Function} cb - callback\n\t */\n listen(chart, event, cb) {\n this._getAnims(chart).listeners[event].push(cb);\n }\n\n /**\n\t * Add animations\n\t * @param {Chart} chart\n\t * @param {Animation[]} items - animations\n\t */\n add(chart, items) {\n if (!items || !items.length) {\n return;\n }\n this._getAnims(chart).items.push(...items);\n }\n\n /**\n\t * Counts number of active animations for the chart\n\t * @param {Chart} chart\n\t */\n has(chart) {\n return this._getAnims(chart).items.length > 0;\n }\n\n /**\n\t * Start animating (all charts)\n\t * @param {Chart} chart\n\t */\n start(chart) {\n const anims = this._charts.get(chart);\n if (!anims) {\n return;\n }\n anims.running = true;\n anims.start = Date.now();\n anims.duration = anims.items.reduce((acc, cur) => Math.max(acc, cur._duration), 0);\n this._refresh();\n }\n\n running(chart) {\n if (!this._running) {\n return false;\n }\n const anims = this._charts.get(chart);\n if (!anims || !anims.running || !anims.items.length) {\n return false;\n }\n return true;\n }\n\n /**\n\t * Stop all animations for the chart\n\t * @param {Chart} chart\n\t */\n stop(chart) {\n const anims = this._charts.get(chart);\n if (!anims || !anims.items.length) {\n return;\n }\n const items = anims.items;\n let i = items.length - 1;\n\n for (; i >= 0; --i) {\n items[i].cancel();\n }\n anims.items = [];\n this._notify(chart, anims, Date.now(), 'complete');\n }\n\n /**\n\t * Remove chart from Animator\n\t * @param {Chart} chart\n\t */\n remove(chart) {\n return this._charts.delete(chart);\n }\n}\n\n// singleton instance\nexport default /* #__PURE__ */ new Animator();\n","/*!\n * @kurkle/color v0.3.0\n * https://github.com/kurkle/color#readme\n * (c) 2022 Jukka Kurkela\n * Released under the MIT License\n */\nfunction round(v) {\n return v + 0.5 | 0;\n}\nconst lim = (v, l, h) => Math.max(Math.min(v, h), l);\nfunction p2b(v) {\n return lim(round(v * 2.55), 0, 255);\n}\nfunction b2p(v) {\n return lim(round(v / 2.55), 0, 100);\n}\nfunction n2b(v) {\n return lim(round(v * 255), 0, 255);\n}\nfunction b2n(v) {\n return lim(round(v / 2.55) / 100, 0, 1);\n}\nfunction n2p(v) {\n return lim(round(v * 100), 0, 100);\n}\n\nconst map$1 = {0: 0, 1: 1, 2: 2, 3: 3, 4: 4, 5: 5, 6: 6, 7: 7, 8: 8, 9: 9, A: 10, B: 11, C: 12, D: 13, E: 14, F: 15, a: 10, b: 11, c: 12, d: 13, e: 14, f: 15};\nconst hex = [...'0123456789ABCDEF'];\nconst h1 = b => hex[b & 0xF];\nconst h2 = b => hex[(b & 0xF0) >> 4] + hex[b & 0xF];\nconst eq = b => ((b & 0xF0) >> 4) === (b & 0xF);\nconst isShort = v => eq(v.r) && eq(v.g) && eq(v.b) && eq(v.a);\nfunction hexParse(str) {\n var len = str.length;\n var ret;\n if (str[0] === '#') {\n if (len === 4 || len === 5) {\n ret = {\n r: 255 & map$1[str[1]] * 17,\n g: 255 & map$1[str[2]] * 17,\n b: 255 & map$1[str[3]] * 17,\n a: len === 5 ? map$1[str[4]] * 17 : 255\n };\n } else if (len === 7 || len === 9) {\n ret = {\n r: map$1[str[1]] << 4 | map$1[str[2]],\n g: map$1[str[3]] << 4 | map$1[str[4]],\n b: map$1[str[5]] << 4 | map$1[str[6]],\n a: len === 9 ? (map$1[str[7]] << 4 | map$1[str[8]]) : 255\n };\n }\n }\n return ret;\n}\nconst alpha = (a, f) => a < 255 ? f(a) : '';\nfunction hexString(v) {\n var f = isShort(v) ? h1 : h2;\n return v\n ? '#' + f(v.r) + f(v.g) + f(v.b) + alpha(v.a, f)\n : undefined;\n}\n\nconst HUE_RE = /^(hsla?|hwb|hsv)\\(\\s*([-+.e\\d]+)(?:deg)?[\\s,]+([-+.e\\d]+)%[\\s,]+([-+.e\\d]+)%(?:[\\s,]+([-+.e\\d]+)(%)?)?\\s*\\)$/;\nfunction hsl2rgbn(h, s, l) {\n const a = s * Math.min(l, 1 - l);\n const f = (n, k = (n + h / 30) % 12) => l - a * Math.max(Math.min(k - 3, 9 - k, 1), -1);\n return [f(0), f(8), f(4)];\n}\nfunction hsv2rgbn(h, s, v) {\n const f = (n, k = (n + h / 60) % 6) => v - v * s * Math.max(Math.min(k, 4 - k, 1), 0);\n return [f(5), f(3), f(1)];\n}\nfunction hwb2rgbn(h, w, b) {\n const rgb = hsl2rgbn(h, 1, 0.5);\n let i;\n if (w + b > 1) {\n i = 1 / (w + b);\n w *= i;\n b *= i;\n }\n for (i = 0; i < 3; i++) {\n rgb[i] *= 1 - w - b;\n rgb[i] += w;\n }\n return rgb;\n}\nfunction hueValue(r, g, b, d, max) {\n if (r === max) {\n return ((g - b) / d) + (g < b ? 6 : 0);\n }\n if (g === max) {\n return (b - r) / d + 2;\n }\n return (r - g) / d + 4;\n}\nfunction rgb2hsl(v) {\n const range = 255;\n const r = v.r / range;\n const g = v.g / range;\n const b = v.b / range;\n const max = Math.max(r, g, b);\n const min = Math.min(r, g, b);\n const l = (max + min) / 2;\n let h, s, d;\n if (max !== min) {\n d = max - min;\n s = l > 0.5 ? d / (2 - max - min) : d / (max + min);\n h = hueValue(r, g, b, d, max);\n h = h * 60 + 0.5;\n }\n return [h | 0, s || 0, l];\n}\nfunction calln(f, a, b, c) {\n return (\n Array.isArray(a)\n ? f(a[0], a[1], a[2])\n : f(a, b, c)\n ).map(n2b);\n}\nfunction hsl2rgb(h, s, l) {\n return calln(hsl2rgbn, h, s, l);\n}\nfunction hwb2rgb(h, w, b) {\n return calln(hwb2rgbn, h, w, b);\n}\nfunction hsv2rgb(h, s, v) {\n return calln(hsv2rgbn, h, s, v);\n}\nfunction hue(h) {\n return (h % 360 + 360) % 360;\n}\nfunction hueParse(str) {\n const m = HUE_RE.exec(str);\n let a = 255;\n let v;\n if (!m) {\n return;\n }\n if (m[5] !== v) {\n a = m[6] ? p2b(+m[5]) : n2b(+m[5]);\n }\n const h = hue(+m[2]);\n const p1 = +m[3] / 100;\n const p2 = +m[4] / 100;\n if (m[1] === 'hwb') {\n v = hwb2rgb(h, p1, p2);\n } else if (m[1] === 'hsv') {\n v = hsv2rgb(h, p1, p2);\n } else {\n v = hsl2rgb(h, p1, p2);\n }\n return {\n r: v[0],\n g: v[1],\n b: v[2],\n a: a\n };\n}\nfunction rotate(v, deg) {\n var h = rgb2hsl(v);\n h[0] = hue(h[0] + deg);\n h = hsl2rgb(h);\n v.r = h[0];\n v.g = h[1];\n v.b = h[2];\n}\nfunction hslString(v) {\n if (!v) {\n return;\n }\n const a = rgb2hsl(v);\n const h = a[0];\n const s = n2p(a[1]);\n const l = n2p(a[2]);\n return v.a < 255\n ? `hsla(${h}, ${s}%, ${l}%, ${b2n(v.a)})`\n : `hsl(${h}, ${s}%, ${l}%)`;\n}\n\nconst map = {\n x: 'dark',\n Z: 'light',\n Y: 're',\n X: 'blu',\n W: 'gr',\n V: 'medium',\n U: 'slate',\n A: 'ee',\n T: 'ol',\n S: 'or',\n B: 'ra',\n C: 'lateg',\n D: 'ights',\n R: 'in',\n Q: 'turquois',\n E: 'hi',\n P: 'ro',\n O: 'al',\n N: 'le',\n M: 'de',\n L: 'yello',\n F: 'en',\n K: 'ch',\n G: 'arks',\n H: 'ea',\n I: 'ightg',\n J: 'wh'\n};\nconst names$1 = {\n OiceXe: 'f0f8ff',\n antiquewEte: 'faebd7',\n aqua: 'ffff',\n aquamarRe: '7fffd4',\n azuY: 'f0ffff',\n beige: 'f5f5dc',\n bisque: 'ffe4c4',\n black: '0',\n blanKedOmond: 'ffebcd',\n Xe: 'ff',\n XeviTet: '8a2be2',\n bPwn: 'a52a2a',\n burlywood: 'deb887',\n caMtXe: '5f9ea0',\n KartYuse: '7fff00',\n KocTate: 'd2691e',\n cSO: 'ff7f50',\n cSnflowerXe: '6495ed',\n cSnsilk: 'fff8dc',\n crimson: 'dc143c',\n cyan: 'ffff',\n xXe: '8b',\n xcyan: '8b8b',\n xgTMnPd: 'b8860b',\n xWay: 'a9a9a9',\n xgYF: '6400',\n xgYy: 'a9a9a9',\n xkhaki: 'bdb76b',\n xmagFta: '8b008b',\n xTivegYF: '556b2f',\n xSange: 'ff8c00',\n xScEd: '9932cc',\n xYd: '8b0000',\n xsOmon: 'e9967a',\n xsHgYF: '8fbc8f',\n xUXe: '483d8b',\n xUWay: '2f4f4f',\n xUgYy: '2f4f4f',\n xQe: 'ced1',\n xviTet: '9400d3',\n dAppRk: 'ff1493',\n dApskyXe: 'bfff',\n dimWay: '696969',\n dimgYy: '696969',\n dodgerXe: '1e90ff',\n fiYbrick: 'b22222',\n flSOwEte: 'fffaf0',\n foYstWAn: '228b22',\n fuKsia: 'ff00ff',\n gaRsbSo: 'dcdcdc',\n ghostwEte: 'f8f8ff',\n gTd: 'ffd700',\n gTMnPd: 'daa520',\n Way: '808080',\n gYF: '8000',\n gYFLw: 'adff2f',\n gYy: '808080',\n honeyMw: 'f0fff0',\n hotpRk: 'ff69b4',\n RdianYd: 'cd5c5c',\n Rdigo: '4b0082',\n ivSy: 'fffff0',\n khaki: 'f0e68c',\n lavFMr: 'e6e6fa',\n lavFMrXsh: 'fff0f5',\n lawngYF: '7cfc00',\n NmoncEffon: 'fffacd',\n ZXe: 'add8e6',\n ZcSO: 'f08080',\n Zcyan: 'e0ffff',\n ZgTMnPdLw: 'fafad2',\n ZWay: 'd3d3d3',\n ZgYF: '90ee90',\n ZgYy: 'd3d3d3',\n ZpRk: 'ffb6c1',\n ZsOmon: 'ffa07a',\n ZsHgYF: '20b2aa',\n ZskyXe: '87cefa',\n ZUWay: '778899',\n ZUgYy: '778899',\n ZstAlXe: 'b0c4de',\n ZLw: 'ffffe0',\n lime: 'ff00',\n limegYF: '32cd32',\n lRF: 'faf0e6',\n magFta: 'ff00ff',\n maPon: '800000',\n VaquamarRe: '66cdaa',\n VXe: 'cd',\n VScEd: 'ba55d3',\n VpurpN: '9370db',\n VsHgYF: '3cb371',\n VUXe: '7b68ee',\n VsprRggYF: 'fa9a',\n VQe: '48d1cc',\n VviTetYd: 'c71585',\n midnightXe: '191970',\n mRtcYam: 'f5fffa',\n mistyPse: 'ffe4e1',\n moccasR: 'ffe4b5',\n navajowEte: 'ffdead',\n navy: '80',\n Tdlace: 'fdf5e6',\n Tive: '808000',\n TivedBb: '6b8e23',\n Sange: 'ffa500',\n SangeYd: 'ff4500',\n ScEd: 'da70d6',\n pOegTMnPd: 'eee8aa',\n pOegYF: '98fb98',\n pOeQe: 'afeeee',\n pOeviTetYd: 'db7093',\n papayawEp: 'ffefd5',\n pHKpuff: 'ffdab9',\n peru: 'cd853f',\n pRk: 'ffc0cb',\n plum: 'dda0dd',\n powMrXe: 'b0e0e6',\n purpN: '800080',\n YbeccapurpN: '663399',\n Yd: 'ff0000',\n Psybrown: 'bc8f8f',\n PyOXe: '4169e1',\n saddNbPwn: '8b4513',\n sOmon: 'fa8072',\n sandybPwn: 'f4a460',\n sHgYF: '2e8b57',\n sHshell: 'fff5ee',\n siFna: 'a0522d',\n silver: 'c0c0c0',\n skyXe: '87ceeb',\n UXe: '6a5acd',\n UWay: '708090',\n UgYy: '708090',\n snow: 'fffafa',\n sprRggYF: 'ff7f',\n stAlXe: '4682b4',\n tan: 'd2b48c',\n teO: '8080',\n tEstN: 'd8bfd8',\n tomato: 'ff6347',\n Qe: '40e0d0',\n viTet: 'ee82ee',\n JHt: 'f5deb3',\n wEte: 'ffffff',\n wEtesmoke: 'f5f5f5',\n Lw: 'ffff00',\n LwgYF: '9acd32'\n};\nfunction unpack() {\n const unpacked = {};\n const keys = Object.keys(names$1);\n const tkeys = Object.keys(map);\n let i, j, k, ok, nk;\n for (i = 0; i < keys.length; i++) {\n ok = nk = keys[i];\n for (j = 0; j < tkeys.length; j++) {\n k = tkeys[j];\n nk = nk.replace(k, map[k]);\n }\n k = parseInt(names$1[ok], 16);\n unpacked[nk] = [k >> 16 & 0xFF, k >> 8 & 0xFF, k & 0xFF];\n }\n return unpacked;\n}\n\nlet names;\nfunction nameParse(str) {\n if (!names) {\n names = unpack();\n names.transparent = [0, 0, 0, 0];\n }\n const a = names[str.toLowerCase()];\n return a && {\n r: a[0],\n g: a[1],\n b: a[2],\n a: a.length === 4 ? a[3] : 255\n };\n}\n\nconst RGB_RE = /^rgba?\\(\\s*([-+.\\d]+)(%)?[\\s,]+([-+.e\\d]+)(%)?[\\s,]+([-+.e\\d]+)(%)?(?:[\\s,/]+([-+.e\\d]+)(%)?)?\\s*\\)$/;\nfunction rgbParse(str) {\n const m = RGB_RE.exec(str);\n let a = 255;\n let r, g, b;\n if (!m) {\n return;\n }\n if (m[7] !== r) {\n const v = +m[7];\n a = m[8] ? p2b(v) : lim(v * 255, 0, 255);\n }\n r = +m[1];\n g = +m[3];\n b = +m[5];\n r = 255 & (m[2] ? p2b(r) : lim(r, 0, 255));\n g = 255 & (m[4] ? p2b(g) : lim(g, 0, 255));\n b = 255 & (m[6] ? p2b(b) : lim(b, 0, 255));\n return {\n r: r,\n g: g,\n b: b,\n a: a\n };\n}\nfunction rgbString(v) {\n return v && (\n v.a < 255\n ? `rgba(${v.r}, ${v.g}, ${v.b}, ${b2n(v.a)})`\n : `rgb(${v.r}, ${v.g}, ${v.b})`\n );\n}\n\nconst to = v => v <= 0.0031308 ? v * 12.92 : Math.pow(v, 1.0 / 2.4) * 1.055 - 0.055;\nconst from = v => v <= 0.04045 ? v / 12.92 : Math.pow((v + 0.055) / 1.055, 2.4);\nfunction interpolate(rgb1, rgb2, t) {\n const r = from(b2n(rgb1.r));\n const g = from(b2n(rgb1.g));\n const b = from(b2n(rgb1.b));\n return {\n r: n2b(to(r + t * (from(b2n(rgb2.r)) - r))),\n g: n2b(to(g + t * (from(b2n(rgb2.g)) - g))),\n b: n2b(to(b + t * (from(b2n(rgb2.b)) - b))),\n a: rgb1.a + t * (rgb2.a - rgb1.a)\n };\n}\n\nfunction modHSL(v, i, ratio) {\n if (v) {\n let tmp = rgb2hsl(v);\n tmp[i] = Math.max(0, Math.min(tmp[i] + tmp[i] * ratio, i === 0 ? 360 : 1));\n tmp = hsl2rgb(tmp);\n v.r = tmp[0];\n v.g = tmp[1];\n v.b = tmp[2];\n }\n}\nfunction clone(v, proto) {\n return v ? Object.assign(proto || {}, v) : v;\n}\nfunction fromObject(input) {\n var v = {r: 0, g: 0, b: 0, a: 255};\n if (Array.isArray(input)) {\n if (input.length >= 3) {\n v = {r: input[0], g: input[1], b: input[2], a: 255};\n if (input.length > 3) {\n v.a = n2b(input[3]);\n }\n }\n } else {\n v = clone(input, {r: 0, g: 0, b: 0, a: 1});\n v.a = n2b(v.a);\n }\n return v;\n}\nfunction functionParse(str) {\n if (str.charAt(0) === 'r') {\n return rgbParse(str);\n }\n return hueParse(str);\n}\nclass Color {\n constructor(input) {\n if (input instanceof Color) {\n return input;\n }\n const type = typeof input;\n let v;\n if (type === 'object') {\n v = fromObject(input);\n } else if (type === 'string') {\n v = hexParse(input) || nameParse(input) || functionParse(input);\n }\n this._rgb = v;\n this._valid = !!v;\n }\n get valid() {\n return this._valid;\n }\n get rgb() {\n var v = clone(this._rgb);\n if (v) {\n v.a = b2n(v.a);\n }\n return v;\n }\n set rgb(obj) {\n this._rgb = fromObject(obj);\n }\n rgbString() {\n return this._valid ? rgbString(this._rgb) : undefined;\n }\n hexString() {\n return this._valid ? hexString(this._rgb) : undefined;\n }\n hslString() {\n return this._valid ? hslString(this._rgb) : undefined;\n }\n mix(color, weight) {\n if (color) {\n const c1 = this.rgb;\n const c2 = color.rgb;\n let w2;\n const p = weight === w2 ? 0.5 : weight;\n const w = 2 * p - 1;\n const a = c1.a - c2.a;\n const w1 = ((w * a === -1 ? w : (w + a) / (1 + w * a)) + 1) / 2.0;\n w2 = 1 - w1;\n c1.r = 0xFF & w1 * c1.r + w2 * c2.r + 0.5;\n c1.g = 0xFF & w1 * c1.g + w2 * c2.g + 0.5;\n c1.b = 0xFF & w1 * c1.b + w2 * c2.b + 0.5;\n c1.a = p * c1.a + (1 - p) * c2.a;\n this.rgb = c1;\n }\n return this;\n }\n interpolate(color, t) {\n if (color) {\n this._rgb = interpolate(this._rgb, color._rgb, t);\n }\n return this;\n }\n clone() {\n return new Color(this.rgb);\n }\n alpha(a) {\n this._rgb.a = n2b(a);\n return this;\n }\n clearer(ratio) {\n const rgb = this._rgb;\n rgb.a *= 1 - ratio;\n return this;\n }\n greyscale() {\n const rgb = this._rgb;\n const val = round(rgb.r * 0.3 + rgb.g * 0.59 + rgb.b * 0.11);\n rgb.r = rgb.g = rgb.b = val;\n return this;\n }\n opaquer(ratio) {\n const rgb = this._rgb;\n rgb.a *= 1 + ratio;\n return this;\n }\n negate() {\n const v = this._rgb;\n v.r = 255 - v.r;\n v.g = 255 - v.g;\n v.b = 255 - v.b;\n return this;\n }\n lighten(ratio) {\n modHSL(this._rgb, 2, ratio);\n return this;\n }\n darken(ratio) {\n modHSL(this._rgb, 2, -ratio);\n return this;\n }\n saturate(ratio) {\n modHSL(this._rgb, 1, ratio);\n return this;\n }\n desaturate(ratio) {\n modHSL(this._rgb, 1, -ratio);\n return this;\n }\n rotate(deg) {\n rotate(this._rgb, deg);\n return this;\n }\n}\n\nfunction index_esm(input) {\n return new Color(input);\n}\n\nexport { Color, b2n, b2p, index_esm as default, hexParse, hexString, hsl2rgb, hslString, hsv2rgb, hueParse, hwb2rgb, lim, n2b, n2p, nameParse, p2b, rgb2hsl, rgbParse, rgbString, rotate, round };\n","import {Color} from '@kurkle/color';\n\nexport function isPatternOrGradient(value: unknown): value is CanvasPattern | CanvasGradient {\n if (value && typeof value === 'object') {\n const type = value.toString();\n return type === '[object CanvasPattern]' || type === '[object CanvasGradient]';\n }\n\n return false;\n}\n\nexport function color(value: CanvasGradient): CanvasGradient;\nexport function color(value: CanvasPattern): CanvasPattern;\nexport function color(\n value:\n | string\n | { r: number; g: number; b: number; a: number }\n | [number, number, number]\n | [number, number, number, number]\n): Color;\nexport function color(value) {\n return isPatternOrGradient(value) ? value : new Color(value);\n}\n\nexport function getHoverColor(value: CanvasGradient): CanvasGradient;\nexport function getHoverColor(value: CanvasPattern): CanvasPattern;\nexport function getHoverColor(value: string): string;\nexport function getHoverColor(value) {\n return isPatternOrGradient(value)\n ? value\n : new Color(value).saturate(0.5).darken(0.1).hexString();\n}\n","const numbers = ['x', 'y', 'borderWidth', 'radius', 'tension'];\nconst colors = ['color', 'borderColor', 'backgroundColor'];\n\nexport function applyAnimationsDefaults(defaults) {\n defaults.set('animation', {\n delay: undefined,\n duration: 1000,\n easing: 'easeOutQuart',\n fn: undefined,\n from: undefined,\n loop: undefined,\n to: undefined,\n type: undefined,\n });\n\n defaults.describe('animation', {\n _fallback: false,\n _indexable: false,\n _scriptable: (name) => name !== 'onProgress' && name !== 'onComplete' && name !== 'fn',\n });\n\n defaults.set('animations', {\n colors: {\n type: 'color',\n properties: colors\n },\n numbers: {\n type: 'number',\n properties: numbers\n },\n });\n\n defaults.describe('animations', {\n _fallback: 'animation',\n });\n\n defaults.set('transitions', {\n active: {\n animation: {\n duration: 400\n }\n },\n resize: {\n animation: {\n duration: 0\n }\n },\n show: {\n animations: {\n colors: {\n from: 'transparent'\n },\n visible: {\n type: 'boolean',\n duration: 0 // show immediately\n },\n }\n },\n hide: {\n animations: {\n colors: {\n to: 'transparent'\n },\n visible: {\n type: 'boolean',\n easing: 'linear',\n fn: v => v | 0 // for keeping the dataset visible all the way through the animation\n },\n }\n }\n });\n}\n","\nconst intlCache = new Map();\n\nfunction getNumberFormat(locale: string, options?: Intl.NumberFormatOptions) {\n options = options || {};\n const cacheKey = locale + JSON.stringify(options);\n let formatter = intlCache.get(cacheKey);\n if (!formatter) {\n formatter = new Intl.NumberFormat(locale, options);\n intlCache.set(cacheKey, formatter);\n }\n return formatter;\n}\n\nexport function formatNumber(num: number, locale: string, options?: Intl.NumberFormatOptions) {\n return getNumberFormat(locale, options).format(num);\n}\n","import {isArray} from '../helpers/helpers.core.js';\nimport {formatNumber} from '../helpers/helpers.intl.js';\nimport {log10} from '../helpers/helpers.math.js';\n\n/**\n * Namespace to hold formatters for different types of ticks\n * @namespace Chart.Ticks.formatters\n */\nconst formatters = {\n /**\n * Formatter for value labels\n * @method Chart.Ticks.formatters.values\n * @param value the value to display\n * @return {string|string[]} the label to display\n */\n values(value) {\n return isArray(value) ? /** @type {string[]} */ (value) : '' + value;\n },\n\n /**\n * Formatter for numeric ticks\n * @method Chart.Ticks.formatters.numeric\n * @param tickValue {number} the value to be formatted\n * @param index {number} the position of the tickValue parameter in the ticks array\n * @param ticks {object[]} the list of ticks being converted\n * @return {string} string representation of the tickValue parameter\n */\n numeric(tickValue, index, ticks) {\n if (tickValue === 0) {\n return '0'; // never show decimal places for 0\n }\n\n const locale = this.chart.options.locale;\n let notation;\n let delta = tickValue; // This is used when there are less than 2 ticks as the tick interval.\n\n if (ticks.length > 1) {\n // all ticks are small or there huge numbers; use scientific notation\n const maxTick = Math.max(Math.abs(ticks[0].value), Math.abs(ticks[ticks.length - 1].value));\n if (maxTick < 1e-4 || maxTick > 1e+15) {\n notation = 'scientific';\n }\n\n delta = calculateDelta(tickValue, ticks);\n }\n\n const logDelta = log10(Math.abs(delta));\n const numDecimal = Math.max(Math.min(-1 * Math.floor(logDelta), 20), 0); // toFixed has a max of 20 decimal places\n\n const options = {notation, minimumFractionDigits: numDecimal, maximumFractionDigits: numDecimal};\n Object.assign(options, this.options.ticks.format);\n\n return formatNumber(tickValue, locale, options);\n },\n\n\n /**\n * Formatter for logarithmic ticks\n * @method Chart.Ticks.formatters.logarithmic\n * @param tickValue {number} the value to be formatted\n * @param index {number} the position of the tickValue parameter in the ticks array\n * @param ticks {object[]} the list of ticks being converted\n * @return {string} string representation of the tickValue parameter\n */\n logarithmic(tickValue, index, ticks) {\n if (tickValue === 0) {\n return '0';\n }\n const remain = ticks[index].significand || (tickValue / (Math.pow(10, Math.floor(log10(tickValue)))));\n if ([1, 2, 3, 5, 10, 15].includes(remain) || index > 0.8 * ticks.length) {\n return formatters.numeric.call(this, tickValue, index, ticks);\n }\n return '';\n }\n\n};\n\n\nfunction calculateDelta(tickValue, ticks) {\n // Figure out how many digits to show\n // The space between the first two ticks might be smaller than normal spacing\n let delta = ticks.length > 3 ? ticks[2].value - ticks[1].value : ticks[1].value - ticks[0].value;\n\n // If we have a number like 2.5 as the delta, figure out how many decimal places we need\n if (Math.abs(delta) >= 1 && tickValue !== Math.floor(tickValue)) {\n // not an integer\n delta = tickValue - Math.floor(tickValue);\n }\n return delta;\n}\n\n/**\n * Namespace to hold static tick generation functions\n * @namespace Chart.Ticks\n */\nexport default {formatters};\n","import {getHoverColor} from '../helpers/helpers.color.js';\nimport {isObject, merge, valueOrDefault} from '../helpers/helpers.core.js';\nimport {applyAnimationsDefaults} from './core.animations.defaults.js';\nimport {applyLayoutsDefaults} from './core.layouts.defaults.js';\nimport {applyScaleDefaults} from './core.scale.defaults.js';\n\nexport const overrides = Object.create(null);\nexport const descriptors = Object.create(null);\n\n/**\n * @param {object} node\n * @param {string} key\n * @return {object}\n */\nfunction getScope(node, key) {\n if (!key) {\n return node;\n }\n const keys = key.split('.');\n for (let i = 0, n = keys.length; i < n; ++i) {\n const k = keys[i];\n node = node[k] || (node[k] = Object.create(null));\n }\n return node;\n}\n\nfunction set(root, scope, values) {\n if (typeof scope === 'string') {\n return merge(getScope(root, scope), values);\n }\n return merge(getScope(root, ''), scope);\n}\n\n/**\n * Please use the module's default export which provides a singleton instance\n * Note: class is exported for typedoc\n */\nexport class Defaults {\n constructor(_descriptors, _appliers) {\n this.animation = undefined;\n this.backgroundColor = 'rgba(0,0,0,0.1)';\n this.borderColor = 'rgba(0,0,0,0.1)';\n this.color = '#666';\n this.datasets = {};\n this.devicePixelRatio = (context) => context.chart.platform.getDevicePixelRatio();\n this.elements = {};\n this.events = [\n 'mousemove',\n 'mouseout',\n 'click',\n 'touchstart',\n 'touchmove'\n ];\n this.font = {\n family: \"'Helvetica Neue', 'Helvetica', 'Arial', sans-serif\",\n size: 12,\n style: 'normal',\n lineHeight: 1.2,\n weight: null\n };\n this.hover = {};\n this.hoverBackgroundColor = (ctx, options) => getHoverColor(options.backgroundColor);\n this.hoverBorderColor = (ctx, options) => getHoverColor(options.borderColor);\n this.hoverColor = (ctx, options) => getHoverColor(options.color);\n this.indexAxis = 'x';\n this.interaction = {\n mode: 'nearest',\n intersect: true,\n includeInvisible: false\n };\n this.maintainAspectRatio = true;\n this.onHover = null;\n this.onClick = null;\n this.parsing = true;\n this.plugins = {};\n this.responsive = true;\n this.scale = undefined;\n this.scales = {};\n this.showLine = true;\n this.drawActiveElementsOnTop = true;\n\n this.describe(_descriptors);\n this.apply(_appliers);\n }\n\n /**\n\t * @param {string|object} scope\n\t * @param {object} [values]\n\t */\n set(scope, values) {\n return set(this, scope, values);\n }\n\n /**\n\t * @param {string} scope\n\t */\n get(scope) {\n return getScope(this, scope);\n }\n\n /**\n\t * @param {string|object} scope\n\t * @param {object} [values]\n\t */\n describe(scope, values) {\n return set(descriptors, scope, values);\n }\n\n override(scope, values) {\n return set(overrides, scope, values);\n }\n\n /**\n\t * Routes the named defaults to fallback to another scope/name.\n\t * This routing is useful when those target values, like defaults.color, are changed runtime.\n\t * If the values would be copied, the runtime change would not take effect. By routing, the\n\t * fallback is evaluated at each access, so its always up to date.\n\t *\n\t * Example:\n\t *\n\t * \tdefaults.route('elements.arc', 'backgroundColor', '', 'color')\n\t * - reads the backgroundColor from defaults.color when undefined locally\n\t *\n\t * @param {string} scope Scope this route applies to.\n\t * @param {string} name Property name that should be routed to different namespace when not defined here.\n\t * @param {string} targetScope The namespace where those properties should be routed to.\n\t * Empty string ('') is the root of defaults.\n\t * @param {string} targetName The target name in the target scope the property should be routed to.\n\t */\n route(scope, name, targetScope, targetName) {\n const scopeObject = getScope(this, scope);\n const targetScopeObject = getScope(this, targetScope);\n const privateName = '_' + name;\n\n Object.defineProperties(scopeObject, {\n // A private property is defined to hold the actual value, when this property is set in its scope (set in the setter)\n [privateName]: {\n value: scopeObject[name],\n writable: true\n },\n // The actual property is defined as getter/setter so we can do the routing when value is not locally set.\n [name]: {\n enumerable: true,\n get() {\n const local = this[privateName];\n const target = targetScopeObject[targetName];\n if (isObject(local)) {\n return Object.assign({}, target, local);\n }\n return valueOrDefault(local, target);\n },\n set(value) {\n this[privateName] = value;\n }\n }\n });\n }\n\n apply(appliers) {\n appliers.forEach((apply) => apply(this));\n }\n}\n\n// singleton instance\nexport default /* #__PURE__ */ new Defaults({\n _scriptable: (name) => !name.startsWith('on'),\n _indexable: (name) => name !== 'events',\n hover: {\n _fallback: 'interaction'\n },\n interaction: {\n _scriptable: false,\n _indexable: false,\n }\n}, [applyAnimationsDefaults, applyLayoutsDefaults, applyScaleDefaults]);\n","export function applyLayoutsDefaults(defaults) {\n defaults.set('layout', {\n autoPadding: true,\n padding: {\n top: 0,\n right: 0,\n bottom: 0,\n left: 0\n }\n });\n}\n","import Ticks from './core.ticks.js';\n\nexport function applyScaleDefaults(defaults) {\n defaults.set('scale', {\n display: true,\n offset: false,\n reverse: false,\n beginAtZero: false,\n\n /**\n * Scale boundary strategy (bypassed by min/max time options)\n * - `data`: make sure data are fully visible, ticks outside are removed\n * - `ticks`: make sure ticks are fully visible, data outside are truncated\n * @see https://github.com/chartjs/Chart.js/pull/4556\n * @since 3.0.0\n */\n bounds: 'ticks',\n\n /**\n * Addition grace added to max and reduced from min data value.\n * @since 3.0.0\n */\n grace: 0,\n\n // grid line settings\n grid: {\n display: true,\n lineWidth: 1,\n drawOnChartArea: true,\n drawTicks: true,\n tickLength: 8,\n tickWidth: (_ctx, options) => options.lineWidth,\n tickColor: (_ctx, options) => options.color,\n offset: false,\n },\n\n border: {\n display: true,\n dash: [],\n dashOffset: 0.0,\n width: 1\n },\n\n // scale title\n title: {\n // display property\n display: false,\n\n // actual label\n text: '',\n\n // top/bottom padding\n padding: {\n top: 4,\n bottom: 4\n }\n },\n\n // label settings\n ticks: {\n minRotation: 0,\n maxRotation: 50,\n mirror: false,\n textStrokeWidth: 0,\n textStrokeColor: '',\n padding: 3,\n display: true,\n autoSkip: true,\n autoSkipPadding: 3,\n labelOffset: 0,\n // We pass through arrays to be rendered as multiline labels, we convert Others to strings here.\n callback: Ticks.formatters.values,\n minor: {},\n major: {},\n align: 'center',\n crossAlign: 'near',\n\n showLabelBackdrop: false,\n backdropColor: 'rgba(255, 255, 255, 0.75)',\n backdropPadding: 2,\n }\n });\n\n defaults.route('scale.ticks', 'color', '', 'color');\n defaults.route('scale.grid', 'color', '', 'borderColor');\n defaults.route('scale.border', 'color', '', 'borderColor');\n defaults.route('scale.title', 'color', '', 'color');\n\n defaults.describe('scale', {\n _fallback: false,\n _scriptable: (name) => !name.startsWith('before') && !name.startsWith('after') && name !== 'callback' && name !== 'parser',\n _indexable: (name) => name !== 'borderDash' && name !== 'tickBorderDash' && name !== 'dash',\n });\n\n defaults.describe('scales', {\n _fallback: 'scale',\n });\n\n defaults.describe('scale.ticks', {\n _scriptable: (name) => name !== 'backdropPadding' && name !== 'callback',\n _indexable: (name) => name !== 'backdropPadding',\n });\n}\n","import type {ChartArea, Scale} from '../types/index.js';\nimport type Chart from '../core/core.controller.js';\nimport type {ChartEvent} from '../types.js';\nimport {INFINITY} from './helpers.math.js';\n\n/**\n * Note: typedefs are auto-exported, so use a made-up `dom` namespace where\n * necessary to avoid duplicates with `export * from './helpers`; see\n * https://github.com/microsoft/TypeScript/issues/46011\n * @typedef { import('../core/core.controller.js').default } dom.Chart\n * @typedef { import('../../types').ChartEvent } ChartEvent\n */\n\n/**\n * @private\n */\nexport function _isDomSupported(): boolean {\n return typeof window !== 'undefined' && typeof document !== 'undefined';\n}\n\n/**\n * @private\n */\nexport function _getParentNode(domNode: HTMLCanvasElement): HTMLCanvasElement {\n let parent = domNode.parentNode;\n if (parent && parent.toString() === '[object ShadowRoot]') {\n parent = (parent as ShadowRoot).host;\n }\n return parent as HTMLCanvasElement;\n}\n\n/**\n * convert max-width/max-height values that may be percentages into a number\n * @private\n */\n\nfunction parseMaxStyle(styleValue: string | number, node: HTMLElement, parentProperty: string) {\n let valueInPixels: number;\n if (typeof styleValue === 'string') {\n valueInPixels = parseInt(styleValue, 10);\n\n if (styleValue.indexOf('%') !== -1) {\n // percentage * size in dimension\n valueInPixels = (valueInPixels / 100) * node.parentNode[parentProperty];\n }\n } else {\n valueInPixels = styleValue;\n }\n\n return valueInPixels;\n}\n\nconst getComputedStyle = (element: HTMLElement): CSSStyleDeclaration =>\n element.ownerDocument.defaultView.getComputedStyle(element, null);\n\nexport function getStyle(el: HTMLElement, property: string): string {\n return getComputedStyle(el).getPropertyValue(property);\n}\n\nconst positions = ['top', 'right', 'bottom', 'left'];\nfunction getPositionedStyle(styles: CSSStyleDeclaration, style: string, suffix?: string): ChartArea {\n const result = {} as ChartArea;\n suffix = suffix ? '-' + suffix : '';\n for (let i = 0; i < 4; i++) {\n const pos = positions[i];\n result[pos] = parseFloat(styles[style + '-' + pos + suffix]) || 0;\n }\n result.width = result.left + result.right;\n result.height = result.top + result.bottom;\n return result;\n}\n\nconst useOffsetPos = (x: number, y: number, target: HTMLElement | EventTarget) =>\n (x > 0 || y > 0) && (!target || !(target as HTMLElement).shadowRoot);\n\n/**\n * @param e\n * @param canvas\n * @returns Canvas position\n */\nfunction getCanvasPosition(\n e: Event | TouchEvent | MouseEvent,\n canvas: HTMLCanvasElement\n): {\n x: number;\n y: number;\n box: boolean;\n } {\n const touches = (e as TouchEvent).touches;\n const source = (touches && touches.length ? touches[0] : e) as MouseEvent;\n const {offsetX, offsetY} = source as MouseEvent;\n let box = false;\n let x, y;\n if (useOffsetPos(offsetX, offsetY, e.target)) {\n x = offsetX;\n y = offsetY;\n } else {\n const rect = canvas.getBoundingClientRect();\n x = source.clientX - rect.left;\n y = source.clientY - rect.top;\n box = true;\n }\n return {x, y, box};\n}\n\n/**\n * Gets an event's x, y coordinates, relative to the chart area\n * @param event\n * @param chart\n * @returns x and y coordinates of the event\n */\n\nexport function getRelativePosition(\n event: Event | ChartEvent | TouchEvent | MouseEvent,\n chart: Chart\n): { x: number; y: number } {\n if ('native' in event) {\n return event;\n }\n\n const {canvas, currentDevicePixelRatio} = chart;\n const style = getComputedStyle(canvas);\n const borderBox = style.boxSizing === 'border-box';\n const paddings = getPositionedStyle(style, 'padding');\n const borders = getPositionedStyle(style, 'border', 'width');\n const {x, y, box} = getCanvasPosition(event, canvas);\n const xOffset = paddings.left + (box && borders.left);\n const yOffset = paddings.top + (box && borders.top);\n\n let {width, height} = chart;\n if (borderBox) {\n width -= paddings.width + borders.width;\n height -= paddings.height + borders.height;\n }\n return {\n x: Math.round((x - xOffset) / width * canvas.width / currentDevicePixelRatio),\n y: Math.round((y - yOffset) / height * canvas.height / currentDevicePixelRatio)\n };\n}\n\nfunction getContainerSize(canvas: HTMLCanvasElement, width: number, height: number): Partial {\n let maxWidth: number, maxHeight: number;\n\n if (width === undefined || height === undefined) {\n const container = _getParentNode(canvas);\n if (!container) {\n width = canvas.clientWidth;\n height = canvas.clientHeight;\n } else {\n const rect = container.getBoundingClientRect(); // this is the border box of the container\n const containerStyle = getComputedStyle(container);\n const containerBorder = getPositionedStyle(containerStyle, 'border', 'width');\n const containerPadding = getPositionedStyle(containerStyle, 'padding');\n width = rect.width - containerPadding.width - containerBorder.width;\n height = rect.height - containerPadding.height - containerBorder.height;\n maxWidth = parseMaxStyle(containerStyle.maxWidth, container, 'clientWidth');\n maxHeight = parseMaxStyle(containerStyle.maxHeight, container, 'clientHeight');\n }\n }\n return {\n width,\n height,\n maxWidth: maxWidth || INFINITY,\n maxHeight: maxHeight || INFINITY\n };\n}\n\nconst round1 = (v: number) => Math.round(v * 10) / 10;\n\n// eslint-disable-next-line complexity\nexport function getMaximumSize(\n canvas: HTMLCanvasElement,\n bbWidth?: number,\n bbHeight?: number,\n aspectRatio?: number\n): { width: number; height: number } {\n const style = getComputedStyle(canvas);\n const margins = getPositionedStyle(style, 'margin');\n const maxWidth = parseMaxStyle(style.maxWidth, canvas, 'clientWidth') || INFINITY;\n const maxHeight = parseMaxStyle(style.maxHeight, canvas, 'clientHeight') || INFINITY;\n const containerSize = getContainerSize(canvas, bbWidth, bbHeight);\n let {width, height} = containerSize;\n\n if (style.boxSizing === 'content-box') {\n const borders = getPositionedStyle(style, 'border', 'width');\n const paddings = getPositionedStyle(style, 'padding');\n width -= paddings.width + borders.width;\n height -= paddings.height + borders.height;\n }\n width = Math.max(0, width - margins.width);\n height = Math.max(0, aspectRatio ? width / aspectRatio : height - margins.height);\n width = round1(Math.min(width, maxWidth, containerSize.maxWidth));\n height = round1(Math.min(height, maxHeight, containerSize.maxHeight));\n if (width && !height) {\n // https://github.com/chartjs/Chart.js/issues/4659\n // If the canvas has width, but no height, default to aspectRatio of 2 (canvas default)\n height = round1(width / 2);\n }\n\n const maintainHeight = bbWidth !== undefined || bbHeight !== undefined;\n\n if (maintainHeight && aspectRatio && containerSize.height && height > containerSize.height) {\n height = containerSize.height;\n width = round1(Math.floor(height * aspectRatio));\n }\n\n return {width, height};\n}\n\n/**\n * @param chart\n * @param forceRatio\n * @param forceStyle\n * @returns True if the canvas context size or transformation has changed.\n */\nexport function retinaScale(\n chart: Chart,\n forceRatio: number,\n forceStyle?: boolean\n): boolean | void {\n const pixelRatio = forceRatio || 1;\n const deviceHeight = Math.floor(chart.height * pixelRatio);\n const deviceWidth = Math.floor(chart.width * pixelRatio);\n\n chart.height = Math.floor(chart.height);\n chart.width = Math.floor(chart.width);\n\n const canvas = chart.canvas;\n\n // If no style has been set on the canvas, the render size is used as display size,\n // making the chart visually bigger, so let's enforce it to the \"correct\" values.\n // See https://github.com/chartjs/Chart.js/issues/3575\n if (canvas.style && (forceStyle || (!canvas.style.height && !canvas.style.width))) {\n canvas.style.height = `${chart.height}px`;\n canvas.style.width = `${chart.width}px`;\n }\n\n if (chart.currentDevicePixelRatio !== pixelRatio\n || canvas.height !== deviceHeight\n || canvas.width !== deviceWidth) {\n chart.currentDevicePixelRatio = pixelRatio;\n canvas.height = deviceHeight;\n canvas.width = deviceWidth;\n chart.ctx.setTransform(pixelRatio, 0, 0, pixelRatio, 0, 0);\n return true;\n }\n return false;\n}\n\n/**\n * Detects support for options object argument in addEventListener.\n * https://developer.mozilla.org/en-US/docs/Web/API/EventTarget/addEventListener#Safely_detecting_option_support\n * @private\n */\nexport const supportsEventListenerOptions = (function() {\n let passiveSupported = false;\n try {\n const options = {\n get passive() { // This function will be called when the browser attempts to access the passive property.\n passiveSupported = true;\n return false;\n }\n } as EventListenerOptions;\n\n window.addEventListener('test', null, options);\n window.removeEventListener('test', null, options);\n } catch (e) {\n // continue regardless of error\n }\n return passiveSupported;\n}());\n\n/**\n * The \"used\" size is the final value of a dimension property after all calculations have\n * been performed. This method uses the computed style of `element` but returns undefined\n * if the computed style is not expressed in pixels. That can happen in some cases where\n * `element` has a size relative to its parent and this last one is not yet displayed,\n * for example because of `display: none` on a parent node.\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/used_value\n * @returns Size in pixels or undefined if unknown.\n */\n\nexport function readUsedSize(\n element: HTMLElement,\n property: 'width' | 'height'\n): number | undefined {\n const value = getStyle(element, property);\n const matches = value && value.match(/^(\\d+)(\\.\\d+)?px$/);\n return matches ? +matches[1] : undefined;\n}\n","import {isArray, isNullOrUndef} from './helpers.core.js';\nimport {PI, TAU, HALF_PI, QUARTER_PI, TWO_THIRDS_PI, RAD_PER_DEG} from './helpers.math.js';\n\n/**\n * Note: typedefs are auto-exported, so use a made-up `canvas` namespace where\n * necessary to avoid duplicates with `export * from './helpers`; see\n * https://github.com/microsoft/TypeScript/issues/46011\n * @typedef { import('../core/core.controller.js').default } canvas.Chart\n * @typedef { import('../types/index.js').Point } Point\n */\n\n/**\n * @namespace Chart.helpers.canvas\n */\n\n/**\n * Converts the given font object into a CSS font string.\n * @param {object} font - A font object.\n * @return {string|null} The CSS font string. See https://developer.mozilla.org/en-US/docs/Web/CSS/font\n * @private\n */\nexport function toFontString(font) {\n if (!font || isNullOrUndef(font.size) || isNullOrUndef(font.family)) {\n return null;\n }\n\n return (font.style ? font.style + ' ' : '')\n\t\t+ (font.weight ? font.weight + ' ' : '')\n\t\t+ font.size + 'px '\n\t\t+ font.family;\n}\n\n/**\n * @private\n */\nexport function _measureText(ctx, data, gc, longest, string) {\n let textWidth = data[string];\n if (!textWidth) {\n textWidth = data[string] = ctx.measureText(string).width;\n gc.push(string);\n }\n if (textWidth > longest) {\n longest = textWidth;\n }\n return longest;\n}\n\n/**\n * @private\n */\nexport function _longestText(ctx, font, arrayOfThings, cache) {\n cache = cache || {};\n let data = cache.data = cache.data || {};\n let gc = cache.garbageCollect = cache.garbageCollect || [];\n\n if (cache.font !== font) {\n data = cache.data = {};\n gc = cache.garbageCollect = [];\n cache.font = font;\n }\n\n ctx.save();\n\n ctx.font = font;\n let longest = 0;\n const ilen = arrayOfThings.length;\n let i, j, jlen, thing, nestedThing;\n for (i = 0; i < ilen; i++) {\n thing = arrayOfThings[i];\n\n // Undefined strings and arrays should not be measured\n if (thing !== undefined && thing !== null && isArray(thing) !== true) {\n longest = _measureText(ctx, data, gc, longest, thing);\n } else if (isArray(thing)) {\n // if it is an array lets measure each element\n // to do maybe simplify this function a bit so we can do this more recursively?\n for (j = 0, jlen = thing.length; j < jlen; j++) {\n nestedThing = thing[j];\n // Undefined strings and arrays should not be measured\n if (nestedThing !== undefined && nestedThing !== null && !isArray(nestedThing)) {\n longest = _measureText(ctx, data, gc, longest, nestedThing);\n }\n }\n }\n }\n\n ctx.restore();\n\n const gcLen = gc.length / 2;\n if (gcLen > arrayOfThings.length) {\n for (i = 0; i < gcLen; i++) {\n delete data[gc[i]];\n }\n gc.splice(0, gcLen);\n }\n return longest;\n}\n\n/**\n * Returns the aligned pixel value to avoid anti-aliasing blur\n * @param {canvas.Chart} chart - The chart instance.\n * @param {number} pixel - A pixel value.\n * @param {number} width - The width of the element.\n * @returns {number} The aligned pixel value.\n * @private\n */\nexport function _alignPixel(chart, pixel, width) {\n const devicePixelRatio = chart.currentDevicePixelRatio;\n const halfWidth = width !== 0 ? Math.max(width / 2, 0.5) : 0;\n return Math.round((pixel - halfWidth) * devicePixelRatio) / devicePixelRatio + halfWidth;\n}\n\n/**\n * Clears the entire canvas.\n * @param {HTMLCanvasElement} canvas\n * @param {CanvasRenderingContext2D} [ctx]\n */\nexport function clearCanvas(canvas, ctx) {\n ctx = ctx || canvas.getContext('2d');\n\n ctx.save();\n // canvas.width and canvas.height do not consider the canvas transform,\n // while clearRect does\n ctx.resetTransform();\n ctx.clearRect(0, 0, canvas.width, canvas.height);\n ctx.restore();\n}\n\nexport function drawPoint(ctx, options, x, y) {\n drawPointLegend(ctx, options, x, y, null);\n}\n\nexport function drawPointLegend(ctx, options, x, y, w) {\n let type, xOffset, yOffset, size, cornerRadius, width, xOffsetW, yOffsetW;\n const style = options.pointStyle;\n const rotation = options.rotation;\n const radius = options.radius;\n let rad = (rotation || 0) * RAD_PER_DEG;\n\n if (style && typeof style === 'object') {\n type = style.toString();\n if (type === '[object HTMLImageElement]' || type === '[object HTMLCanvasElement]') {\n ctx.save();\n ctx.translate(x, y);\n ctx.rotate(rad);\n ctx.drawImage(style, -style.width / 2, -style.height / 2, style.width, style.height);\n ctx.restore();\n return;\n }\n }\n\n if (isNaN(radius) || radius <= 0) {\n return;\n }\n\n ctx.beginPath();\n\n switch (style) {\n // Default includes circle\n default:\n if (w) {\n ctx.ellipse(x, y, w / 2, radius, 0, 0, TAU);\n } else {\n ctx.arc(x, y, radius, 0, TAU);\n }\n ctx.closePath();\n break;\n case 'triangle':\n width = w ? w / 2 : radius;\n ctx.moveTo(x + Math.sin(rad) * width, y - Math.cos(rad) * radius);\n rad += TWO_THIRDS_PI;\n ctx.lineTo(x + Math.sin(rad) * width, y - Math.cos(rad) * radius);\n rad += TWO_THIRDS_PI;\n ctx.lineTo(x + Math.sin(rad) * width, y - Math.cos(rad) * radius);\n ctx.closePath();\n break;\n case 'rectRounded':\n // NOTE: the rounded rect implementation changed to use `arc` instead of\n // `quadraticCurveTo` since it generates better results when rect is\n // almost a circle. 0.516 (instead of 0.5) produces results with visually\n // closer proportion to the previous impl and it is inscribed in the\n // circle with `radius`. For more details, see the following PRs:\n // https://github.com/chartjs/Chart.js/issues/5597\n // https://github.com/chartjs/Chart.js/issues/5858\n cornerRadius = radius * 0.516;\n size = radius - cornerRadius;\n xOffset = Math.cos(rad + QUARTER_PI) * size;\n xOffsetW = Math.cos(rad + QUARTER_PI) * (w ? w / 2 - cornerRadius : size);\n yOffset = Math.sin(rad + QUARTER_PI) * size;\n yOffsetW = Math.sin(rad + QUARTER_PI) * (w ? w / 2 - cornerRadius : size);\n ctx.arc(x - xOffsetW, y - yOffset, cornerRadius, rad - PI, rad - HALF_PI);\n ctx.arc(x + yOffsetW, y - xOffset, cornerRadius, rad - HALF_PI, rad);\n ctx.arc(x + xOffsetW, y + yOffset, cornerRadius, rad, rad + HALF_PI);\n ctx.arc(x - yOffsetW, y + xOffset, cornerRadius, rad + HALF_PI, rad + PI);\n ctx.closePath();\n break;\n case 'rect':\n if (!rotation) {\n size = Math.SQRT1_2 * radius;\n width = w ? w / 2 : size;\n ctx.rect(x - width, y - size, 2 * width, 2 * size);\n break;\n }\n rad += QUARTER_PI;\n /* falls through */\n case 'rectRot':\n xOffsetW = Math.cos(rad) * (w ? w / 2 : radius);\n xOffset = Math.cos(rad) * radius;\n yOffset = Math.sin(rad) * radius;\n yOffsetW = Math.sin(rad) * (w ? w / 2 : radius);\n ctx.moveTo(x - xOffsetW, y - yOffset);\n ctx.lineTo(x + yOffsetW, y - xOffset);\n ctx.lineTo(x + xOffsetW, y + yOffset);\n ctx.lineTo(x - yOffsetW, y + xOffset);\n ctx.closePath();\n break;\n case 'crossRot':\n rad += QUARTER_PI;\n /* falls through */\n case 'cross':\n xOffsetW = Math.cos(rad) * (w ? w / 2 : radius);\n xOffset = Math.cos(rad) * radius;\n yOffset = Math.sin(rad) * radius;\n yOffsetW = Math.sin(rad) * (w ? w / 2 : radius);\n ctx.moveTo(x - xOffsetW, y - yOffset);\n ctx.lineTo(x + xOffsetW, y + yOffset);\n ctx.moveTo(x + yOffsetW, y - xOffset);\n ctx.lineTo(x - yOffsetW, y + xOffset);\n break;\n case 'star':\n xOffsetW = Math.cos(rad) * (w ? w / 2 : radius);\n xOffset = Math.cos(rad) * radius;\n yOffset = Math.sin(rad) * radius;\n yOffsetW = Math.sin(rad) * (w ? w / 2 : radius);\n ctx.moveTo(x - xOffsetW, y - yOffset);\n ctx.lineTo(x + xOffsetW, y + yOffset);\n ctx.moveTo(x + yOffsetW, y - xOffset);\n ctx.lineTo(x - yOffsetW, y + xOffset);\n rad += QUARTER_PI;\n xOffsetW = Math.cos(rad) * (w ? w / 2 : radius);\n xOffset = Math.cos(rad) * radius;\n yOffset = Math.sin(rad) * radius;\n yOffsetW = Math.sin(rad) * (w ? w / 2 : radius);\n ctx.moveTo(x - xOffsetW, y - yOffset);\n ctx.lineTo(x + xOffsetW, y + yOffset);\n ctx.moveTo(x + yOffsetW, y - xOffset);\n ctx.lineTo(x - yOffsetW, y + xOffset);\n break;\n case 'line':\n xOffset = w ? w / 2 : Math.cos(rad) * radius;\n yOffset = Math.sin(rad) * radius;\n ctx.moveTo(x - xOffset, y - yOffset);\n ctx.lineTo(x + xOffset, y + yOffset);\n break;\n case 'dash':\n ctx.moveTo(x, y);\n ctx.lineTo(x + Math.cos(rad) * (w ? w / 2 : radius), y + Math.sin(rad) * radius);\n break;\n case false:\n ctx.closePath();\n break;\n }\n\n ctx.fill();\n if (options.borderWidth > 0) {\n ctx.stroke();\n }\n}\n\n/**\n * Returns true if the point is inside the rectangle\n * @param {Point} point - The point to test\n * @param {object} area - The rectangle\n * @param {number} [margin] - allowed margin\n * @returns {boolean}\n * @private\n */\nexport function _isPointInArea(point, area, margin) {\n margin = margin || 0.5; // margin - default is to match rounded decimals\n\n return !area || (point && point.x > area.left - margin && point.x < area.right + margin &&\n\t\tpoint.y > area.top - margin && point.y < area.bottom + margin);\n}\n\nexport function clipArea(ctx, area) {\n ctx.save();\n ctx.beginPath();\n ctx.rect(area.left, area.top, area.right - area.left, area.bottom - area.top);\n ctx.clip();\n}\n\nexport function unclipArea(ctx) {\n ctx.restore();\n}\n\n/**\n * @private\n */\nexport function _steppedLineTo(ctx, previous, target, flip, mode) {\n if (!previous) {\n return ctx.lineTo(target.x, target.y);\n }\n if (mode === 'middle') {\n const midpoint = (previous.x + target.x) / 2.0;\n ctx.lineTo(midpoint, previous.y);\n ctx.lineTo(midpoint, target.y);\n } else if (mode === 'after' !== !!flip) {\n ctx.lineTo(previous.x, target.y);\n } else {\n ctx.lineTo(target.x, previous.y);\n }\n ctx.lineTo(target.x, target.y);\n}\n\n/**\n * @private\n */\nexport function _bezierCurveTo(ctx, previous, target, flip) {\n if (!previous) {\n return ctx.lineTo(target.x, target.y);\n }\n ctx.bezierCurveTo(\n flip ? previous.cp1x : previous.cp2x,\n flip ? previous.cp1y : previous.cp2y,\n flip ? target.cp2x : target.cp1x,\n flip ? target.cp2y : target.cp1y,\n target.x,\n target.y);\n}\n\n/**\n * Render text onto the canvas\n */\nexport function renderText(ctx, text, x, y, font, opts = {}) {\n const lines = isArray(text) ? text : [text];\n const stroke = opts.strokeWidth > 0 && opts.strokeColor !== '';\n let i, line;\n\n ctx.save();\n ctx.font = font.string;\n setRenderOpts(ctx, opts);\n\n for (i = 0; i < lines.length; ++i) {\n line = lines[i];\n\n if (opts.backdrop) {\n drawBackdrop(ctx, opts.backdrop);\n }\n\n if (stroke) {\n if (opts.strokeColor) {\n ctx.strokeStyle = opts.strokeColor;\n }\n\n if (!isNullOrUndef(opts.strokeWidth)) {\n ctx.lineWidth = opts.strokeWidth;\n }\n\n ctx.strokeText(line, x, y, opts.maxWidth);\n }\n\n ctx.fillText(line, x, y, opts.maxWidth);\n decorateText(ctx, x, y, line, opts);\n\n y += font.lineHeight;\n }\n\n ctx.restore();\n}\n\nfunction setRenderOpts(ctx, opts) {\n if (opts.translation) {\n ctx.translate(opts.translation[0], opts.translation[1]);\n }\n\n if (!isNullOrUndef(opts.rotation)) {\n ctx.rotate(opts.rotation);\n }\n\n if (opts.color) {\n ctx.fillStyle = opts.color;\n }\n\n if (opts.textAlign) {\n ctx.textAlign = opts.textAlign;\n }\n\n if (opts.textBaseline) {\n ctx.textBaseline = opts.textBaseline;\n }\n}\n\nfunction decorateText(ctx, x, y, line, opts) {\n if (opts.strikethrough || opts.underline) {\n /**\n * Now that IE11 support has been dropped, we can use more\n * of the TextMetrics object. The actual bounding boxes\n * are unflagged in Chrome, Firefox, Edge, and Safari so they\n * can be safely used.\n * See https://developer.mozilla.org/en-US/docs/Web/API/TextMetrics#Browser_compatibility\n */\n const metrics = ctx.measureText(line);\n const left = x - metrics.actualBoundingBoxLeft;\n const right = x + metrics.actualBoundingBoxRight;\n const top = y - metrics.actualBoundingBoxAscent;\n const bottom = y + metrics.actualBoundingBoxDescent;\n const yDecoration = opts.strikethrough ? (top + bottom) / 2 : bottom;\n\n ctx.strokeStyle = ctx.fillStyle;\n ctx.beginPath();\n ctx.lineWidth = opts.decorationWidth || 2;\n ctx.moveTo(left, yDecoration);\n ctx.lineTo(right, yDecoration);\n ctx.stroke();\n }\n}\n\nfunction drawBackdrop(ctx, opts) {\n const oldColor = ctx.fillStyle;\n\n ctx.fillStyle = opts.color;\n ctx.fillRect(opts.left, opts.top, opts.width, opts.height);\n ctx.fillStyle = oldColor;\n}\n\n/**\n * Add a path of a rectangle with rounded corners to the current sub-path\n * @param {CanvasRenderingContext2D} ctx Context\n * @param {*} rect Bounding rect\n */\nexport function addRoundedRectPath(ctx, rect) {\n const {x, y, w, h, radius} = rect;\n\n // top left arc\n ctx.arc(x + radius.topLeft, y + radius.topLeft, radius.topLeft, -HALF_PI, PI, true);\n\n // line from top left to bottom left\n ctx.lineTo(x, y + h - radius.bottomLeft);\n\n // bottom left arc\n ctx.arc(x + radius.bottomLeft, y + h - radius.bottomLeft, radius.bottomLeft, PI, HALF_PI, true);\n\n // line from bottom left to bottom right\n ctx.lineTo(x + w - radius.bottomRight, y + h);\n\n // bottom right arc\n ctx.arc(x + w - radius.bottomRight, y + h - radius.bottomRight, radius.bottomRight, HALF_PI, 0, true);\n\n // line from bottom right to top right\n ctx.lineTo(x + w, y + radius.topRight);\n\n // top right arc\n ctx.arc(x + w - radius.topRight, y + radius.topRight, radius.topRight, 0, -HALF_PI, true);\n\n // line from top right to top left\n ctx.lineTo(x + radius.topLeft, y);\n}\n","import {defined, isArray, isFunction, isObject, resolveObjectKey, _capitalize} from './helpers.core.js';\n\n/**\n * Creates a Proxy for resolving raw values for options.\n * @param {object[]} scopes - The option scopes to look for values, in resolution order\n * @param {string[]} [prefixes] - The prefixes for values, in resolution order.\n * @param {object[]} [rootScopes] - The root option scopes\n * @param {string|boolean} [fallback] - Parent scopes fallback\n * @param {function} [getTarget] - callback for getting the target for changed values\n * @returns Proxy\n * @private\n */\nexport function _createResolver(scopes, prefixes = [''], rootScopes = scopes, fallback, getTarget = () => scopes[0]) {\n if (!defined(fallback)) {\n fallback = _resolve('_fallback', scopes);\n }\n const cache = {\n [Symbol.toStringTag]: 'Object',\n _cacheable: true,\n _scopes: scopes,\n _rootScopes: rootScopes,\n _fallback: fallback,\n _getTarget: getTarget,\n override: (scope) => _createResolver([scope, ...scopes], prefixes, rootScopes, fallback),\n };\n return new Proxy(cache, {\n /**\n * A trap for the delete operator.\n */\n deleteProperty(target, prop) {\n delete target[prop]; // remove from cache\n delete target._keys; // remove cached keys\n delete scopes[0][prop]; // remove from top level scope\n return true;\n },\n\n /**\n * A trap for getting property values.\n */\n get(target, prop) {\n return _cached(target, prop,\n () => _resolveWithPrefixes(prop, prefixes, scopes, target));\n },\n\n /**\n * A trap for Object.getOwnPropertyDescriptor.\n * Also used by Object.hasOwnProperty.\n */\n getOwnPropertyDescriptor(target, prop) {\n return Reflect.getOwnPropertyDescriptor(target._scopes[0], prop);\n },\n\n /**\n * A trap for Object.getPrototypeOf.\n */\n getPrototypeOf() {\n return Reflect.getPrototypeOf(scopes[0]);\n },\n\n /**\n * A trap for the in operator.\n */\n has(target, prop) {\n return getKeysFromAllScopes(target).includes(prop);\n },\n\n /**\n * A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols.\n */\n ownKeys(target) {\n return getKeysFromAllScopes(target);\n },\n\n /**\n * A trap for setting property values.\n */\n set(target, prop, value) {\n const storage = target._storage || (target._storage = getTarget());\n target[prop] = storage[prop] = value; // set to top level scope + cache\n delete target._keys; // remove cached keys\n return true;\n }\n });\n}\n\n/**\n * Returns an Proxy for resolving option values with context.\n * @param {object} proxy - The Proxy returned by `_createResolver`\n * @param {object} context - Context object for scriptable/indexable options\n * @param {object} [subProxy] - The proxy provided for scriptable options\n * @param {{scriptable: boolean, indexable: boolean, allKeys?: boolean}} [descriptorDefaults] - Defaults for descriptors\n * @private\n */\nexport function _attachContext(proxy, context, subProxy, descriptorDefaults) {\n const cache = {\n _cacheable: false,\n _proxy: proxy,\n _context: context,\n _subProxy: subProxy,\n _stack: new Set(),\n _descriptors: _descriptors(proxy, descriptorDefaults),\n setContext: (ctx) => _attachContext(proxy, ctx, subProxy, descriptorDefaults),\n override: (scope) => _attachContext(proxy.override(scope), context, subProxy, descriptorDefaults)\n };\n return new Proxy(cache, {\n /**\n * A trap for the delete operator.\n */\n deleteProperty(target, prop) {\n delete target[prop]; // remove from cache\n delete proxy[prop]; // remove from proxy\n return true;\n },\n\n /**\n * A trap for getting property values.\n */\n get(target, prop, receiver) {\n return _cached(target, prop,\n () => _resolveWithContext(target, prop, receiver));\n },\n\n /**\n * A trap for Object.getOwnPropertyDescriptor.\n * Also used by Object.hasOwnProperty.\n */\n getOwnPropertyDescriptor(target, prop) {\n return target._descriptors.allKeys\n ? Reflect.has(proxy, prop) ? {enumerable: true, configurable: true} : undefined\n : Reflect.getOwnPropertyDescriptor(proxy, prop);\n },\n\n /**\n * A trap for Object.getPrototypeOf.\n */\n getPrototypeOf() {\n return Reflect.getPrototypeOf(proxy);\n },\n\n /**\n * A trap for the in operator.\n */\n has(target, prop) {\n return Reflect.has(proxy, prop);\n },\n\n /**\n * A trap for Object.getOwnPropertyNames and Object.getOwnPropertySymbols.\n */\n ownKeys() {\n return Reflect.ownKeys(proxy);\n },\n\n /**\n * A trap for setting property values.\n */\n set(target, prop, value) {\n proxy[prop] = value; // set to proxy\n delete target[prop]; // remove from cache\n return true;\n }\n });\n}\n\n/**\n * @private\n */\nexport function _descriptors(proxy, defaults = {scriptable: true, indexable: true}) {\n const {_scriptable = defaults.scriptable, _indexable = defaults.indexable, _allKeys = defaults.allKeys} = proxy;\n return {\n allKeys: _allKeys,\n scriptable: _scriptable,\n indexable: _indexable,\n isScriptable: isFunction(_scriptable) ? _scriptable : () => _scriptable,\n isIndexable: isFunction(_indexable) ? _indexable : () => _indexable\n };\n}\n\nconst readKey = (prefix, name) => prefix ? prefix + _capitalize(name) : name;\nconst needsSubResolver = (prop, value) => isObject(value) && prop !== 'adapters' &&\n (Object.getPrototypeOf(value) === null || value.constructor === Object);\n\nfunction _cached(target, prop, resolve) {\n if (Object.prototype.hasOwnProperty.call(target, prop)) {\n return target[prop];\n }\n\n const value = resolve();\n // cache the resolved value\n target[prop] = value;\n return value;\n}\n\nfunction _resolveWithContext(target, prop, receiver) {\n const {_proxy, _context, _subProxy, _descriptors: descriptors} = target;\n let value = _proxy[prop]; // resolve from proxy\n\n // resolve with context\n if (isFunction(value) && descriptors.isScriptable(prop)) {\n value = _resolveScriptable(prop, value, target, receiver);\n }\n if (isArray(value) && value.length) {\n value = _resolveArray(prop, value, target, descriptors.isIndexable);\n }\n if (needsSubResolver(prop, value)) {\n // if the resolved value is an object, create a sub resolver for it\n value = _attachContext(value, _context, _subProxy && _subProxy[prop], descriptors);\n }\n return value;\n}\n\nfunction _resolveScriptable(prop, value, target, receiver) {\n const {_proxy, _context, _subProxy, _stack} = target;\n if (_stack.has(prop)) {\n // @ts-ignore\n throw new Error('Recursion detected: ' + Array.from(_stack).join('->') + '->' + prop);\n }\n _stack.add(prop);\n value = value(_context, _subProxy || receiver);\n _stack.delete(prop);\n if (needsSubResolver(prop, value)) {\n // When scriptable option returns an object, create a resolver on that.\n value = createSubResolver(_proxy._scopes, _proxy, prop, value);\n }\n return value;\n}\n\nfunction _resolveArray(prop, value, target, isIndexable) {\n const {_proxy, _context, _subProxy, _descriptors: descriptors} = target;\n\n if (defined(_context.index) && isIndexable(prop)) {\n value = value[_context.index % value.length];\n } else if (isObject(value[0])) {\n // Array of objects, return array or resolvers\n const arr = value;\n const scopes = _proxy._scopes.filter(s => s !== arr);\n value = [];\n for (const item of arr) {\n const resolver = createSubResolver(scopes, _proxy, prop, item);\n value.push(_attachContext(resolver, _context, _subProxy && _subProxy[prop], descriptors));\n }\n }\n return value;\n}\n\nfunction resolveFallback(fallback, prop, value) {\n return isFunction(fallback) ? fallback(prop, value) : fallback;\n}\n\nconst getScope = (key, parent) => key === true ? parent\n : typeof key === 'string' ? resolveObjectKey(parent, key) : undefined;\n\nfunction addScopes(set, parentScopes, key, parentFallback, value) {\n for (const parent of parentScopes) {\n const scope = getScope(key, parent);\n if (scope) {\n set.add(scope);\n const fallback = resolveFallback(scope._fallback, key, value);\n if (defined(fallback) && fallback !== key && fallback !== parentFallback) {\n // When we reach the descriptor that defines a new _fallback, return that.\n // The fallback will resume to that new scope.\n return fallback;\n }\n } else if (scope === false && defined(parentFallback) && key !== parentFallback) {\n // Fallback to `false` results to `false`, when falling back to different key.\n // For example `interaction` from `hover` or `plugins.tooltip` and `animation` from `animations`\n return null;\n }\n }\n return false;\n}\n\nfunction createSubResolver(parentScopes, resolver, prop, value) {\n const rootScopes = resolver._rootScopes;\n const fallback = resolveFallback(resolver._fallback, prop, value);\n const allScopes = [...parentScopes, ...rootScopes];\n const set = new Set();\n set.add(value);\n let key = addScopesFromKey(set, allScopes, prop, fallback || prop, value);\n if (key === null) {\n return false;\n }\n if (defined(fallback) && fallback !== prop) {\n key = addScopesFromKey(set, allScopes, fallback, key, value);\n if (key === null) {\n return false;\n }\n }\n return _createResolver(Array.from(set), [''], rootScopes, fallback,\n () => subGetTarget(resolver, prop, value));\n}\n\nfunction addScopesFromKey(set, allScopes, key, fallback, item) {\n while (key) {\n key = addScopes(set, allScopes, key, fallback, item);\n }\n return key;\n}\n\nfunction subGetTarget(resolver, prop, value) {\n const parent = resolver._getTarget();\n if (!(prop in parent)) {\n parent[prop] = {};\n }\n const target = parent[prop];\n if (isArray(target) && isObject(value)) {\n // For array of objects, the object is used to store updated values\n return value;\n }\n return target || {};\n}\n\nfunction _resolveWithPrefixes(prop, prefixes, scopes, proxy) {\n let value;\n for (const prefix of prefixes) {\n value = _resolve(readKey(prefix, prop), scopes);\n if (defined(value)) {\n return needsSubResolver(prop, value)\n ? createSubResolver(scopes, proxy, prop, value)\n : value;\n }\n }\n}\n\nfunction _resolve(key, scopes) {\n for (const scope of scopes) {\n if (!scope) {\n continue;\n }\n const value = scope[key];\n if (defined(value)) {\n return value;\n }\n }\n}\n\nfunction getKeysFromAllScopes(target) {\n let keys = target._keys;\n if (!keys) {\n keys = target._keys = resolveKeysFromAllScopes(target._scopes);\n }\n return keys;\n}\n\nfunction resolveKeysFromAllScopes(scopes) {\n const set = new Set();\n for (const scope of scopes) {\n for (const key of Object.keys(scope).filter(k => !k.startsWith('_'))) {\n set.add(key);\n }\n }\n return Array.from(set);\n}\n\nexport function _parseObjectDataRadialScale(meta, data, start, count) {\n const {iScale} = meta;\n const {key = 'r'} = this._parsing;\n const parsed = new Array(count);\n let i, ilen, index, item;\n\n for (i = 0, ilen = count; i < ilen; ++i) {\n index = i + start;\n item = data[index];\n parsed[i] = {\n r: iScale.parse(resolveObjectKey(item, key), index)\n };\n }\n return parsed;\n}\n","import {almostEquals, distanceBetweenPoints, sign} from './helpers.math.js';\nimport {_isPointInArea} from './helpers.canvas.js';\nimport type {ChartArea} from '../types/index.js';\n\nexport interface SplinePoint {\n x: number;\n y: number;\n skip?: boolean;\n\n // Both Bezier and monotone interpolations have these fields\n // but they are added in different spots\n cp1x?: number;\n cp1y?: number;\n cp2x?: number;\n cp2y?: number;\n}\n\nconst EPSILON = Number.EPSILON || 1e-14;\n\ntype OptionalSplinePoint = SplinePoint | false\nconst getPoint = (points: SplinePoint[], i: number): OptionalSplinePoint => i < points.length && !points[i].skip && points[i];\nconst getValueAxis = (indexAxis: 'x' | 'y') => indexAxis === 'x' ? 'y' : 'x';\n\nexport function splineCurve(\n firstPoint: SplinePoint,\n middlePoint: SplinePoint,\n afterPoint: SplinePoint,\n t: number\n): {\n previous: SplinePoint\n next: SplinePoint\n } {\n // Props to Rob Spencer at scaled innovation for his post on splining between points\n // http://scaledinnovation.com/analytics/splines/aboutSplines.html\n\n // This function must also respect \"skipped\" points\n\n const previous = firstPoint.skip ? middlePoint : firstPoint;\n const current = middlePoint;\n const next = afterPoint.skip ? middlePoint : afterPoint;\n const d01 = distanceBetweenPoints(current, previous);\n const d12 = distanceBetweenPoints(next, current);\n\n let s01 = d01 / (d01 + d12);\n let s12 = d12 / (d01 + d12);\n\n // If all points are the same, s01 & s02 will be inf\n s01 = isNaN(s01) ? 0 : s01;\n s12 = isNaN(s12) ? 0 : s12;\n\n const fa = t * s01; // scaling factor for triangle Ta\n const fb = t * s12;\n\n return {\n previous: {\n x: current.x - fa * (next.x - previous.x),\n y: current.y - fa * (next.y - previous.y)\n },\n next: {\n x: current.x + fb * (next.x - previous.x),\n y: current.y + fb * (next.y - previous.y)\n }\n };\n}\n\n/**\n * Adjust tangents to ensure monotonic properties\n */\nfunction monotoneAdjust(points: SplinePoint[], deltaK: number[], mK: number[]) {\n const pointsLen = points.length;\n\n let alphaK: number, betaK: number, tauK: number, squaredMagnitude: number, pointCurrent: OptionalSplinePoint;\n let pointAfter = getPoint(points, 0);\n for (let i = 0; i < pointsLen - 1; ++i) {\n pointCurrent = pointAfter;\n pointAfter = getPoint(points, i + 1);\n if (!pointCurrent || !pointAfter) {\n continue;\n }\n\n if (almostEquals(deltaK[i], 0, EPSILON)) {\n mK[i] = mK[i + 1] = 0;\n continue;\n }\n\n alphaK = mK[i] / deltaK[i];\n betaK = mK[i + 1] / deltaK[i];\n squaredMagnitude = Math.pow(alphaK, 2) + Math.pow(betaK, 2);\n if (squaredMagnitude <= 9) {\n continue;\n }\n\n tauK = 3 / Math.sqrt(squaredMagnitude);\n mK[i] = alphaK * tauK * deltaK[i];\n mK[i + 1] = betaK * tauK * deltaK[i];\n }\n}\n\nfunction monotoneCompute(points: SplinePoint[], mK: number[], indexAxis: 'x' | 'y' = 'x') {\n const valueAxis = getValueAxis(indexAxis);\n const pointsLen = points.length;\n let delta: number, pointBefore: OptionalSplinePoint, pointCurrent: OptionalSplinePoint;\n let pointAfter = getPoint(points, 0);\n\n for (let i = 0; i < pointsLen; ++i) {\n pointBefore = pointCurrent;\n pointCurrent = pointAfter;\n pointAfter = getPoint(points, i + 1);\n if (!pointCurrent) {\n continue;\n }\n\n const iPixel = pointCurrent[indexAxis];\n const vPixel = pointCurrent[valueAxis];\n if (pointBefore) {\n delta = (iPixel - pointBefore[indexAxis]) / 3;\n pointCurrent[`cp1${indexAxis}`] = iPixel - delta;\n pointCurrent[`cp1${valueAxis}`] = vPixel - delta * mK[i];\n }\n if (pointAfter) {\n delta = (pointAfter[indexAxis] - iPixel) / 3;\n pointCurrent[`cp2${indexAxis}`] = iPixel + delta;\n pointCurrent[`cp2${valueAxis}`] = vPixel + delta * mK[i];\n }\n }\n}\n\n/**\n * This function calculates Bézier control points in a similar way than |splineCurve|,\n * but preserves monotonicity of the provided data and ensures no local extremums are added\n * between the dataset discrete points due to the interpolation.\n * See : https://en.wikipedia.org/wiki/Monotone_cubic_interpolation\n */\nexport function splineCurveMonotone(points: SplinePoint[], indexAxis: 'x' | 'y' = 'x') {\n const valueAxis = getValueAxis(indexAxis);\n const pointsLen = points.length;\n const deltaK: number[] = Array(pointsLen).fill(0);\n const mK: number[] = Array(pointsLen);\n\n // Calculate slopes (deltaK) and initialize tangents (mK)\n let i, pointBefore: OptionalSplinePoint, pointCurrent: OptionalSplinePoint;\n let pointAfter = getPoint(points, 0);\n\n for (i = 0; i < pointsLen; ++i) {\n pointBefore = pointCurrent;\n pointCurrent = pointAfter;\n pointAfter = getPoint(points, i + 1);\n if (!pointCurrent) {\n continue;\n }\n\n if (pointAfter) {\n const slopeDelta = pointAfter[indexAxis] - pointCurrent[indexAxis];\n\n // In the case of two points that appear at the same x pixel, slopeDeltaX is 0\n deltaK[i] = slopeDelta !== 0 ? (pointAfter[valueAxis] - pointCurrent[valueAxis]) / slopeDelta : 0;\n }\n mK[i] = !pointBefore ? deltaK[i]\n : !pointAfter ? deltaK[i - 1]\n : (sign(deltaK[i - 1]) !== sign(deltaK[i])) ? 0\n : (deltaK[i - 1] + deltaK[i]) / 2;\n }\n\n monotoneAdjust(points, deltaK, mK);\n\n monotoneCompute(points, mK, indexAxis);\n}\n\nfunction capControlPoint(pt: number, min: number, max: number) {\n return Math.max(Math.min(pt, max), min);\n}\n\nfunction capBezierPoints(points: SplinePoint[], area: ChartArea) {\n let i, ilen, point, inArea, inAreaPrev;\n let inAreaNext = _isPointInArea(points[0], area);\n for (i = 0, ilen = points.length; i < ilen; ++i) {\n inAreaPrev = inArea;\n inArea = inAreaNext;\n inAreaNext = i < ilen - 1 && _isPointInArea(points[i + 1], area);\n if (!inArea) {\n continue;\n }\n point = points[i];\n if (inAreaPrev) {\n point.cp1x = capControlPoint(point.cp1x, area.left, area.right);\n point.cp1y = capControlPoint(point.cp1y, area.top, area.bottom);\n }\n if (inAreaNext) {\n point.cp2x = capControlPoint(point.cp2x, area.left, area.right);\n point.cp2y = capControlPoint(point.cp2y, area.top, area.bottom);\n }\n }\n}\n\n/**\n * @private\n */\nexport function _updateBezierControlPoints(\n points: SplinePoint[],\n options,\n area: ChartArea,\n loop: boolean,\n indexAxis: 'x' | 'y'\n) {\n let i: number, ilen: number, point: SplinePoint, controlPoints: ReturnType;\n\n // Only consider points that are drawn in case the spanGaps option is used\n if (options.spanGaps) {\n points = points.filter((pt) => !pt.skip);\n }\n\n if (options.cubicInterpolationMode === 'monotone') {\n splineCurveMonotone(points, indexAxis);\n } else {\n let prev = loop ? points[points.length - 1] : points[0];\n for (i = 0, ilen = points.length; i < ilen; ++i) {\n point = points[i];\n controlPoints = splineCurve(\n prev,\n point,\n points[Math.min(i + 1, ilen - (loop ? 0 : 1)) % ilen],\n options.tension\n );\n point.cp1x = controlPoints.previous.x;\n point.cp1y = controlPoints.previous.y;\n point.cp2x = controlPoints.next.x;\n point.cp2y = controlPoints.next.y;\n prev = point;\n }\n }\n\n if (options.capBezierPoints) {\n capBezierPoints(points, area);\n }\n}\n","import {PI, TAU, HALF_PI} from './helpers.math.js';\n\nconst atEdge = (t: number) => t === 0 || t === 1;\nconst elasticIn = (t: number, s: number, p: number) => -(Math.pow(2, 10 * (t -= 1)) * Math.sin((t - s) * TAU / p));\nconst elasticOut = (t: number, s: number, p: number) => Math.pow(2, -10 * t) * Math.sin((t - s) * TAU / p) + 1;\n\n/**\n * Easing functions adapted from Robert Penner's easing equations.\n * @namespace Chart.helpers.easing.effects\n * @see http://www.robertpenner.com/easing/\n */\nconst effects = {\n linear: (t: number) => t,\n\n easeInQuad: (t: number) => t * t,\n\n easeOutQuad: (t: number) => -t * (t - 2),\n\n easeInOutQuad: (t: number) => ((t /= 0.5) < 1)\n ? 0.5 * t * t\n : -0.5 * ((--t) * (t - 2) - 1),\n\n easeInCubic: (t: number) => t * t * t,\n\n easeOutCubic: (t: number) => (t -= 1) * t * t + 1,\n\n easeInOutCubic: (t: number) => ((t /= 0.5) < 1)\n ? 0.5 * t * t * t\n : 0.5 * ((t -= 2) * t * t + 2),\n\n easeInQuart: (t: number) => t * t * t * t,\n\n easeOutQuart: (t: number) => -((t -= 1) * t * t * t - 1),\n\n easeInOutQuart: (t: number) => ((t /= 0.5) < 1)\n ? 0.5 * t * t * t * t\n : -0.5 * ((t -= 2) * t * t * t - 2),\n\n easeInQuint: (t: number) => t * t * t * t * t,\n\n easeOutQuint: (t: number) => (t -= 1) * t * t * t * t + 1,\n\n easeInOutQuint: (t: number) => ((t /= 0.5) < 1)\n ? 0.5 * t * t * t * t * t\n : 0.5 * ((t -= 2) * t * t * t * t + 2),\n\n easeInSine: (t: number) => -Math.cos(t * HALF_PI) + 1,\n\n easeOutSine: (t: number) => Math.sin(t * HALF_PI),\n\n easeInOutSine: (t: number) => -0.5 * (Math.cos(PI * t) - 1),\n\n easeInExpo: (t: number) => (t === 0) ? 0 : Math.pow(2, 10 * (t - 1)),\n\n easeOutExpo: (t: number) => (t === 1) ? 1 : -Math.pow(2, -10 * t) + 1,\n\n easeInOutExpo: (t: number) => atEdge(t) ? t : t < 0.5\n ? 0.5 * Math.pow(2, 10 * (t * 2 - 1))\n : 0.5 * (-Math.pow(2, -10 * (t * 2 - 1)) + 2),\n\n easeInCirc: (t: number) => (t >= 1) ? t : -(Math.sqrt(1 - t * t) - 1),\n\n easeOutCirc: (t: number) => Math.sqrt(1 - (t -= 1) * t),\n\n easeInOutCirc: (t: number) => ((t /= 0.5) < 1)\n ? -0.5 * (Math.sqrt(1 - t * t) - 1)\n : 0.5 * (Math.sqrt(1 - (t -= 2) * t) + 1),\n\n easeInElastic: (t: number) => atEdge(t) ? t : elasticIn(t, 0.075, 0.3),\n\n easeOutElastic: (t: number) => atEdge(t) ? t : elasticOut(t, 0.075, 0.3),\n\n easeInOutElastic(t: number) {\n const s = 0.1125;\n const p = 0.45;\n return atEdge(t) ? t :\n t < 0.5\n ? 0.5 * elasticIn(t * 2, s, p)\n : 0.5 + 0.5 * elasticOut(t * 2 - 1, s, p);\n },\n\n easeInBack(t: number) {\n const s = 1.70158;\n return t * t * ((s + 1) * t - s);\n },\n\n easeOutBack(t: number) {\n const s = 1.70158;\n return (t -= 1) * t * ((s + 1) * t + s) + 1;\n },\n\n easeInOutBack(t: number) {\n let s = 1.70158;\n if ((t /= 0.5) < 1) {\n return 0.5 * (t * t * (((s *= (1.525)) + 1) * t - s));\n }\n return 0.5 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2);\n },\n\n easeInBounce: (t: number) => 1 - effects.easeOutBounce(1 - t),\n\n easeOutBounce(t: number) {\n const m = 7.5625;\n const d = 2.75;\n if (t < (1 / d)) {\n return m * t * t;\n }\n if (t < (2 / d)) {\n return m * (t -= (1.5 / d)) * t + 0.75;\n }\n if (t < (2.5 / d)) {\n return m * (t -= (2.25 / d)) * t + 0.9375;\n }\n return m * (t -= (2.625 / d)) * t + 0.984375;\n },\n\n easeInOutBounce: (t: number) => (t < 0.5)\n ? effects.easeInBounce(t * 2) * 0.5\n : effects.easeOutBounce(t * 2 - 1) * 0.5 + 0.5,\n} as const;\n\nexport type EasingFunction = keyof typeof effects\n\nexport default effects;\n","import type {Point} from '../types/geometric.js';\nimport type {SplinePoint} from './helpers.curve.js';\n\n/**\n * @private\n */\nexport function _pointInLine(p1: Point, p2: Point, t: number, mode?) { // eslint-disable-line @typescript-eslint/no-unused-vars\n return {\n x: p1.x + t * (p2.x - p1.x),\n y: p1.y + t * (p2.y - p1.y)\n };\n}\n\n/**\n * @private\n */\nexport function _steppedInterpolation(\n p1: Point,\n p2: Point,\n t: number, mode: 'middle' | 'after' | unknown\n) {\n return {\n x: p1.x + t * (p2.x - p1.x),\n y: mode === 'middle' ? t < 0.5 ? p1.y : p2.y\n : mode === 'after' ? t < 1 ? p1.y : p2.y\n : t > 0 ? p2.y : p1.y\n };\n}\n\n/**\n * @private\n */\nexport function _bezierInterpolation(p1: SplinePoint, p2: SplinePoint, t: number, mode?) { // eslint-disable-line @typescript-eslint/no-unused-vars\n const cp1 = {x: p1.cp2x, y: p1.cp2y};\n const cp2 = {x: p2.cp1x, y: p2.cp1y};\n const a = _pointInLine(p1, cp1, t);\n const b = _pointInLine(cp1, cp2, t);\n const c = _pointInLine(cp2, p2, t);\n const d = _pointInLine(a, b, t);\n const e = _pointInLine(b, c, t);\n return _pointInLine(d, e, t);\n}\n","import defaults from '../core/core.defaults.js';\nimport {isArray, isObject, toDimension, valueOrDefault} from './helpers.core.js';\nimport {Point, toFontString} from './helpers.canvas.js';\nimport type {ChartArea, FontSpec} from '../types/index.js';\nimport type {TRBL, TRBLCorners} from '../types/geometric.js';\n\nconst LINE_HEIGHT = /^(normal|(\\d+(?:\\.\\d+)?)(px|em|%)?)$/;\nconst FONT_STYLE = /^(normal|italic|initial|inherit|unset|(oblique( -?[0-9]?[0-9]deg)?))$/;\n\n/**\n * @alias Chart.helpers.options\n * @namespace\n */\n/**\n * Converts the given line height `value` in pixels for a specific font `size`.\n * @param value - The lineHeight to parse (eg. 1.6, '14px', '75%', '1.6em').\n * @param size - The font size (in pixels) used to resolve relative `value`.\n * @returns The effective line height in pixels (size * 1.2 if value is invalid).\n * @see https://developer.mozilla.org/en-US/docs/Web/CSS/line-height\n * @since 2.7.0\n */\nexport function toLineHeight(value: number | string, size: number): number {\n const matches = ('' + value).match(LINE_HEIGHT);\n if (!matches || matches[1] === 'normal') {\n return size * 1.2;\n }\n\n value = +matches[2];\n\n switch (matches[3]) {\n case 'px':\n return value;\n case '%':\n value /= 100;\n break;\n default:\n break;\n }\n\n return size * value;\n}\n\nconst numberOrZero = (v: unknown) => +v || 0;\n\n/**\n * @param value\n * @param props\n */\nexport function _readValueToProps(value: number | Record, props: K[]): Record;\nexport function _readValueToProps(value: number | Record, props: Record): Record;\nexport function _readValueToProps(value: number | Record, props: string[] | Record) {\n const ret = {};\n const objProps = isObject(props);\n const keys = objProps ? Object.keys(props) : props;\n const read = isObject(value)\n ? objProps\n ? prop => valueOrDefault(value[prop], value[props[prop]])\n : prop => value[prop]\n : () => value;\n\n for (const prop of keys) {\n ret[prop] = numberOrZero(read(prop));\n }\n return ret;\n}\n\n/**\n * Converts the given value into a TRBL object.\n * @param value - If a number, set the value to all TRBL component,\n * else, if an object, use defined properties and sets undefined ones to 0.\n * x / y are shorthands for same value for left/right and top/bottom.\n * @returns The padding values (top, right, bottom, left)\n * @since 3.0.0\n */\nexport function toTRBL(value: number | TRBL | Point) {\n return _readValueToProps(value, {top: 'y', right: 'x', bottom: 'y', left: 'x'});\n}\n\n/**\n * Converts the given value into a TRBL corners object (similar with css border-radius).\n * @param value - If a number, set the value to all TRBL corner components,\n * else, if an object, use defined properties and sets undefined ones to 0.\n * @returns The TRBL corner values (topLeft, topRight, bottomLeft, bottomRight)\n * @since 3.0.0\n */\nexport function toTRBLCorners(value: number | TRBLCorners) {\n return _readValueToProps(value, ['topLeft', 'topRight', 'bottomLeft', 'bottomRight']);\n}\n\n/**\n * Converts the given value into a padding object with pre-computed width/height.\n * @param value - If a number, set the value to all TRBL component,\n * else, if an object, use defined properties and sets undefined ones to 0.\n * x / y are shorthands for same value for left/right and top/bottom.\n * @returns The padding values (top, right, bottom, left, width, height)\n * @since 2.7.0\n */\nexport function toPadding(value?: number | TRBL): ChartArea {\n const obj = toTRBL(value) as ChartArea;\n\n obj.width = obj.left + obj.right;\n obj.height = obj.top + obj.bottom;\n\n return obj;\n}\n\nexport interface CanvasFontSpec extends FontSpec {\n string: string;\n}\n\n/**\n * Parses font options and returns the font object.\n * @param options - A object that contains font options to be parsed.\n * @param fallback - A object that contains fallback font options.\n * @return The font object.\n * @private\n */\n\nexport function toFont(options: Partial, fallback?: Partial) {\n options = options || {};\n fallback = fallback || defaults.font as FontSpec;\n\n let size = valueOrDefault(options.size, fallback.size);\n\n if (typeof size === 'string') {\n size = parseInt(size, 10);\n }\n let style = valueOrDefault(options.style, fallback.style);\n if (style && !('' + style).match(FONT_STYLE)) {\n console.warn('Invalid font style specified: \"' + style + '\"');\n style = undefined;\n }\n\n const font = {\n family: valueOrDefault(options.family, fallback.family),\n lineHeight: toLineHeight(valueOrDefault(options.lineHeight, fallback.lineHeight), size),\n size,\n style,\n weight: valueOrDefault(options.weight, fallback.weight),\n string: ''\n };\n\n font.string = toFontString(font);\n return font;\n}\n\n/**\n * Evaluates the given `inputs` sequentially and returns the first defined value.\n * @param inputs - An array of values, falling back to the last value.\n * @param context - If defined and the current value is a function, the value\n * is called with `context` as first argument and the result becomes the new input.\n * @param index - If defined and the current value is an array, the value\n * at `index` become the new input.\n * @param info - object to return information about resolution in\n * @param info.cacheable - Will be set to `false` if option is not cacheable.\n * @since 2.7.0\n */\nexport function resolve(inputs: Array, context?: object, index?: number, info?: { cacheable: boolean }) {\n let cacheable = true;\n let i: number, ilen: number, value: unknown;\n\n for (i = 0, ilen = inputs.length; i < ilen; ++i) {\n value = inputs[i];\n if (value === undefined) {\n continue;\n }\n if (context !== undefined && typeof value === 'function') {\n value = value(context);\n cacheable = false;\n }\n if (index !== undefined && isArray(value)) {\n value = value[index % value.length];\n cacheable = false;\n }\n if (value !== undefined) {\n if (info && !cacheable) {\n info.cacheable = false;\n }\n return value;\n }\n }\n}\n\n/**\n * @param minmax\n * @param grace\n * @param beginAtZero\n * @private\n */\nexport function _addGrace(minmax: { min: number; max: number; }, grace: number | string, beginAtZero: boolean) {\n const {min, max} = minmax;\n const change = toDimension(grace, (max - min) / 2);\n const keepZero = (value: number, add: number) => beginAtZero && value === 0 ? 0 : value + add;\n return {\n min: keepZero(min, -Math.abs(change)),\n max: keepZero(max, change)\n };\n}\n\n/**\n * Create a context inheriting parentContext\n * @param parentContext\n * @param context\n * @returns\n */\nexport function createContext(parentContext: null, context: T): T;\nexport function createContext(parentContext: P, context: T): P & T;\nexport function createContext(parentContext: object, context: object) {\n return Object.assign(Object.create(parentContext), context);\n}\n","export interface RTLAdapter {\n x(x: number): number;\n setWidth(w: number): void;\n textAlign(align: 'center' | 'left' | 'right'): 'center' | 'left' | 'right';\n xPlus(x: number, value: number): number;\n leftForLtr(x: number, itemWidth: number): number;\n}\n\nconst getRightToLeftAdapter = function(rectX: number, width: number): RTLAdapter {\n return {\n x(x) {\n return rectX + rectX + width - x;\n },\n setWidth(w) {\n width = w;\n },\n textAlign(align) {\n if (align === 'center') {\n return align;\n }\n return align === 'right' ? 'left' : 'right';\n },\n xPlus(x, value) {\n return x - value;\n },\n leftForLtr(x, itemWidth) {\n return x - itemWidth;\n },\n };\n};\n\nconst getLeftToRightAdapter = function(): RTLAdapter {\n return {\n x(x) {\n return x;\n },\n setWidth(w) { // eslint-disable-line no-unused-vars\n },\n textAlign(align) {\n return align;\n },\n xPlus(x, value) {\n return x + value;\n },\n leftForLtr(x, _itemWidth) { // eslint-disable-line @typescript-eslint/no-unused-vars\n return x;\n },\n };\n};\n\nexport function getRtlAdapter(rtl: boolean, rectX: number, width: number) {\n return rtl ? getRightToLeftAdapter(rectX, width) : getLeftToRightAdapter();\n}\n\nexport function overrideTextDirection(ctx: CanvasRenderingContext2D, direction: 'ltr' | 'rtl') {\n let style: CSSStyleDeclaration, original: [string, string];\n if (direction === 'ltr' || direction === 'rtl') {\n style = ctx.canvas.style;\n original = [\n style.getPropertyValue('direction'),\n style.getPropertyPriority('direction'),\n ];\n\n style.setProperty('direction', direction, 'important');\n (ctx as { prevTextDirection?: [string, string] }).prevTextDirection = original;\n }\n}\n\nexport function restoreTextDirection(ctx: CanvasRenderingContext2D, original?: [string, string]) {\n if (original !== undefined) {\n delete (ctx as { prevTextDirection?: [string, string] }).prevTextDirection;\n ctx.canvas.style.setProperty('direction', original[0], original[1]);\n }\n}\n","import {_angleBetween, _angleDiff, _isBetween, _normalizeAngle} from './helpers.math.js';\nimport {createContext} from './helpers.options.js';\n\n/**\n * @typedef { import('../elements/element.line.js').default } LineElement\n * @typedef { import('../elements/element.point.js').default } PointElement\n * @typedef {{start: number, end: number, loop: boolean, style?: any}} Segment\n */\n\nfunction propertyFn(property) {\n if (property === 'angle') {\n return {\n between: _angleBetween,\n compare: _angleDiff,\n normalize: _normalizeAngle,\n };\n }\n return {\n between: _isBetween,\n compare: (a, b) => a - b,\n normalize: x => x\n };\n}\n\nfunction normalizeSegment({start, end, count, loop, style}) {\n return {\n start: start % count,\n end: end % count,\n loop: loop && (end - start + 1) % count === 0,\n style\n };\n}\n\nfunction getSegment(segment, points, bounds) {\n const {property, start: startBound, end: endBound} = bounds;\n const {between, normalize} = propertyFn(property);\n const count = points.length;\n // eslint-disable-next-line prefer-const\n let {start, end, loop} = segment;\n let i, ilen;\n\n if (loop) {\n start += count;\n end += count;\n for (i = 0, ilen = count; i < ilen; ++i) {\n if (!between(normalize(points[start % count][property]), startBound, endBound)) {\n break;\n }\n start--;\n end--;\n }\n start %= count;\n end %= count;\n }\n\n if (end < start) {\n end += count;\n }\n return {start, end, loop, style: segment.style};\n}\n\n/**\n * Returns the sub-segment(s) of a line segment that fall in the given bounds\n * @param {object} segment\n * @param {number} segment.start - start index of the segment, referring the points array\n * @param {number} segment.end - end index of the segment, referring the points array\n * @param {boolean} segment.loop - indicates that the segment is a loop\n * @param {object} [segment.style] - segment style\n * @param {PointElement[]} points - the points that this segment refers to\n * @param {object} [bounds]\n * @param {string} bounds.property - the property of a `PointElement` we are bounding. `x`, `y` or `angle`.\n * @param {number} bounds.start - start value of the property\n * @param {number} bounds.end - end value of the property\n * @private\n **/\nexport function _boundSegment(segment, points, bounds) {\n if (!bounds) {\n return [segment];\n }\n\n const {property, start: startBound, end: endBound} = bounds;\n const count = points.length;\n const {compare, between, normalize} = propertyFn(property);\n const {start, end, loop, style} = getSegment(segment, points, bounds);\n\n const result = [];\n let inside = false;\n let subStart = null;\n let value, point, prevValue;\n\n const startIsBefore = () => between(startBound, prevValue, value) && compare(startBound, prevValue) !== 0;\n const endIsBefore = () => compare(endBound, value) === 0 || between(endBound, prevValue, value);\n const shouldStart = () => inside || startIsBefore();\n const shouldStop = () => !inside || endIsBefore();\n\n for (let i = start, prev = start; i <= end; ++i) {\n point = points[i % count];\n\n if (point.skip) {\n continue;\n }\n\n value = normalize(point[property]);\n\n if (value === prevValue) {\n continue;\n }\n\n inside = between(value, startBound, endBound);\n\n if (subStart === null && shouldStart()) {\n subStart = compare(value, startBound) === 0 ? i : prev;\n }\n\n if (subStart !== null && shouldStop()) {\n result.push(normalizeSegment({start: subStart, end: i, loop, count, style}));\n subStart = null;\n }\n prev = i;\n prevValue = value;\n }\n\n if (subStart !== null) {\n result.push(normalizeSegment({start: subStart, end, loop, count, style}));\n }\n\n return result;\n}\n\n\n/**\n * Returns the segments of the line that are inside given bounds\n * @param {LineElement} line\n * @param {object} [bounds]\n * @param {string} bounds.property - the property we are bounding with. `x`, `y` or `angle`.\n * @param {number} bounds.start - start value of the `property`\n * @param {number} bounds.end - end value of the `property`\n * @private\n */\nexport function _boundSegments(line, bounds) {\n const result = [];\n const segments = line.segments;\n\n for (let i = 0; i < segments.length; i++) {\n const sub = _boundSegment(segments[i], line.points, bounds);\n if (sub.length) {\n result.push(...sub);\n }\n }\n return result;\n}\n\n/**\n * Find start and end index of a line.\n */\nfunction findStartAndEnd(points, count, loop, spanGaps) {\n let start = 0;\n let end = count - 1;\n\n if (loop && !spanGaps) {\n // loop and not spanning gaps, first find a gap to start from\n while (start < count && !points[start].skip) {\n start++;\n }\n }\n\n // find first non skipped point (after the first gap possibly)\n while (start < count && points[start].skip) {\n start++;\n }\n\n // if we looped to count, start needs to be 0\n start %= count;\n\n if (loop) {\n // loop will go past count, if start > 0\n end += start;\n }\n\n while (end > start && points[end % count].skip) {\n end--;\n }\n\n // end could be more than count, normalize\n end %= count;\n\n return {start, end};\n}\n\n/**\n * Compute solid segments from Points, when spanGaps === false\n * @param {PointElement[]} points - the points\n * @param {number} start - start index\n * @param {number} max - max index (can go past count on a loop)\n * @param {boolean} loop - boolean indicating that this would be a loop if no gaps are found\n */\nfunction solidSegments(points, start, max, loop) {\n const count = points.length;\n const result = [];\n let last = start;\n let prev = points[start];\n let end;\n\n for (end = start + 1; end <= max; ++end) {\n const cur = points[end % count];\n if (cur.skip || cur.stop) {\n if (!prev.skip) {\n loop = false;\n result.push({start: start % count, end: (end - 1) % count, loop});\n // @ts-ignore\n start = last = cur.stop ? end : null;\n }\n } else {\n last = end;\n if (prev.skip) {\n start = end;\n }\n }\n prev = cur;\n }\n\n if (last !== null) {\n result.push({start: start % count, end: last % count, loop});\n }\n\n return result;\n}\n\n/**\n * Compute the continuous segments that define the whole line\n * There can be skipped points within a segment, if spanGaps is true.\n * @param {LineElement} line\n * @param {object} [segmentOptions]\n * @return {Segment[]}\n * @private\n */\nexport function _computeSegments(line, segmentOptions) {\n const points = line.points;\n const spanGaps = line.options.spanGaps;\n const count = points.length;\n\n if (!count) {\n return [];\n }\n\n const loop = !!line._loop;\n const {start, end} = findStartAndEnd(points, count, loop, spanGaps);\n\n if (spanGaps === true) {\n return splitByStyles(line, [{start, end, loop}], points, segmentOptions);\n }\n\n const max = end < start ? end + count : end;\n const completeLoop = !!line._fullLoop && start === 0 && end === count - 1;\n return splitByStyles(line, solidSegments(points, start, max, completeLoop), points, segmentOptions);\n}\n\n/**\n * @param {Segment[]} segments\n * @param {PointElement[]} points\n * @param {object} [segmentOptions]\n * @return {Segment[]}\n */\nfunction splitByStyles(line, segments, points, segmentOptions) {\n if (!segmentOptions || !segmentOptions.setContext || !points) {\n return segments;\n }\n return doSplitByStyles(line, segments, points, segmentOptions);\n}\n\n/**\n * @param {LineElement} line\n * @param {Segment[]} segments\n * @param {PointElement[]} points\n * @param {object} [segmentOptions]\n * @return {Segment[]}\n */\nfunction doSplitByStyles(line, segments, points, segmentOptions) {\n const chartContext = line._chart.getContext();\n const baseStyle = readStyle(line.options);\n const {_datasetIndex: datasetIndex, options: {spanGaps}} = line;\n const count = points.length;\n const result = [];\n let prevStyle = baseStyle;\n let start = segments[0].start;\n let i = start;\n\n function addStyle(s, e, l, st) {\n const dir = spanGaps ? -1 : 1;\n if (s === e) {\n return;\n }\n // Style can not start/end on a skipped point, adjust indices accordingly\n s += count;\n while (points[s % count].skip) {\n s -= dir;\n }\n while (points[e % count].skip) {\n e += dir;\n }\n if (s % count !== e % count) {\n result.push({start: s % count, end: e % count, loop: l, style: st});\n prevStyle = st;\n start = e % count;\n }\n }\n\n for (const segment of segments) {\n start = spanGaps ? start : segment.start;\n let prev = points[start % count];\n let style;\n for (i = start + 1; i <= segment.end; i++) {\n const pt = points[i % count];\n style = readStyle(segmentOptions.setContext(createContext(chartContext, {\n type: 'segment',\n p0: prev,\n p1: pt,\n p0DataIndex: (i - 1) % count,\n p1DataIndex: i % count,\n datasetIndex\n })));\n if (styleChanged(style, prevStyle)) {\n addStyle(start, i - 1, segment.loop, prevStyle);\n }\n prev = pt;\n prevStyle = style;\n }\n if (start < i - 1) {\n addStyle(start, i - 1, segment.loop, prevStyle);\n }\n }\n\n return result;\n}\n\nfunction readStyle(options) {\n return {\n backgroundColor: options.backgroundColor,\n borderCapStyle: options.borderCapStyle,\n borderDash: options.borderDash,\n borderDashOffset: options.borderDashOffset,\n borderJoinStyle: options.borderJoinStyle,\n borderWidth: options.borderWidth,\n borderColor: options.borderColor\n };\n}\n\nfunction styleChanged(style, prevStyle) {\n return prevStyle && JSON.stringify(style) !== JSON.stringify(prevStyle);\n}\n","import {_lookupByKey, _rlookupByKey} from '../helpers/helpers.collection.js';\nimport {getRelativePosition} from '../helpers/helpers.dom.js';\nimport {_angleBetween, getAngleFromPoint} from '../helpers/helpers.math.js';\nimport {_isPointInArea} from '../helpers/index.js';\n\n/**\n * @typedef { import('./core.controller.js').default } Chart\n * @typedef { import('../types/index.js').ChartEvent } ChartEvent\n * @typedef {{axis?: string, intersect?: boolean, includeInvisible?: boolean}} InteractionOptions\n * @typedef {{datasetIndex: number, index: number, element: import('./core.element.js').default}} InteractionItem\n * @typedef { import('../types/index.js').Point } Point\n */\n\n/**\n * Helper function to do binary search when possible\n * @param {object} metaset - the dataset meta\n * @param {string} axis - the axis mode. x|y|xy|r\n * @param {number} value - the value to find\n * @param {boolean} [intersect] - should the element intersect\n * @returns {{lo:number, hi:number}} indices to search data array between\n */\nfunction binarySearch(metaset, axis, value, intersect) {\n const {controller, data, _sorted} = metaset;\n const iScale = controller._cachedMeta.iScale;\n if (iScale && axis === iScale.axis && axis !== 'r' && _sorted && data.length) {\n const lookupMethod = iScale._reversePixels ? _rlookupByKey : _lookupByKey;\n if (!intersect) {\n return lookupMethod(data, axis, value);\n } else if (controller._sharedOptions) {\n // _sharedOptions indicates that each element has equal options -> equal proportions\n // So we can do a ranged binary search based on the range of first element and\n // be confident to get the full range of indices that can intersect with the value.\n const el = data[0];\n const range = typeof el.getRange === 'function' && el.getRange(axis);\n if (range) {\n const start = lookupMethod(data, axis, value - range);\n const end = lookupMethod(data, axis, value + range);\n return {lo: start.lo, hi: end.hi};\n }\n }\n }\n // Default to all elements, when binary search can not be used.\n return {lo: 0, hi: data.length - 1};\n}\n\n/**\n * Helper function to select candidate elements for interaction\n * @param {Chart} chart - the chart\n * @param {string} axis - the axis mode. x|y|xy|r\n * @param {Point} position - the point to be nearest to, in relative coordinates\n * @param {function} handler - the callback to execute for each visible item\n * @param {boolean} [intersect] - consider intersecting items\n */\nfunction evaluateInteractionItems(chart, axis, position, handler, intersect) {\n const metasets = chart.getSortedVisibleDatasetMetas();\n const value = position[axis];\n for (let i = 0, ilen = metasets.length; i < ilen; ++i) {\n const {index, data} = metasets[i];\n const {lo, hi} = binarySearch(metasets[i], axis, value, intersect);\n for (let j = lo; j <= hi; ++j) {\n const element = data[j];\n if (!element.skip) {\n handler(element, index, j);\n }\n }\n }\n}\n\n/**\n * Get a distance metric function for two points based on the\n * axis mode setting\n * @param {string} axis - the axis mode. x|y|xy|r\n */\nfunction getDistanceMetricForAxis(axis) {\n const useX = axis.indexOf('x') !== -1;\n const useY = axis.indexOf('y') !== -1;\n\n return function(pt1, pt2) {\n const deltaX = useX ? Math.abs(pt1.x - pt2.x) : 0;\n const deltaY = useY ? Math.abs(pt1.y - pt2.y) : 0;\n return Math.sqrt(Math.pow(deltaX, 2) + Math.pow(deltaY, 2));\n };\n}\n\n/**\n * Helper function to get the items that intersect the event position\n * @param {Chart} chart - the chart\n * @param {Point} position - the point to be nearest to, in relative coordinates\n * @param {string} axis - the axis mode. x|y|xy|r\n * @param {boolean} [useFinalPosition] - use the element's animation target instead of current position\n * @param {boolean} [includeInvisible] - include invisible points that are outside of the chart area\n * @return {InteractionItem[]} the nearest items\n */\nfunction getIntersectItems(chart, position, axis, useFinalPosition, includeInvisible) {\n const items = [];\n\n if (!includeInvisible && !chart.isPointInArea(position)) {\n return items;\n }\n\n const evaluationFunc = function(element, datasetIndex, index) {\n if (!includeInvisible && !_isPointInArea(element, chart.chartArea, 0)) {\n return;\n }\n if (element.inRange(position.x, position.y, useFinalPosition)) {\n items.push({element, datasetIndex, index});\n }\n };\n\n evaluateInteractionItems(chart, axis, position, evaluationFunc, true);\n return items;\n}\n\n/**\n * Helper function to get the items nearest to the event position for a radial chart\n * @param {Chart} chart - the chart to look at elements from\n * @param {Point} position - the point to be nearest to, in relative coordinates\n * @param {string} axis - the axes along which to measure distance\n * @param {boolean} [useFinalPosition] - use the element's animation target instead of current position\n * @return {InteractionItem[]} the nearest items\n */\nfunction getNearestRadialItems(chart, position, axis, useFinalPosition) {\n let items = [];\n\n function evaluationFunc(element, datasetIndex, index) {\n const {startAngle, endAngle} = element.getProps(['startAngle', 'endAngle'], useFinalPosition);\n const {angle} = getAngleFromPoint(element, {x: position.x, y: position.y});\n\n if (_angleBetween(angle, startAngle, endAngle)) {\n items.push({element, datasetIndex, index});\n }\n }\n\n evaluateInteractionItems(chart, axis, position, evaluationFunc);\n return items;\n}\n\n/**\n * Helper function to get the items nearest to the event position for a cartesian chart\n * @param {Chart} chart - the chart to look at elements from\n * @param {Point} position - the point to be nearest to, in relative coordinates\n * @param {string} axis - the axes along which to measure distance\n * @param {boolean} [intersect] - if true, only consider items that intersect the position\n * @param {boolean} [useFinalPosition] - use the element's animation target instead of current position\n * @param {boolean} [includeInvisible] - include invisible points that are outside of the chart area\n * @return {InteractionItem[]} the nearest items\n */\nfunction getNearestCartesianItems(chart, position, axis, intersect, useFinalPosition, includeInvisible) {\n let items = [];\n const distanceMetric = getDistanceMetricForAxis(axis);\n let minDistance = Number.POSITIVE_INFINITY;\n\n function evaluationFunc(element, datasetIndex, index) {\n const inRange = element.inRange(position.x, position.y, useFinalPosition);\n if (intersect && !inRange) {\n return;\n }\n\n const center = element.getCenterPoint(useFinalPosition);\n const pointInArea = !!includeInvisible || chart.isPointInArea(center);\n if (!pointInArea && !inRange) {\n return;\n }\n\n const distance = distanceMetric(position, center);\n if (distance < minDistance) {\n items = [{element, datasetIndex, index}];\n minDistance = distance;\n } else if (distance === minDistance) {\n // Can have multiple items at the same distance in which case we sort by size\n items.push({element, datasetIndex, index});\n }\n }\n\n evaluateInteractionItems(chart, axis, position, evaluationFunc);\n return items;\n}\n\n/**\n * Helper function to get the items nearest to the event position considering all visible items in the chart\n * @param {Chart} chart - the chart to look at elements from\n * @param {Point} position - the point to be nearest to, in relative coordinates\n * @param {string} axis - the axes along which to measure distance\n * @param {boolean} [intersect] - if true, only consider items that intersect the position\n * @param {boolean} [useFinalPosition] - use the element's animation target instead of current position\n * @param {boolean} [includeInvisible] - include invisible points that are outside of the chart area\n * @return {InteractionItem[]} the nearest items\n */\nfunction getNearestItems(chart, position, axis, intersect, useFinalPosition, includeInvisible) {\n if (!includeInvisible && !chart.isPointInArea(position)) {\n return [];\n }\n\n return axis === 'r' && !intersect\n ? getNearestRadialItems(chart, position, axis, useFinalPosition)\n : getNearestCartesianItems(chart, position, axis, intersect, useFinalPosition, includeInvisible);\n}\n\n/**\n * Helper function to get the items matching along the given X or Y axis\n * @param {Chart} chart - the chart to look at elements from\n * @param {Point} position - the point to be nearest to, in relative coordinates\n * @param {string} axis - the axis to match\n * @param {boolean} [intersect] - if true, only consider items that intersect the position\n * @param {boolean} [useFinalPosition] - use the element's animation target instead of current position\n * @return {InteractionItem[]} the nearest items\n */\nfunction getAxisItems(chart, position, axis, intersect, useFinalPosition) {\n const items = [];\n const rangeMethod = axis === 'x' ? 'inXRange' : 'inYRange';\n let intersectsItem = false;\n\n evaluateInteractionItems(chart, axis, position, (element, datasetIndex, index) => {\n if (element[rangeMethod](position[axis], useFinalPosition)) {\n items.push({element, datasetIndex, index});\n intersectsItem = intersectsItem || element.inRange(position.x, position.y, useFinalPosition);\n }\n });\n\n // If we want to trigger on an intersect and we don't have any items\n // that intersect the position, return nothing\n if (intersect && !intersectsItem) {\n return [];\n }\n return items;\n}\n\n/**\n * Contains interaction related functions\n * @namespace Chart.Interaction\n */\nexport default {\n // Part of the public API to facilitate developers creating their own modes\n evaluateInteractionItems,\n\n // Helper function for different modes\n modes: {\n /**\n\t\t * Returns items at the same index. If the options.intersect parameter is true, we only return items if we intersect something\n\t\t * If the options.intersect mode is false, we find the nearest item and return the items at the same index as that item\n\t\t * @function Chart.Interaction.modes.index\n\t\t * @since v2.4.0\n\t\t * @param {Chart} chart - the chart we are returning items from\n\t\t * @param {Event} e - the event we are find things at\n\t\t * @param {InteractionOptions} options - options to use\n\t\t * @param {boolean} [useFinalPosition] - use final element position (animation target)\n\t\t * @return {InteractionItem[]} - items that are found\n\t\t */\n index(chart, e, options, useFinalPosition) {\n const position = getRelativePosition(e, chart);\n // Default axis for index mode is 'x' to match old behaviour\n const axis = options.axis || 'x';\n const includeInvisible = options.includeInvisible || false;\n const items = options.intersect\n ? getIntersectItems(chart, position, axis, useFinalPosition, includeInvisible)\n : getNearestItems(chart, position, axis, false, useFinalPosition, includeInvisible);\n const elements = [];\n\n if (!items.length) {\n return [];\n }\n\n chart.getSortedVisibleDatasetMetas().forEach((meta) => {\n const index = items[0].index;\n const element = meta.data[index];\n\n // don't count items that are skipped (null data)\n if (element && !element.skip) {\n elements.push({element, datasetIndex: meta.index, index});\n }\n });\n\n return elements;\n },\n\n /**\n\t\t * Returns items in the same dataset. If the options.intersect parameter is true, we only return items if we intersect something\n\t\t * If the options.intersect is false, we find the nearest item and return the items in that dataset\n\t\t * @function Chart.Interaction.modes.dataset\n\t\t * @param {Chart} chart - the chart we are returning items from\n\t\t * @param {Event} e - the event we are find things at\n\t\t * @param {InteractionOptions} options - options to use\n\t\t * @param {boolean} [useFinalPosition] - use final element position (animation target)\n\t\t * @return {InteractionItem[]} - items that are found\n\t\t */\n dataset(chart, e, options, useFinalPosition) {\n const position = getRelativePosition(e, chart);\n const axis = options.axis || 'xy';\n const includeInvisible = options.includeInvisible || false;\n let items = options.intersect\n ? getIntersectItems(chart, position, axis, useFinalPosition, includeInvisible) :\n getNearestItems(chart, position, axis, false, useFinalPosition, includeInvisible);\n\n if (items.length > 0) {\n const datasetIndex = items[0].datasetIndex;\n const data = chart.getDatasetMeta(datasetIndex).data;\n items = [];\n for (let i = 0; i < data.length; ++i) {\n items.push({element: data[i], datasetIndex, index: i});\n }\n }\n\n return items;\n },\n\n /**\n\t\t * Point mode returns all elements that hit test based on the event position\n\t\t * of the event\n\t\t * @function Chart.Interaction.modes.intersect\n\t\t * @param {Chart} chart - the chart we are returning items from\n\t\t * @param {Event} e - the event we are find things at\n\t\t * @param {InteractionOptions} options - options to use\n\t\t * @param {boolean} [useFinalPosition] - use final element position (animation target)\n\t\t * @return {InteractionItem[]} - items that are found\n\t\t */\n point(chart, e, options, useFinalPosition) {\n const position = getRelativePosition(e, chart);\n const axis = options.axis || 'xy';\n const includeInvisible = options.includeInvisible || false;\n return getIntersectItems(chart, position, axis, useFinalPosition, includeInvisible);\n },\n\n /**\n\t\t * nearest mode returns the element closest to the point\n\t\t * @function Chart.Interaction.modes.intersect\n\t\t * @param {Chart} chart - the chart we are returning items from\n\t\t * @param {Event} e - the event we are find things at\n\t\t * @param {InteractionOptions} options - options to use\n\t\t * @param {boolean} [useFinalPosition] - use final element position (animation target)\n\t\t * @return {InteractionItem[]} - items that are found\n\t\t */\n nearest(chart, e, options, useFinalPosition) {\n const position = getRelativePosition(e, chart);\n const axis = options.axis || 'xy';\n const includeInvisible = options.includeInvisible || false;\n return getNearestItems(chart, position, axis, options.intersect, useFinalPosition, includeInvisible);\n },\n\n /**\n\t\t * x mode returns the elements that hit-test at the current x coordinate\n\t\t * @function Chart.Interaction.modes.x\n\t\t * @param {Chart} chart - the chart we are returning items from\n\t\t * @param {Event} e - the event we are find things at\n\t\t * @param {InteractionOptions} options - options to use\n\t\t * @param {boolean} [useFinalPosition] - use final element position (animation target)\n\t\t * @return {InteractionItem[]} - items that are found\n\t\t */\n x(chart, e, options, useFinalPosition) {\n const position = getRelativePosition(e, chart);\n return getAxisItems(chart, position, 'x', options.intersect, useFinalPosition);\n },\n\n /**\n\t\t * y mode returns the elements that hit-test at the current y coordinate\n\t\t * @function Chart.Interaction.modes.y\n\t\t * @param {Chart} chart - the chart we are returning items from\n\t\t * @param {Event} e - the event we are find things at\n\t\t * @param {InteractionOptions} options - options to use\n\t\t * @param {boolean} [useFinalPosition] - use final element position (animation target)\n\t\t * @return {InteractionItem[]} - items that are found\n\t\t */\n y(chart, e, options, useFinalPosition) {\n const position = getRelativePosition(e, chart);\n return getAxisItems(chart, position, 'y', options.intersect, useFinalPosition);\n }\n }\n};\n","import {defined, each, isObject} from '../helpers/helpers.core.js';\nimport {toPadding} from '../helpers/helpers.options.js';\n\n/**\n * @typedef { import('./core.controller.js').default } Chart\n */\n\nconst STATIC_POSITIONS = ['left', 'top', 'right', 'bottom'];\n\nfunction filterByPosition(array, position) {\n return array.filter(v => v.pos === position);\n}\n\nfunction filterDynamicPositionByAxis(array, axis) {\n return array.filter(v => STATIC_POSITIONS.indexOf(v.pos) === -1 && v.box.axis === axis);\n}\n\nfunction sortByWeight(array, reverse) {\n return array.sort((a, b) => {\n const v0 = reverse ? b : a;\n const v1 = reverse ? a : b;\n return v0.weight === v1.weight ?\n v0.index - v1.index :\n v0.weight - v1.weight;\n });\n}\n\nfunction wrapBoxes(boxes) {\n const layoutBoxes = [];\n let i, ilen, box, pos, stack, stackWeight;\n\n for (i = 0, ilen = (boxes || []).length; i < ilen; ++i) {\n box = boxes[i];\n ({position: pos, options: {stack, stackWeight = 1}} = box);\n layoutBoxes.push({\n index: i,\n box,\n pos,\n horizontal: box.isHorizontal(),\n weight: box.weight,\n stack: stack && (pos + stack),\n stackWeight\n });\n }\n return layoutBoxes;\n}\n\nfunction buildStacks(layouts) {\n const stacks = {};\n for (const wrap of layouts) {\n const {stack, pos, stackWeight} = wrap;\n if (!stack || !STATIC_POSITIONS.includes(pos)) {\n continue;\n }\n const _stack = stacks[stack] || (stacks[stack] = {count: 0, placed: 0, weight: 0, size: 0});\n _stack.count++;\n _stack.weight += stackWeight;\n }\n return stacks;\n}\n\n/**\n * store dimensions used instead of available chartArea in fitBoxes\n **/\nfunction setLayoutDims(layouts, params) {\n const stacks = buildStacks(layouts);\n const {vBoxMaxWidth, hBoxMaxHeight} = params;\n let i, ilen, layout;\n for (i = 0, ilen = layouts.length; i < ilen; ++i) {\n layout = layouts[i];\n const {fullSize} = layout.box;\n const stack = stacks[layout.stack];\n const factor = stack && layout.stackWeight / stack.weight;\n if (layout.horizontal) {\n layout.width = factor ? factor * vBoxMaxWidth : fullSize && params.availableWidth;\n layout.height = hBoxMaxHeight;\n } else {\n layout.width = vBoxMaxWidth;\n layout.height = factor ? factor * hBoxMaxHeight : fullSize && params.availableHeight;\n }\n }\n return stacks;\n}\n\nfunction buildLayoutBoxes(boxes) {\n const layoutBoxes = wrapBoxes(boxes);\n const fullSize = sortByWeight(layoutBoxes.filter(wrap => wrap.box.fullSize), true);\n const left = sortByWeight(filterByPosition(layoutBoxes, 'left'), true);\n const right = sortByWeight(filterByPosition(layoutBoxes, 'right'));\n const top = sortByWeight(filterByPosition(layoutBoxes, 'top'), true);\n const bottom = sortByWeight(filterByPosition(layoutBoxes, 'bottom'));\n const centerHorizontal = filterDynamicPositionByAxis(layoutBoxes, 'x');\n const centerVertical = filterDynamicPositionByAxis(layoutBoxes, 'y');\n\n return {\n fullSize,\n leftAndTop: left.concat(top),\n rightAndBottom: right.concat(centerVertical).concat(bottom).concat(centerHorizontal),\n chartArea: filterByPosition(layoutBoxes, 'chartArea'),\n vertical: left.concat(right).concat(centerVertical),\n horizontal: top.concat(bottom).concat(centerHorizontal)\n };\n}\n\nfunction getCombinedMax(maxPadding, chartArea, a, b) {\n return Math.max(maxPadding[a], chartArea[a]) + Math.max(maxPadding[b], chartArea[b]);\n}\n\nfunction updateMaxPadding(maxPadding, boxPadding) {\n maxPadding.top = Math.max(maxPadding.top, boxPadding.top);\n maxPadding.left = Math.max(maxPadding.left, boxPadding.left);\n maxPadding.bottom = Math.max(maxPadding.bottom, boxPadding.bottom);\n maxPadding.right = Math.max(maxPadding.right, boxPadding.right);\n}\n\nfunction updateDims(chartArea, params, layout, stacks) {\n const {pos, box} = layout;\n const maxPadding = chartArea.maxPadding;\n\n // dynamically placed boxes size is not considered\n if (!isObject(pos)) {\n if (layout.size) {\n // this layout was already counted for, lets first reduce old size\n chartArea[pos] -= layout.size;\n }\n const stack = stacks[layout.stack] || {size: 0, count: 1};\n stack.size = Math.max(stack.size, layout.horizontal ? box.height : box.width);\n layout.size = stack.size / stack.count;\n chartArea[pos] += layout.size;\n }\n\n if (box.getPadding) {\n updateMaxPadding(maxPadding, box.getPadding());\n }\n\n const newWidth = Math.max(0, params.outerWidth - getCombinedMax(maxPadding, chartArea, 'left', 'right'));\n const newHeight = Math.max(0, params.outerHeight - getCombinedMax(maxPadding, chartArea, 'top', 'bottom'));\n const widthChanged = newWidth !== chartArea.w;\n const heightChanged = newHeight !== chartArea.h;\n chartArea.w = newWidth;\n chartArea.h = newHeight;\n\n // return booleans on the changes per direction\n return layout.horizontal\n ? {same: widthChanged, other: heightChanged}\n : {same: heightChanged, other: widthChanged};\n}\n\nfunction handleMaxPadding(chartArea) {\n const maxPadding = chartArea.maxPadding;\n\n function updatePos(pos) {\n const change = Math.max(maxPadding[pos] - chartArea[pos], 0);\n chartArea[pos] += change;\n return change;\n }\n chartArea.y += updatePos('top');\n chartArea.x += updatePos('left');\n updatePos('right');\n updatePos('bottom');\n}\n\nfunction getMargins(horizontal, chartArea) {\n const maxPadding = chartArea.maxPadding;\n\n function marginForPositions(positions) {\n const margin = {left: 0, top: 0, right: 0, bottom: 0};\n positions.forEach((pos) => {\n margin[pos] = Math.max(chartArea[pos], maxPadding[pos]);\n });\n return margin;\n }\n\n return horizontal\n ? marginForPositions(['left', 'right'])\n : marginForPositions(['top', 'bottom']);\n}\n\nfunction fitBoxes(boxes, chartArea, params, stacks) {\n const refitBoxes = [];\n let i, ilen, layout, box, refit, changed;\n\n for (i = 0, ilen = boxes.length, refit = 0; i < ilen; ++i) {\n layout = boxes[i];\n box = layout.box;\n\n box.update(\n layout.width || chartArea.w,\n layout.height || chartArea.h,\n getMargins(layout.horizontal, chartArea)\n );\n const {same, other} = updateDims(chartArea, params, layout, stacks);\n\n // Dimensions changed and there were non full width boxes before this\n // -> we have to refit those\n refit |= same && refitBoxes.length;\n\n // Chart area changed in the opposite direction\n changed = changed || other;\n\n if (!box.fullSize) { // fullSize boxes don't need to be re-fitted in any case\n refitBoxes.push(layout);\n }\n }\n\n return refit && fitBoxes(refitBoxes, chartArea, params, stacks) || changed;\n}\n\nfunction setBoxDims(box, left, top, width, height) {\n box.top = top;\n box.left = left;\n box.right = left + width;\n box.bottom = top + height;\n box.width = width;\n box.height = height;\n}\n\nfunction placeBoxes(boxes, chartArea, params, stacks) {\n const userPadding = params.padding;\n let {x, y} = chartArea;\n\n for (const layout of boxes) {\n const box = layout.box;\n const stack = stacks[layout.stack] || {count: 1, placed: 0, weight: 1};\n const weight = (layout.stackWeight / stack.weight) || 1;\n if (layout.horizontal) {\n const width = chartArea.w * weight;\n const height = stack.size || box.height;\n if (defined(stack.start)) {\n y = stack.start;\n }\n if (box.fullSize) {\n setBoxDims(box, userPadding.left, y, params.outerWidth - userPadding.right - userPadding.left, height);\n } else {\n setBoxDims(box, chartArea.left + stack.placed, y, width, height);\n }\n stack.start = y;\n stack.placed += width;\n y = box.bottom;\n } else {\n const height = chartArea.h * weight;\n const width = stack.size || box.width;\n if (defined(stack.start)) {\n x = stack.start;\n }\n if (box.fullSize) {\n setBoxDims(box, x, userPadding.top, width, params.outerHeight - userPadding.bottom - userPadding.top);\n } else {\n setBoxDims(box, x, chartArea.top + stack.placed, width, height);\n }\n stack.start = x;\n stack.placed += height;\n x = box.right;\n }\n }\n\n chartArea.x = x;\n chartArea.y = y;\n}\n\n/**\n * @interface LayoutItem\n * @typedef {object} LayoutItem\n * @prop {string} position - The position of the item in the chart layout. Possible values are\n * 'left', 'top', 'right', 'bottom', and 'chartArea'\n * @prop {number} weight - The weight used to sort the item. Higher weights are further away from the chart area\n * @prop {boolean} fullSize - if true, and the item is horizontal, then push vertical boxes down\n * @prop {function} isHorizontal - returns true if the layout item is horizontal (ie. top or bottom)\n * @prop {function} update - Takes two parameters: width and height. Returns size of item\n * @prop {function} draw - Draws the element\n * @prop {function} [getPadding] - Returns an object with padding on the edges\n * @prop {number} width - Width of item. Must be valid after update()\n * @prop {number} height - Height of item. Must be valid after update()\n * @prop {number} left - Left edge of the item. Set by layout system and cannot be used in update\n * @prop {number} top - Top edge of the item. Set by layout system and cannot be used in update\n * @prop {number} right - Right edge of the item. Set by layout system and cannot be used in update\n * @prop {number} bottom - Bottom edge of the item. Set by layout system and cannot be used in update\n */\n\n// The layout service is very self explanatory. It's responsible for the layout within a chart.\n// Scales, Legends and Plugins all rely on the layout service and can easily register to be placed anywhere they need\n// It is this service's responsibility of carrying out that layout.\nexport default {\n\n /**\n\t * Register a box to a chart.\n\t * A box is simply a reference to an object that requires layout. eg. Scales, Legend, Title.\n\t * @param {Chart} chart - the chart to use\n\t * @param {LayoutItem} item - the item to add to be laid out\n\t */\n addBox(chart, item) {\n if (!chart.boxes) {\n chart.boxes = [];\n }\n\n // initialize item with default values\n item.fullSize = item.fullSize || false;\n item.position = item.position || 'top';\n item.weight = item.weight || 0;\n // @ts-ignore\n item._layers = item._layers || function() {\n return [{\n z: 0,\n draw(chartArea) {\n item.draw(chartArea);\n }\n }];\n };\n\n chart.boxes.push(item);\n },\n\n /**\n\t * Remove a layoutItem from a chart\n\t * @param {Chart} chart - the chart to remove the box from\n\t * @param {LayoutItem} layoutItem - the item to remove from the layout\n\t */\n removeBox(chart, layoutItem) {\n const index = chart.boxes ? chart.boxes.indexOf(layoutItem) : -1;\n if (index !== -1) {\n chart.boxes.splice(index, 1);\n }\n },\n\n /**\n\t * Sets (or updates) options on the given `item`.\n\t * @param {Chart} chart - the chart in which the item lives (or will be added to)\n\t * @param {LayoutItem} item - the item to configure with the given options\n\t * @param {object} options - the new item options.\n\t */\n configure(chart, item, options) {\n item.fullSize = options.fullSize;\n item.position = options.position;\n item.weight = options.weight;\n },\n\n /**\n\t * Fits boxes of the given chart into the given size by having each box measure itself\n\t * then running a fitting algorithm\n\t * @param {Chart} chart - the chart\n\t * @param {number} width - the width to fit into\n\t * @param {number} height - the height to fit into\n * @param {number} minPadding - minimum padding required for each side of chart area\n\t */\n update(chart, width, height, minPadding) {\n if (!chart) {\n return;\n }\n\n const padding = toPadding(chart.options.layout.padding);\n const availableWidth = Math.max(width - padding.width, 0);\n const availableHeight = Math.max(height - padding.height, 0);\n const boxes = buildLayoutBoxes(chart.boxes);\n const verticalBoxes = boxes.vertical;\n const horizontalBoxes = boxes.horizontal;\n\n // Before any changes are made, notify boxes that an update is about to being\n // This is used to clear any cached data (e.g. scale limits)\n each(chart.boxes, box => {\n if (typeof box.beforeLayout === 'function') {\n box.beforeLayout();\n }\n });\n\n // Essentially we now have any number of boxes on each of the 4 sides.\n // Our canvas looks like the following.\n // The areas L1 and L2 are the left axes. R1 is the right axis, T1 is the top axis and\n // B1 is the bottom axis\n // There are also 4 quadrant-like locations (left to right instead of clockwise) reserved for chart overlays\n // These locations are single-box locations only, when trying to register a chartArea location that is already taken,\n // an error will be thrown.\n //\n // |----------------------------------------------------|\n // | T1 (Full Width) |\n // |----------------------------------------------------|\n // | | | T2 | |\n // | |----|-------------------------------------|----|\n // | | | C1 | | C2 | |\n // | | |----| |----| |\n // | | | | |\n // | L1 | L2 | ChartArea (C0) | R1 |\n // | | | | |\n // | | |----| |----| |\n // | | | C3 | | C4 | |\n // | |----|-------------------------------------|----|\n // | | | B1 | |\n // |----------------------------------------------------|\n // | B2 (Full Width) |\n // |----------------------------------------------------|\n //\n\n const visibleVerticalBoxCount = verticalBoxes.reduce((total, wrap) =>\n wrap.box.options && wrap.box.options.display === false ? total : total + 1, 0) || 1;\n\n const params = Object.freeze({\n outerWidth: width,\n outerHeight: height,\n padding,\n availableWidth,\n availableHeight,\n vBoxMaxWidth: availableWidth / 2 / visibleVerticalBoxCount,\n hBoxMaxHeight: availableHeight / 2\n });\n const maxPadding = Object.assign({}, padding);\n updateMaxPadding(maxPadding, toPadding(minPadding));\n const chartArea = Object.assign({\n maxPadding,\n w: availableWidth,\n h: availableHeight,\n x: padding.left,\n y: padding.top\n }, padding);\n\n const stacks = setLayoutDims(verticalBoxes.concat(horizontalBoxes), params);\n\n // First fit the fullSize boxes, to reduce probability of re-fitting.\n fitBoxes(boxes.fullSize, chartArea, params, stacks);\n\n // Then fit vertical boxes\n fitBoxes(verticalBoxes, chartArea, params, stacks);\n\n // Then fit horizontal boxes\n if (fitBoxes(horizontalBoxes, chartArea, params, stacks)) {\n // if the area changed, re-fit vertical boxes\n fitBoxes(verticalBoxes, chartArea, params, stacks);\n }\n\n handleMaxPadding(chartArea);\n\n // Finally place the boxes to correct coordinates\n placeBoxes(boxes.leftAndTop, chartArea, params, stacks);\n\n // Move to opposite side of chart\n chartArea.x += chartArea.w;\n chartArea.y += chartArea.h;\n\n placeBoxes(boxes.rightAndBottom, chartArea, params, stacks);\n\n chart.chartArea = {\n left: chartArea.left,\n top: chartArea.top,\n right: chartArea.left + chartArea.w,\n bottom: chartArea.top + chartArea.h,\n height: chartArea.h,\n width: chartArea.w,\n };\n\n // Finally update boxes in chartArea (radial scale for example)\n each(boxes.chartArea, (layout) => {\n const box = layout.box;\n Object.assign(box, chart.chartArea);\n box.update(chartArea.w, chartArea.h, {left: 0, top: 0, right: 0, bottom: 0});\n });\n }\n};\n","\n/**\n * @typedef { import('../core/core.controller.js').default } Chart\n */\n\n/**\n * Abstract class that allows abstracting platform dependencies away from the chart.\n */\nexport default class BasePlatform {\n /**\n\t * Called at chart construction time, returns a context2d instance implementing\n\t * the [W3C Canvas 2D Context API standard]{@link https://www.w3.org/TR/2dcontext/}.\n\t * @param {HTMLCanvasElement} canvas - The canvas from which to acquire context (platform specific)\n\t * @param {number} [aspectRatio] - The chart options\n\t */\n acquireContext(canvas, aspectRatio) {} // eslint-disable-line no-unused-vars\n\n /**\n\t * Called at chart destruction time, releases any resources associated to the context\n\t * previously returned by the acquireContext() method.\n\t * @param {CanvasRenderingContext2D} context - The context2d instance\n\t * @returns {boolean} true if the method succeeded, else false\n\t */\n releaseContext(context) { // eslint-disable-line no-unused-vars\n return false;\n }\n\n /**\n\t * Registers the specified listener on the given chart.\n\t * @param {Chart} chart - Chart from which to listen for event\n\t * @param {string} type - The ({@link ChartEvent}) type to listen for\n\t * @param {function} listener - Receives a notification (an object that implements\n\t * the {@link ChartEvent} interface) when an event of the specified type occurs.\n\t */\n addEventListener(chart, type, listener) {} // eslint-disable-line no-unused-vars\n\n /**\n\t * Removes the specified listener previously registered with addEventListener.\n\t * @param {Chart} chart - Chart from which to remove the listener\n\t * @param {string} type - The ({@link ChartEvent}) type to remove\n\t * @param {function} listener - The listener function to remove from the event target.\n\t */\n removeEventListener(chart, type, listener) {} // eslint-disable-line no-unused-vars\n\n /**\n\t * @returns {number} the current devicePixelRatio of the device this platform is connected to.\n\t */\n getDevicePixelRatio() {\n return 1;\n }\n\n /**\n\t * Returns the maximum size in pixels of given canvas element.\n\t * @param {HTMLCanvasElement} element\n\t * @param {number} [width] - content width of parent element\n\t * @param {number} [height] - content height of parent element\n\t * @param {number} [aspectRatio] - aspect ratio to maintain\n\t */\n getMaximumSize(element, width, height, aspectRatio) {\n width = Math.max(0, width || element.width);\n height = height || element.height;\n return {\n width,\n height: Math.max(0, aspectRatio ? Math.floor(width / aspectRatio) : height)\n };\n }\n\n /**\n\t * @param {HTMLCanvasElement} canvas\n\t * @returns {boolean} true if the canvas is attached to the platform, false if not.\n\t */\n isAttached(canvas) { // eslint-disable-line no-unused-vars\n return true;\n }\n\n /**\n * Updates config with platform specific requirements\n * @param {import('../core/core.config.js').default} config\n */\n updateConfig(config) { // eslint-disable-line no-unused-vars\n // no-op\n }\n}\n","/**\n * Platform fallback implementation (minimal).\n * @see https://github.com/chartjs/Chart.js/pull/4591#issuecomment-319575939\n */\n\nimport BasePlatform from './platform.base.js';\n\n/**\n * Platform class for charts without access to the DOM or to many element properties\n * This platform is used by default for any chart passed an OffscreenCanvas.\n * @extends BasePlatform\n */\nexport default class BasicPlatform extends BasePlatform {\n acquireContext(item) {\n // To prevent canvas fingerprinting, some add-ons undefine the getContext\n // method, for example: https://github.com/kkapsner/CanvasBlocker\n // https://github.com/chartjs/Chart.js/issues/2807\n return item && item.getContext && item.getContext('2d') || null;\n }\n updateConfig(config) {\n config.options.animation = false;\n }\n}\n","/**\n * Chart.Platform implementation for targeting a web browser\n */\n\nimport BasePlatform from './platform.base.js';\nimport {_getParentNode, getRelativePosition, supportsEventListenerOptions, readUsedSize, getMaximumSize} from '../helpers/helpers.dom.js';\nimport {throttled} from '../helpers/helpers.extras.js';\nimport {isNullOrUndef} from '../helpers/helpers.core.js';\n\n/**\n * @typedef { import('../core/core.controller.js').default } Chart\n */\n\nconst EXPANDO_KEY = '$chartjs';\n\n/**\n * DOM event types -> Chart.js event types.\n * Note: only events with different types are mapped.\n * @see https://developer.mozilla.org/en-US/docs/Web/Events\n */\nconst EVENT_TYPES = {\n touchstart: 'mousedown',\n touchmove: 'mousemove',\n touchend: 'mouseup',\n pointerenter: 'mouseenter',\n pointerdown: 'mousedown',\n pointermove: 'mousemove',\n pointerup: 'mouseup',\n pointerleave: 'mouseout',\n pointerout: 'mouseout'\n};\n\nconst isNullOrEmpty = value => value === null || value === '';\n/**\n * Initializes the canvas style and render size without modifying the canvas display size,\n * since responsiveness is handled by the controller.resize() method. The config is used\n * to determine the aspect ratio to apply in case no explicit height has been specified.\n * @param {HTMLCanvasElement} canvas\n * @param {number} [aspectRatio]\n */\nfunction initCanvas(canvas, aspectRatio) {\n const style = canvas.style;\n\n // NOTE(SB) canvas.getAttribute('width') !== canvas.width: in the first case it\n // returns null or '' if no explicit value has been set to the canvas attribute.\n const renderHeight = canvas.getAttribute('height');\n const renderWidth = canvas.getAttribute('width');\n\n // Chart.js modifies some canvas values that we want to restore on destroy\n canvas[EXPANDO_KEY] = {\n initial: {\n height: renderHeight,\n width: renderWidth,\n style: {\n display: style.display,\n height: style.height,\n width: style.width\n }\n }\n };\n\n // Force canvas to display as block to avoid extra space caused by inline\n // elements, which would interfere with the responsive resize process.\n // https://github.com/chartjs/Chart.js/issues/2538\n style.display = style.display || 'block';\n // Include possible borders in the size\n style.boxSizing = style.boxSizing || 'border-box';\n\n if (isNullOrEmpty(renderWidth)) {\n const displayWidth = readUsedSize(canvas, 'width');\n if (displayWidth !== undefined) {\n canvas.width = displayWidth;\n }\n }\n\n if (isNullOrEmpty(renderHeight)) {\n if (canvas.style.height === '') {\n // If no explicit render height and style height, let's apply the aspect ratio,\n // which one can be specified by the user but also by charts as default option\n // (i.e. options.aspectRatio). If not specified, use canvas aspect ratio of 2.\n canvas.height = canvas.width / (aspectRatio || 2);\n } else {\n const displayHeight = readUsedSize(canvas, 'height');\n if (displayHeight !== undefined) {\n canvas.height = displayHeight;\n }\n }\n }\n\n return canvas;\n}\n\n// Default passive to true as expected by Chrome for 'touchstart' and 'touchend' events.\n// https://github.com/chartjs/Chart.js/issues/4287\nconst eventListenerOptions = supportsEventListenerOptions ? {passive: true} : false;\n\nfunction addListener(node, type, listener) {\n node.addEventListener(type, listener, eventListenerOptions);\n}\n\nfunction removeListener(chart, type, listener) {\n chart.canvas.removeEventListener(type, listener, eventListenerOptions);\n}\n\nfunction fromNativeEvent(event, chart) {\n const type = EVENT_TYPES[event.type] || event.type;\n const {x, y} = getRelativePosition(event, chart);\n return {\n type,\n chart,\n native: event,\n x: x !== undefined ? x : null,\n y: y !== undefined ? y : null,\n };\n}\n\nfunction nodeListContains(nodeList, canvas) {\n for (const node of nodeList) {\n if (node === canvas || node.contains(canvas)) {\n return true;\n }\n }\n}\n\nfunction createAttachObserver(chart, type, listener) {\n const canvas = chart.canvas;\n const observer = new MutationObserver(entries => {\n let trigger = false;\n for (const entry of entries) {\n trigger = trigger || nodeListContains(entry.addedNodes, canvas);\n trigger = trigger && !nodeListContains(entry.removedNodes, canvas);\n }\n if (trigger) {\n listener();\n }\n });\n observer.observe(document, {childList: true, subtree: true});\n return observer;\n}\n\nfunction createDetachObserver(chart, type, listener) {\n const canvas = chart.canvas;\n const observer = new MutationObserver(entries => {\n let trigger = false;\n for (const entry of entries) {\n trigger = trigger || nodeListContains(entry.removedNodes, canvas);\n trigger = trigger && !nodeListContains(entry.addedNodes, canvas);\n }\n if (trigger) {\n listener();\n }\n });\n observer.observe(document, {childList: true, subtree: true});\n return observer;\n}\n\nconst drpListeningCharts = new Map();\nlet oldDevicePixelRatio = 0;\n\nfunction onWindowResize() {\n const dpr = window.devicePixelRatio;\n if (dpr === oldDevicePixelRatio) {\n return;\n }\n oldDevicePixelRatio = dpr;\n drpListeningCharts.forEach((resize, chart) => {\n if (chart.currentDevicePixelRatio !== dpr) {\n resize();\n }\n });\n}\n\nfunction listenDevicePixelRatioChanges(chart, resize) {\n if (!drpListeningCharts.size) {\n window.addEventListener('resize', onWindowResize);\n }\n drpListeningCharts.set(chart, resize);\n}\n\nfunction unlistenDevicePixelRatioChanges(chart) {\n drpListeningCharts.delete(chart);\n if (!drpListeningCharts.size) {\n window.removeEventListener('resize', onWindowResize);\n }\n}\n\nfunction createResizeObserver(chart, type, listener) {\n const canvas = chart.canvas;\n const container = canvas && _getParentNode(canvas);\n if (!container) {\n return;\n }\n const resize = throttled((width, height) => {\n const w = container.clientWidth;\n listener(width, height);\n if (w < container.clientWidth) {\n // If the container size shrank during chart resize, let's assume\n // scrollbar appeared. So we resize again with the scrollbar visible -\n // effectively making chart smaller and the scrollbar hidden again.\n // Because we are inside `throttled`, and currently `ticking`, scroll\n // events are ignored during this whole 2 resize process.\n // If we assumed wrong and something else happened, we are resizing\n // twice in a frame (potential performance issue)\n listener();\n }\n }, window);\n\n // @ts-ignore until https://github.com/microsoft/TypeScript/issues/37861 implemented\n const observer = new ResizeObserver(entries => {\n const entry = entries[0];\n const width = entry.contentRect.width;\n const height = entry.contentRect.height;\n // When its container's display is set to 'none' the callback will be called with a\n // size of (0, 0), which will cause the chart to lose its original height, so skip\n // resizing in such case.\n if (width === 0 && height === 0) {\n return;\n }\n resize(width, height);\n });\n observer.observe(container);\n listenDevicePixelRatioChanges(chart, resize);\n\n return observer;\n}\n\nfunction releaseObserver(chart, type, observer) {\n if (observer) {\n observer.disconnect();\n }\n if (type === 'resize') {\n unlistenDevicePixelRatioChanges(chart);\n }\n}\n\nfunction createProxyAndListen(chart, type, listener) {\n const canvas = chart.canvas;\n const proxy = throttled((event) => {\n // This case can occur if the chart is destroyed while waiting\n // for the throttled function to occur. We prevent crashes by checking\n // for a destroyed chart\n if (chart.ctx !== null) {\n listener(fromNativeEvent(event, chart));\n }\n }, chart);\n\n addListener(canvas, type, proxy);\n\n return proxy;\n}\n\n/**\n * Platform class for charts that can access the DOM and global window/document properties\n * @extends BasePlatform\n */\nexport default class DomPlatform extends BasePlatform {\n\n /**\n\t * @param {HTMLCanvasElement} canvas\n\t * @param {number} [aspectRatio]\n\t * @return {CanvasRenderingContext2D|null}\n\t */\n acquireContext(canvas, aspectRatio) {\n // To prevent canvas fingerprinting, some add-ons undefine the getContext\n // method, for example: https://github.com/kkapsner/CanvasBlocker\n // https://github.com/chartjs/Chart.js/issues/2807\n const context = canvas && canvas.getContext && canvas.getContext('2d');\n\n // `instanceof HTMLCanvasElement/CanvasRenderingContext2D` fails when the canvas is\n // inside an iframe or when running in a protected environment. We could guess the\n // types from their toString() value but let's keep things flexible and assume it's\n // a sufficient condition if the canvas has a context2D which has canvas as `canvas`.\n // https://github.com/chartjs/Chart.js/issues/3887\n // https://github.com/chartjs/Chart.js/issues/4102\n // https://github.com/chartjs/Chart.js/issues/4152\n if (context && context.canvas === canvas) {\n // Load platform resources on first chart creation, to make it possible to\n // import the library before setting platform options.\n initCanvas(canvas, aspectRatio);\n return context;\n }\n\n return null;\n }\n\n /**\n\t * @param {CanvasRenderingContext2D} context\n\t */\n releaseContext(context) {\n const canvas = context.canvas;\n if (!canvas[EXPANDO_KEY]) {\n return false;\n }\n\n const initial = canvas[EXPANDO_KEY].initial;\n ['height', 'width'].forEach((prop) => {\n const value = initial[prop];\n if (isNullOrUndef(value)) {\n canvas.removeAttribute(prop);\n } else {\n canvas.setAttribute(prop, value);\n }\n });\n\n const style = initial.style || {};\n Object.keys(style).forEach((key) => {\n canvas.style[key] = style[key];\n });\n\n // The canvas render size might have been changed (and thus the state stack discarded),\n // we can't use save() and restore() to restore the initial state. So make sure that at\n // least the canvas context is reset to the default state by setting the canvas width.\n // https://www.w3.org/TR/2011/WD-html5-20110525/the-canvas-element.html\n // eslint-disable-next-line no-self-assign\n canvas.width = canvas.width;\n\n delete canvas[EXPANDO_KEY];\n return true;\n }\n\n /**\n\t *\n\t * @param {Chart} chart\n\t * @param {string} type\n\t * @param {function} listener\n\t */\n addEventListener(chart, type, listener) {\n // Can have only one listener per type, so make sure previous is removed\n this.removeEventListener(chart, type);\n\n const proxies = chart.$proxies || (chart.$proxies = {});\n const handlers = {\n attach: createAttachObserver,\n detach: createDetachObserver,\n resize: createResizeObserver\n };\n const handler = handlers[type] || createProxyAndListen;\n proxies[type] = handler(chart, type, listener);\n }\n\n\n /**\n\t * @param {Chart} chart\n\t * @param {string} type\n\t */\n removeEventListener(chart, type) {\n const proxies = chart.$proxies || (chart.$proxies = {});\n const proxy = proxies[type];\n\n if (!proxy) {\n return;\n }\n\n const handlers = {\n attach: releaseObserver,\n detach: releaseObserver,\n resize: releaseObserver\n };\n const handler = handlers[type] || removeListener;\n handler(chart, type, proxy);\n proxies[type] = undefined;\n }\n\n getDevicePixelRatio() {\n return window.devicePixelRatio;\n }\n\n /**\n\t * @param {HTMLCanvasElement} canvas\n\t * @param {number} [width] - content width of parent element\n\t * @param {number} [height] - content height of parent element\n\t * @param {number} [aspectRatio] - aspect ratio to maintain\n\t */\n getMaximumSize(canvas, width, height, aspectRatio) {\n return getMaximumSize(canvas, width, height, aspectRatio);\n }\n\n /**\n\t * @param {HTMLCanvasElement} canvas\n\t */\n isAttached(canvas) {\n const container = _getParentNode(canvas);\n return !!(container && container.isConnected);\n }\n}\n","import {_isDomSupported} from '../helpers/index.js';\nimport BasePlatform from './platform.base.js';\nimport BasicPlatform from './platform.basic.js';\nimport DomPlatform from './platform.dom.js';\n\nexport function _detectPlatform(canvas) {\n if (!_isDomSupported() || (typeof OffscreenCanvas !== 'undefined' && canvas instanceof OffscreenCanvas)) {\n return BasicPlatform;\n }\n return DomPlatform;\n}\n\nexport {BasePlatform, BasicPlatform, DomPlatform};\n","import effects from '../helpers/helpers.easing.js';\nimport {resolve} from '../helpers/helpers.options.js';\nimport {color as helpersColor} from '../helpers/helpers.color.js';\n\nconst transparent = 'transparent';\nconst interpolators = {\n boolean(from, to, factor) {\n return factor > 0.5 ? to : from;\n },\n /**\n * @param {string} from\n * @param {string} to\n * @param {number} factor\n */\n color(from, to, factor) {\n const c0 = helpersColor(from || transparent);\n const c1 = c0.valid && helpersColor(to || transparent);\n return c1 && c1.valid\n ? c1.mix(c0, factor).hexString()\n : to;\n },\n number(from, to, factor) {\n return from + (to - from) * factor;\n }\n};\n\nexport default class Animation {\n constructor(cfg, target, prop, to) {\n const currentValue = target[prop];\n\n to = resolve([cfg.to, to, currentValue, cfg.from]);\n const from = resolve([cfg.from, currentValue, to]);\n\n this._active = true;\n this._fn = cfg.fn || interpolators[cfg.type || typeof from];\n this._easing = effects[cfg.easing] || effects.linear;\n this._start = Math.floor(Date.now() + (cfg.delay || 0));\n this._duration = this._total = Math.floor(cfg.duration);\n this._loop = !!cfg.loop;\n this._target = target;\n this._prop = prop;\n this._from = from;\n this._to = to;\n this._promises = undefined;\n }\n\n active() {\n return this._active;\n }\n\n update(cfg, to, date) {\n if (this._active) {\n this._notify(false);\n\n const currentValue = this._target[this._prop];\n const elapsed = date - this._start;\n const remain = this._duration - elapsed;\n this._start = date;\n this._duration = Math.floor(Math.max(remain, cfg.duration));\n this._total += elapsed;\n this._loop = !!cfg.loop;\n this._to = resolve([cfg.to, to, currentValue, cfg.from]);\n this._from = resolve([cfg.from, currentValue, to]);\n }\n }\n\n cancel() {\n if (this._active) {\n // update current evaluated value, for smoother animations\n this.tick(Date.now());\n this._active = false;\n this._notify(false);\n }\n }\n\n tick(date) {\n const elapsed = date - this._start;\n const duration = this._duration;\n const prop = this._prop;\n const from = this._from;\n const loop = this._loop;\n const to = this._to;\n let factor;\n\n this._active = from !== to && (loop || (elapsed < duration));\n\n if (!this._active) {\n this._target[prop] = to;\n this._notify(true);\n return;\n }\n\n if (elapsed < 0) {\n this._target[prop] = from;\n return;\n }\n\n factor = (elapsed / duration) % 2;\n factor = loop && factor > 1 ? 2 - factor : factor;\n factor = this._easing(Math.min(1, Math.max(0, factor)));\n\n this._target[prop] = this._fn(from, to, factor);\n }\n\n wait() {\n const promises = this._promises || (this._promises = []);\n return new Promise((res, rej) => {\n promises.push({res, rej});\n });\n }\n\n _notify(resolved) {\n const method = resolved ? 'res' : 'rej';\n const promises = this._promises || [];\n for (let i = 0; i < promises.length; i++) {\n promises[i][method]();\n }\n }\n}\n","import animator from './core.animator.js';\nimport Animation from './core.animation.js';\nimport defaults from './core.defaults.js';\nimport {isArray, isObject} from '../helpers/helpers.core.js';\n\nexport default class Animations {\n constructor(chart, config) {\n this._chart = chart;\n this._properties = new Map();\n this.configure(config);\n }\n\n configure(config) {\n if (!isObject(config)) {\n return;\n }\n\n const animationOptions = Object.keys(defaults.animation);\n const animatedProps = this._properties;\n\n Object.getOwnPropertyNames(config).forEach(key => {\n const cfg = config[key];\n if (!isObject(cfg)) {\n return;\n }\n const resolved = {};\n for (const option of animationOptions) {\n resolved[option] = cfg[option];\n }\n\n (isArray(cfg.properties) && cfg.properties || [key]).forEach((prop) => {\n if (prop === key || !animatedProps.has(prop)) {\n animatedProps.set(prop, resolved);\n }\n });\n });\n }\n\n /**\n\t * Utility to handle animation of `options`.\n\t * @private\n\t */\n _animateOptions(target, values) {\n const newOptions = values.options;\n const options = resolveTargetOptions(target, newOptions);\n if (!options) {\n return [];\n }\n\n const animations = this._createAnimations(options, newOptions);\n if (newOptions.$shared) {\n // Going to shared options:\n // After all animations are done, assign the shared options object to the element\n // So any new updates to the shared options are observed\n awaitAll(target.options.$animations, newOptions).then(() => {\n target.options = newOptions;\n }, () => {\n // rejected, noop\n });\n }\n\n return animations;\n }\n\n /**\n\t * @private\n\t */\n _createAnimations(target, values) {\n const animatedProps = this._properties;\n const animations = [];\n const running = target.$animations || (target.$animations = {});\n const props = Object.keys(values);\n const date = Date.now();\n let i;\n\n for (i = props.length - 1; i >= 0; --i) {\n const prop = props[i];\n if (prop.charAt(0) === '$') {\n continue;\n }\n\n if (prop === 'options') {\n animations.push(...this._animateOptions(target, values));\n continue;\n }\n const value = values[prop];\n let animation = running[prop];\n const cfg = animatedProps.get(prop);\n\n if (animation) {\n if (cfg && animation.active()) {\n // There is an existing active animation, let's update that\n animation.update(cfg, value, date);\n continue;\n } else {\n animation.cancel();\n }\n }\n if (!cfg || !cfg.duration) {\n // not animated, set directly to new value\n target[prop] = value;\n continue;\n }\n\n running[prop] = animation = new Animation(cfg, target, prop, value);\n animations.push(animation);\n }\n return animations;\n }\n\n\n /**\n\t * Update `target` properties to new values, using configured animations\n\t * @param {object} target - object to update\n\t * @param {object} values - new target properties\n\t * @returns {boolean|undefined} - `true` if animations were started\n\t **/\n update(target, values) {\n if (this._properties.size === 0) {\n // Nothing is animated, just apply the new values.\n Object.assign(target, values);\n return;\n }\n\n const animations = this._createAnimations(target, values);\n\n if (animations.length) {\n animator.add(this._chart, animations);\n return true;\n }\n }\n}\n\nfunction awaitAll(animations, properties) {\n const running = [];\n const keys = Object.keys(properties);\n for (let i = 0; i < keys.length; i++) {\n const anim = animations[keys[i]];\n if (anim && anim.active()) {\n running.push(anim.wait());\n }\n }\n // @ts-ignore\n return Promise.all(running);\n}\n\nfunction resolveTargetOptions(target, newOptions) {\n if (!newOptions) {\n return;\n }\n let options = target.options;\n if (!options) {\n target.options = newOptions;\n return;\n }\n if (options.$shared) {\n // Going from shared options to distinct one:\n // Create new options object containing the old shared values and start updating that.\n target.options = options = Object.assign({}, options, {$shared: false, $animations: {}});\n }\n return options;\n}\n","import Animations from './core.animations.js';\nimport defaults from './core.defaults.js';\nimport {isArray, isFinite, isObject, valueOrDefault, resolveObjectKey, defined} from '../helpers/helpers.core.js';\nimport {listenArrayEvents, unlistenArrayEvents} from '../helpers/helpers.collection.js';\nimport {createContext, sign} from '../helpers/index.js';\n\n/**\n * @typedef { import('./core.controller.js').default } Chart\n * @typedef { import('./core.scale.js').default } Scale\n */\n\nfunction scaleClip(scale, allowedOverflow) {\n const opts = scale && scale.options || {};\n const reverse = opts.reverse;\n const min = opts.min === undefined ? allowedOverflow : 0;\n const max = opts.max === undefined ? allowedOverflow : 0;\n return {\n start: reverse ? max : min,\n end: reverse ? min : max\n };\n}\n\nfunction defaultClip(xScale, yScale, allowedOverflow) {\n if (allowedOverflow === false) {\n return false;\n }\n const x = scaleClip(xScale, allowedOverflow);\n const y = scaleClip(yScale, allowedOverflow);\n\n return {\n top: y.end,\n right: x.end,\n bottom: y.start,\n left: x.start\n };\n}\n\nfunction toClip(value) {\n let t, r, b, l;\n\n if (isObject(value)) {\n t = value.top;\n r = value.right;\n b = value.bottom;\n l = value.left;\n } else {\n t = r = b = l = value;\n }\n\n return {\n top: t,\n right: r,\n bottom: b,\n left: l,\n disabled: value === false\n };\n}\n\nfunction getSortedDatasetIndices(chart, filterVisible) {\n const keys = [];\n const metasets = chart._getSortedDatasetMetas(filterVisible);\n let i, ilen;\n\n for (i = 0, ilen = metasets.length; i < ilen; ++i) {\n keys.push(metasets[i].index);\n }\n return keys;\n}\n\nfunction applyStack(stack, value, dsIndex, options = {}) {\n const keys = stack.keys;\n const singleMode = options.mode === 'single';\n let i, ilen, datasetIndex, otherValue;\n\n if (value === null) {\n return;\n }\n\n for (i = 0, ilen = keys.length; i < ilen; ++i) {\n datasetIndex = +keys[i];\n if (datasetIndex === dsIndex) {\n if (options.all) {\n continue;\n }\n break;\n }\n otherValue = stack.values[datasetIndex];\n if (isFinite(otherValue) && (singleMode || (value === 0 || sign(value) === sign(otherValue)))) {\n value += otherValue;\n }\n }\n return value;\n}\n\nfunction convertObjectDataToArray(data) {\n const keys = Object.keys(data);\n const adata = new Array(keys.length);\n let i, ilen, key;\n for (i = 0, ilen = keys.length; i < ilen; ++i) {\n key = keys[i];\n adata[i] = {\n x: key,\n y: data[key]\n };\n }\n return adata;\n}\n\nfunction isStacked(scale, meta) {\n const stacked = scale && scale.options.stacked;\n return stacked || (stacked === undefined && meta.stack !== undefined);\n}\n\nfunction getStackKey(indexScale, valueScale, meta) {\n return `${indexScale.id}.${valueScale.id}.${meta.stack || meta.type}`;\n}\n\nfunction getUserBounds(scale) {\n const {min, max, minDefined, maxDefined} = scale.getUserBounds();\n return {\n min: minDefined ? min : Number.NEGATIVE_INFINITY,\n max: maxDefined ? max : Number.POSITIVE_INFINITY\n };\n}\n\nfunction getOrCreateStack(stacks, stackKey, indexValue) {\n const subStack = stacks[stackKey] || (stacks[stackKey] = {});\n return subStack[indexValue] || (subStack[indexValue] = {});\n}\n\nfunction getLastIndexInStack(stack, vScale, positive, type) {\n for (const meta of vScale.getMatchingVisibleMetas(type).reverse()) {\n const value = stack[meta.index];\n if ((positive && value > 0) || (!positive && value < 0)) {\n return meta.index;\n }\n }\n\n return null;\n}\n\nfunction updateStacks(controller, parsed) {\n const {chart, _cachedMeta: meta} = controller;\n const stacks = chart._stacks || (chart._stacks = {}); // map structure is {stackKey: {datasetIndex: value}}\n const {iScale, vScale, index: datasetIndex} = meta;\n const iAxis = iScale.axis;\n const vAxis = vScale.axis;\n const key = getStackKey(iScale, vScale, meta);\n const ilen = parsed.length;\n let stack;\n\n for (let i = 0; i < ilen; ++i) {\n const item = parsed[i];\n const {[iAxis]: index, [vAxis]: value} = item;\n const itemStacks = item._stacks || (item._stacks = {});\n stack = itemStacks[vAxis] = getOrCreateStack(stacks, key, index);\n stack[datasetIndex] = value;\n\n stack._top = getLastIndexInStack(stack, vScale, true, meta.type);\n stack._bottom = getLastIndexInStack(stack, vScale, false, meta.type);\n\n const visualValues = stack._visualValues || (stack._visualValues = {});\n visualValues[datasetIndex] = value;\n }\n}\n\nfunction getFirstScaleId(chart, axis) {\n const scales = chart.scales;\n return Object.keys(scales).filter(key => scales[key].axis === axis).shift();\n}\n\nfunction createDatasetContext(parent, index) {\n return createContext(parent,\n {\n active: false,\n dataset: undefined,\n datasetIndex: index,\n index,\n mode: 'default',\n type: 'dataset'\n }\n );\n}\n\nfunction createDataContext(parent, index, element) {\n return createContext(parent, {\n active: false,\n dataIndex: index,\n parsed: undefined,\n raw: undefined,\n element,\n index,\n mode: 'default',\n type: 'data'\n });\n}\n\nfunction clearStacks(meta, items) {\n // Not using meta.index here, because it might be already updated if the dataset changed location\n const datasetIndex = meta.controller.index;\n const axis = meta.vScale && meta.vScale.axis;\n if (!axis) {\n return;\n }\n\n items = items || meta._parsed;\n for (const parsed of items) {\n const stacks = parsed._stacks;\n if (!stacks || stacks[axis] === undefined || stacks[axis][datasetIndex] === undefined) {\n return;\n }\n delete stacks[axis][datasetIndex];\n if (stacks[axis]._visualValues !== undefined && stacks[axis]._visualValues[datasetIndex] !== undefined) {\n delete stacks[axis]._visualValues[datasetIndex];\n }\n }\n}\n\nconst isDirectUpdateMode = (mode) => mode === 'reset' || mode === 'none';\nconst cloneIfNotShared = (cached, shared) => shared ? cached : Object.assign({}, cached);\nconst createStack = (canStack, meta, chart) => canStack && !meta.hidden && meta._stacked\n && {keys: getSortedDatasetIndices(chart, true), values: null};\n\nexport default class DatasetController {\n\n /**\n * @type {any}\n */\n static defaults = {};\n\n /**\n * Element type used to generate a meta dataset (e.g. Chart.element.LineElement).\n */\n static datasetElementType = null;\n\n /**\n * Element type used to generate a meta data (e.g. Chart.element.PointElement).\n */\n static dataElementType = null;\n\n /**\n\t * @param {Chart} chart\n\t * @param {number} datasetIndex\n\t */\n constructor(chart, datasetIndex) {\n this.chart = chart;\n this._ctx = chart.ctx;\n this.index = datasetIndex;\n this._cachedDataOpts = {};\n this._cachedMeta = this.getMeta();\n this._type = this._cachedMeta.type;\n this.options = undefined;\n /** @type {boolean | object} */\n this._parsing = false;\n this._data = undefined;\n this._objectData = undefined;\n this._sharedOptions = undefined;\n this._drawStart = undefined;\n this._drawCount = undefined;\n this.enableOptionSharing = false;\n this.supportsDecimation = false;\n this.$context = undefined;\n this._syncList = [];\n this.datasetElementType = new.target.datasetElementType;\n this.dataElementType = new.target.dataElementType;\n\n this.initialize();\n }\n\n initialize() {\n const meta = this._cachedMeta;\n this.configure();\n this.linkScales();\n meta._stacked = isStacked(meta.vScale, meta);\n this.addElements();\n\n if (this.options.fill && !this.chart.isPluginEnabled('filler')) {\n console.warn(\"Tried to use the 'fill' option without the 'Filler' plugin enabled. Please import and register the 'Filler' plugin and make sure it is not disabled in the options\");\n }\n }\n\n updateIndex(datasetIndex) {\n if (this.index !== datasetIndex) {\n clearStacks(this._cachedMeta);\n }\n this.index = datasetIndex;\n }\n\n linkScales() {\n const chart = this.chart;\n const meta = this._cachedMeta;\n const dataset = this.getDataset();\n\n const chooseId = (axis, x, y, r) => axis === 'x' ? x : axis === 'r' ? r : y;\n\n const xid = meta.xAxisID = valueOrDefault(dataset.xAxisID, getFirstScaleId(chart, 'x'));\n const yid = meta.yAxisID = valueOrDefault(dataset.yAxisID, getFirstScaleId(chart, 'y'));\n const rid = meta.rAxisID = valueOrDefault(dataset.rAxisID, getFirstScaleId(chart, 'r'));\n const indexAxis = meta.indexAxis;\n const iid = meta.iAxisID = chooseId(indexAxis, xid, yid, rid);\n const vid = meta.vAxisID = chooseId(indexAxis, yid, xid, rid);\n meta.xScale = this.getScaleForId(xid);\n meta.yScale = this.getScaleForId(yid);\n meta.rScale = this.getScaleForId(rid);\n meta.iScale = this.getScaleForId(iid);\n meta.vScale = this.getScaleForId(vid);\n }\n\n getDataset() {\n return this.chart.data.datasets[this.index];\n }\n\n getMeta() {\n return this.chart.getDatasetMeta(this.index);\n }\n\n /**\n\t * @param {string} scaleID\n\t * @return {Scale}\n\t */\n getScaleForId(scaleID) {\n return this.chart.scales[scaleID];\n }\n\n /**\n\t * @private\n\t */\n _getOtherScale(scale) {\n const meta = this._cachedMeta;\n return scale === meta.iScale\n ? meta.vScale\n : meta.iScale;\n }\n\n reset() {\n this._update('reset');\n }\n\n /**\n\t * @private\n\t */\n _destroy() {\n const meta = this._cachedMeta;\n if (this._data) {\n unlistenArrayEvents(this._data, this);\n }\n if (meta._stacked) {\n clearStacks(meta);\n }\n }\n\n /**\n\t * @private\n\t */\n _dataCheck() {\n const dataset = this.getDataset();\n const data = dataset.data || (dataset.data = []);\n const _data = this._data;\n\n // In order to correctly handle data addition/deletion animation (an thus simulate\n // real-time charts), we need to monitor these data modifications and synchronize\n // the internal meta data accordingly.\n\n if (isObject(data)) {\n this._data = convertObjectDataToArray(data);\n } else if (_data !== data) {\n if (_data) {\n // This case happens when the user replaced the data array instance.\n unlistenArrayEvents(_data, this);\n // Discard old parsed data and stacks\n const meta = this._cachedMeta;\n clearStacks(meta);\n meta._parsed = [];\n }\n if (data && Object.isExtensible(data)) {\n listenArrayEvents(data, this);\n }\n this._syncList = [];\n this._data = data;\n }\n }\n\n addElements() {\n const meta = this._cachedMeta;\n\n this._dataCheck();\n\n if (this.datasetElementType) {\n meta.dataset = new this.datasetElementType();\n }\n }\n\n buildOrUpdateElements(resetNewElements) {\n const meta = this._cachedMeta;\n const dataset = this.getDataset();\n let stackChanged = false;\n\n this._dataCheck();\n\n // make sure cached _stacked status is current\n const oldStacked = meta._stacked;\n meta._stacked = isStacked(meta.vScale, meta);\n\n // detect change in stack option\n if (meta.stack !== dataset.stack) {\n stackChanged = true;\n // remove values from old stack\n clearStacks(meta);\n meta.stack = dataset.stack;\n }\n\n // Re-sync meta data in case the user replaced the data array or if we missed\n // any updates and so make sure that we handle number of datapoints changing.\n this._resyncElements(resetNewElements);\n\n // if stack changed, update stack values for the whole dataset\n if (stackChanged || oldStacked !== meta._stacked) {\n updateStacks(this, meta._parsed);\n }\n }\n\n /**\n\t * Merges user-supplied and default dataset-level options\n\t * @private\n\t */\n configure() {\n const config = this.chart.config;\n const scopeKeys = config.datasetScopeKeys(this._type);\n const scopes = config.getOptionScopes(this.getDataset(), scopeKeys, true);\n this.options = config.createResolver(scopes, this.getContext());\n this._parsing = this.options.parsing;\n this._cachedDataOpts = {};\n }\n\n /**\n\t * @param {number} start\n\t * @param {number} count\n\t */\n parse(start, count) {\n const {_cachedMeta: meta, _data: data} = this;\n const {iScale, _stacked} = meta;\n const iAxis = iScale.axis;\n\n let sorted = start === 0 && count === data.length ? true : meta._sorted;\n let prev = start > 0 && meta._parsed[start - 1];\n let i, cur, parsed;\n\n if (this._parsing === false) {\n meta._parsed = data;\n meta._sorted = true;\n parsed = data;\n } else {\n if (isArray(data[start])) {\n parsed = this.parseArrayData(meta, data, start, count);\n } else if (isObject(data[start])) {\n parsed = this.parseObjectData(meta, data, start, count);\n } else {\n parsed = this.parsePrimitiveData(meta, data, start, count);\n }\n\n const isNotInOrderComparedToPrev = () => cur[iAxis] === null || (prev && cur[iAxis] < prev[iAxis]);\n for (i = 0; i < count; ++i) {\n meta._parsed[i + start] = cur = parsed[i];\n if (sorted) {\n if (isNotInOrderComparedToPrev()) {\n sorted = false;\n }\n prev = cur;\n }\n }\n meta._sorted = sorted;\n }\n\n if (_stacked) {\n updateStacks(this, parsed);\n }\n }\n\n /**\n\t * Parse array of primitive values\n\t * @param {object} meta - dataset meta\n\t * @param {array} data - data array. Example [1,3,4]\n\t * @param {number} start - start index\n\t * @param {number} count - number of items to parse\n\t * @returns {object} parsed item - item containing index and a parsed value\n\t * for each scale id.\n\t * Example: {xScale0: 0, yScale0: 1}\n\t * @protected\n\t */\n parsePrimitiveData(meta, data, start, count) {\n const {iScale, vScale} = meta;\n const iAxis = iScale.axis;\n const vAxis = vScale.axis;\n const labels = iScale.getLabels();\n const singleScale = iScale === vScale;\n const parsed = new Array(count);\n let i, ilen, index;\n\n for (i = 0, ilen = count; i < ilen; ++i) {\n index = i + start;\n parsed[i] = {\n [iAxis]: singleScale || iScale.parse(labels[index], index),\n [vAxis]: vScale.parse(data[index], index)\n };\n }\n return parsed;\n }\n\n /**\n\t * Parse array of arrays\n\t * @param {object} meta - dataset meta\n\t * @param {array} data - data array. Example [[1,2],[3,4]]\n\t * @param {number} start - start index\n\t * @param {number} count - number of items to parse\n\t * @returns {object} parsed item - item containing index and a parsed value\n\t * for each scale id.\n\t * Example: {x: 0, y: 1}\n\t * @protected\n\t */\n parseArrayData(meta, data, start, count) {\n const {xScale, yScale} = meta;\n const parsed = new Array(count);\n let i, ilen, index, item;\n\n for (i = 0, ilen = count; i < ilen; ++i) {\n index = i + start;\n item = data[index];\n parsed[i] = {\n x: xScale.parse(item[0], index),\n y: yScale.parse(item[1], index)\n };\n }\n return parsed;\n }\n\n /**\n\t * Parse array of objects\n\t * @param {object} meta - dataset meta\n\t * @param {array} data - data array. Example [{x:1, y:5}, {x:2, y:10}]\n\t * @param {number} start - start index\n\t * @param {number} count - number of items to parse\n\t * @returns {object} parsed item - item containing index and a parsed value\n\t * for each scale id. _custom is optional\n\t * Example: {xScale0: 0, yScale0: 1, _custom: {r: 10, foo: 'bar'}}\n\t * @protected\n\t */\n parseObjectData(meta, data, start, count) {\n const {xScale, yScale} = meta;\n const {xAxisKey = 'x', yAxisKey = 'y'} = this._parsing;\n const parsed = new Array(count);\n let i, ilen, index, item;\n\n for (i = 0, ilen = count; i < ilen; ++i) {\n index = i + start;\n item = data[index];\n parsed[i] = {\n x: xScale.parse(resolveObjectKey(item, xAxisKey), index),\n y: yScale.parse(resolveObjectKey(item, yAxisKey), index)\n };\n }\n return parsed;\n }\n\n /**\n\t * @protected\n\t */\n getParsed(index) {\n return this._cachedMeta._parsed[index];\n }\n\n /**\n\t * @protected\n\t */\n getDataElement(index) {\n return this._cachedMeta.data[index];\n }\n\n /**\n\t * @protected\n\t */\n applyStack(scale, parsed, mode) {\n const chart = this.chart;\n const meta = this._cachedMeta;\n const value = parsed[scale.axis];\n const stack = {\n keys: getSortedDatasetIndices(chart, true),\n values: parsed._stacks[scale.axis]._visualValues\n };\n return applyStack(stack, value, meta.index, {mode});\n }\n\n /**\n\t * @protected\n\t */\n updateRangeFromParsed(range, scale, parsed, stack) {\n const parsedValue = parsed[scale.axis];\n let value = parsedValue === null ? NaN : parsedValue;\n const values = stack && parsed._stacks[scale.axis];\n if (stack && values) {\n stack.values = values;\n value = applyStack(stack, parsedValue, this._cachedMeta.index);\n }\n range.min = Math.min(range.min, value);\n range.max = Math.max(range.max, value);\n }\n\n /**\n\t * @protected\n\t */\n getMinMax(scale, canStack) {\n const meta = this._cachedMeta;\n const _parsed = meta._parsed;\n const sorted = meta._sorted && scale === meta.iScale;\n const ilen = _parsed.length;\n const otherScale = this._getOtherScale(scale);\n const stack = createStack(canStack, meta, this.chart);\n const range = {min: Number.POSITIVE_INFINITY, max: Number.NEGATIVE_INFINITY};\n const {min: otherMin, max: otherMax} = getUserBounds(otherScale);\n let i, parsed;\n\n function _skip() {\n parsed = _parsed[i];\n const otherValue = parsed[otherScale.axis];\n return !isFinite(parsed[scale.axis]) || otherMin > otherValue || otherMax < otherValue;\n }\n\n for (i = 0; i < ilen; ++i) {\n if (_skip()) {\n continue;\n }\n this.updateRangeFromParsed(range, scale, parsed, stack);\n if (sorted) {\n // if the data is sorted, we don't need to check further from this end of array\n break;\n }\n }\n if (sorted) {\n // in the sorted case, find first non-skipped value from other end of array\n for (i = ilen - 1; i >= 0; --i) {\n if (_skip()) {\n continue;\n }\n this.updateRangeFromParsed(range, scale, parsed, stack);\n break;\n }\n }\n return range;\n }\n\n getAllParsedValues(scale) {\n const parsed = this._cachedMeta._parsed;\n const values = [];\n let i, ilen, value;\n\n for (i = 0, ilen = parsed.length; i < ilen; ++i) {\n value = parsed[i][scale.axis];\n if (isFinite(value)) {\n values.push(value);\n }\n }\n return values;\n }\n\n /**\n\t * @return {number|boolean}\n\t * @protected\n\t */\n getMaxOverflow() {\n return false;\n }\n\n /**\n\t * @protected\n\t */\n getLabelAndValue(index) {\n const meta = this._cachedMeta;\n const iScale = meta.iScale;\n const vScale = meta.vScale;\n const parsed = this.getParsed(index);\n return {\n label: iScale ? '' + iScale.getLabelForValue(parsed[iScale.axis]) : '',\n value: vScale ? '' + vScale.getLabelForValue(parsed[vScale.axis]) : ''\n };\n }\n\n /**\n\t * @private\n\t */\n _update(mode) {\n const meta = this._cachedMeta;\n this.update(mode || 'default');\n meta._clip = toClip(valueOrDefault(this.options.clip, defaultClip(meta.xScale, meta.yScale, this.getMaxOverflow())));\n }\n\n /**\n\t * @param {string} mode\n\t */\n update(mode) {} // eslint-disable-line no-unused-vars\n\n draw() {\n const ctx = this._ctx;\n const chart = this.chart;\n const meta = this._cachedMeta;\n const elements = meta.data || [];\n const area = chart.chartArea;\n const active = [];\n const start = this._drawStart || 0;\n const count = this._drawCount || (elements.length - start);\n const drawActiveElementsOnTop = this.options.drawActiveElementsOnTop;\n let i;\n\n if (meta.dataset) {\n meta.dataset.draw(ctx, area, start, count);\n }\n\n for (i = start; i < start + count; ++i) {\n const element = elements[i];\n if (element.hidden) {\n continue;\n }\n if (element.active && drawActiveElementsOnTop) {\n active.push(element);\n } else {\n element.draw(ctx, area);\n }\n }\n\n for (i = 0; i < active.length; ++i) {\n active[i].draw(ctx, area);\n }\n }\n\n /**\n\t * Returns a set of predefined style properties that should be used to represent the dataset\n\t * or the data if the index is specified\n\t * @param {number} index - data index\n\t * @param {boolean} [active] - true if hover\n\t * @return {object} style object\n\t */\n getStyle(index, active) {\n const mode = active ? 'active' : 'default';\n return index === undefined && this._cachedMeta.dataset\n ? this.resolveDatasetElementOptions(mode)\n : this.resolveDataElementOptions(index || 0, mode);\n }\n\n /**\n\t * @protected\n\t */\n getContext(index, active, mode) {\n const dataset = this.getDataset();\n let context;\n if (index >= 0 && index < this._cachedMeta.data.length) {\n const element = this._cachedMeta.data[index];\n context = element.$context ||\n (element.$context = createDataContext(this.getContext(), index, element));\n context.parsed = this.getParsed(index);\n context.raw = dataset.data[index];\n context.index = context.dataIndex = index;\n } else {\n context = this.$context ||\n (this.$context = createDatasetContext(this.chart.getContext(), this.index));\n context.dataset = dataset;\n context.index = context.datasetIndex = this.index;\n }\n\n context.active = !!active;\n context.mode = mode;\n return context;\n }\n\n /**\n\t * @param {string} [mode]\n\t * @protected\n\t */\n resolveDatasetElementOptions(mode) {\n return this._resolveElementOptions(this.datasetElementType.id, mode);\n }\n\n /**\n\t * @param {number} index\n\t * @param {string} [mode]\n\t * @protected\n\t */\n resolveDataElementOptions(index, mode) {\n return this._resolveElementOptions(this.dataElementType.id, mode, index);\n }\n\n /**\n\t * @private\n\t */\n _resolveElementOptions(elementType, mode = 'default', index) {\n const active = mode === 'active';\n const cache = this._cachedDataOpts;\n const cacheKey = elementType + '-' + mode;\n const cached = cache[cacheKey];\n const sharing = this.enableOptionSharing && defined(index);\n if (cached) {\n return cloneIfNotShared(cached, sharing);\n }\n const config = this.chart.config;\n const scopeKeys = config.datasetElementScopeKeys(this._type, elementType);\n const prefixes = active ? [`${elementType}Hover`, 'hover', elementType, ''] : [elementType, ''];\n const scopes = config.getOptionScopes(this.getDataset(), scopeKeys);\n const names = Object.keys(defaults.elements[elementType]);\n // context is provided as a function, and is called only if needed,\n // so we don't create a context for each element if not needed.\n const context = () => this.getContext(index, active, mode);\n const values = config.resolveNamedOptions(scopes, names, context, prefixes);\n\n if (values.$shared) {\n // `$shared` indicates this set of options can be shared between multiple elements.\n // Sharing is used to reduce number of properties to change during animation.\n values.$shared = sharing;\n\n // We cache options by `mode`, which can be 'active' for example. This enables us\n // to have the 'active' element options and 'default' options to switch between\n // when interacting.\n cache[cacheKey] = Object.freeze(cloneIfNotShared(values, sharing));\n }\n\n return values;\n }\n\n\n /**\n\t * @private\n\t */\n _resolveAnimations(index, transition, active) {\n const chart = this.chart;\n const cache = this._cachedDataOpts;\n const cacheKey = `animation-${transition}`;\n const cached = cache[cacheKey];\n if (cached) {\n return cached;\n }\n let options;\n if (chart.options.animation !== false) {\n const config = this.chart.config;\n const scopeKeys = config.datasetAnimationScopeKeys(this._type, transition);\n const scopes = config.getOptionScopes(this.getDataset(), scopeKeys);\n options = config.createResolver(scopes, this.getContext(index, active, transition));\n }\n const animations = new Animations(chart, options && options.animations);\n if (options && options._cacheable) {\n cache[cacheKey] = Object.freeze(animations);\n }\n return animations;\n }\n\n /**\n\t * Utility for getting the options object shared between elements\n\t * @protected\n\t */\n getSharedOptions(options) {\n if (!options.$shared) {\n return;\n }\n return this._sharedOptions || (this._sharedOptions = Object.assign({}, options));\n }\n\n /**\n\t * Utility for determining if `options` should be included in the updated properties\n\t * @protected\n\t */\n includeOptions(mode, sharedOptions) {\n return !sharedOptions || isDirectUpdateMode(mode) || this.chart._animationsDisabled;\n }\n\n /**\n * @todo v4, rename to getSharedOptions and remove excess functions\n */\n _getSharedOptions(start, mode) {\n const firstOpts = this.resolveDataElementOptions(start, mode);\n const previouslySharedOptions = this._sharedOptions;\n const sharedOptions = this.getSharedOptions(firstOpts);\n const includeOptions = this.includeOptions(mode, sharedOptions) || (sharedOptions !== previouslySharedOptions);\n this.updateSharedOptions(sharedOptions, mode, firstOpts);\n return {sharedOptions, includeOptions};\n }\n\n /**\n\t * Utility for updating an element with new properties, using animations when appropriate.\n\t * @protected\n\t */\n updateElement(element, index, properties, mode) {\n if (isDirectUpdateMode(mode)) {\n Object.assign(element, properties);\n } else {\n this._resolveAnimations(index, mode).update(element, properties);\n }\n }\n\n /**\n\t * Utility to animate the shared options, that are potentially affecting multiple elements.\n\t * @protected\n\t */\n updateSharedOptions(sharedOptions, mode, newOptions) {\n if (sharedOptions && !isDirectUpdateMode(mode)) {\n this._resolveAnimations(undefined, mode).update(sharedOptions, newOptions);\n }\n }\n\n /**\n\t * @private\n\t */\n _setStyle(element, index, mode, active) {\n element.active = active;\n const options = this.getStyle(index, active);\n this._resolveAnimations(index, mode, active).update(element, {\n // When going from active to inactive, we need to update to the shared options.\n // This way the once hovered element will end up with the same original shared options instance, after animation.\n options: (!active && this.getSharedOptions(options)) || options\n });\n }\n\n removeHoverStyle(element, datasetIndex, index) {\n this._setStyle(element, index, 'active', false);\n }\n\n setHoverStyle(element, datasetIndex, index) {\n this._setStyle(element, index, 'active', true);\n }\n\n /**\n\t * @private\n\t */\n _removeDatasetHoverStyle() {\n const element = this._cachedMeta.dataset;\n\n if (element) {\n this._setStyle(element, undefined, 'active', false);\n }\n }\n\n /**\n\t * @private\n\t */\n _setDatasetHoverStyle() {\n const element = this._cachedMeta.dataset;\n\n if (element) {\n this._setStyle(element, undefined, 'active', true);\n }\n }\n\n /**\n\t * @private\n\t */\n _resyncElements(resetNewElements) {\n const data = this._data;\n const elements = this._cachedMeta.data;\n\n // Apply changes detected through array listeners\n for (const [method, arg1, arg2] of this._syncList) {\n this[method](arg1, arg2);\n }\n this._syncList = [];\n\n const numMeta = elements.length;\n const numData = data.length;\n const count = Math.min(numData, numMeta);\n\n if (count) {\n // TODO: It is not optimal to always parse the old data\n // This is done because we are not detecting direct assignments:\n // chart.data.datasets[0].data[5] = 10;\n // chart.data.datasets[0].data[5].y = 10;\n this.parse(0, count);\n }\n\n if (numData > numMeta) {\n this._insertElements(numMeta, numData - numMeta, resetNewElements);\n } else if (numData < numMeta) {\n this._removeElements(numData, numMeta - numData);\n }\n }\n\n /**\n\t * @private\n\t */\n _insertElements(start, count, resetNewElements = true) {\n const meta = this._cachedMeta;\n const data = meta.data;\n const end = start + count;\n let i;\n\n const move = (arr) => {\n arr.length += count;\n for (i = arr.length - 1; i >= end; i--) {\n arr[i] = arr[i - count];\n }\n };\n move(data);\n\n for (i = start; i < end; ++i) {\n data[i] = new this.dataElementType();\n }\n\n if (this._parsing) {\n move(meta._parsed);\n }\n this.parse(start, count);\n\n if (resetNewElements) {\n this.updateElements(data, start, count, 'reset');\n }\n }\n\n updateElements(element, start, count, mode) {} // eslint-disable-line no-unused-vars\n\n /**\n\t * @private\n\t */\n _removeElements(start, count) {\n const meta = this._cachedMeta;\n if (this._parsing) {\n const removed = meta._parsed.splice(start, count);\n if (meta._stacked) {\n clearStacks(meta, removed);\n }\n }\n meta.data.splice(start, count);\n }\n\n /**\n\t * @private\n */\n _sync(args) {\n if (this._parsing) {\n this._syncList.push(args);\n } else {\n const [method, arg1, arg2] = args;\n this[method](arg1, arg2);\n }\n this.chart._dataChanges.push([this.index, ...args]);\n }\n\n _onDataPush() {\n const count = arguments.length;\n this._sync(['_insertElements', this.getDataset().data.length - count, count]);\n }\n\n _onDataPop() {\n this._sync(['_removeElements', this._cachedMeta.data.length - 1, 1]);\n }\n\n _onDataShift() {\n this._sync(['_removeElements', 0, 1]);\n }\n\n _onDataSplice(start, count) {\n if (count) {\n this._sync(['_removeElements', start, count]);\n }\n const newCount = arguments.length - 2;\n if (newCount) {\n this._sync(['_insertElements', start, newCount]);\n }\n }\n\n _onDataUnshift() {\n this._sync(['_insertElements', 0, arguments.length]);\n }\n}\n","import type {AnyObject} from '../types/basic.js';\nimport type {Point} from '../types/geometric.js';\nimport type {Animation} from '../types/animation.js';\nimport {isNumber} from '../helpers/helpers.math.js';\n\nexport default class Element {\n\n static defaults = {};\n static defaultRoutes = undefined;\n\n x: number;\n y: number;\n active = false;\n options: O;\n $animations: Record;\n\n tooltipPosition(useFinalPosition: boolean): Point {\n const {x, y} = this.getProps(['x', 'y'], useFinalPosition);\n return {x, y} as Point;\n }\n\n hasValue() {\n return isNumber(this.x) && isNumber(this.y);\n }\n\n /**\n * Gets the current or final value of each prop. Can return extra properties (whole object).\n * @param props - properties to get\n * @param [final] - get the final value (animation target)\n */\n getProps

(props: P, final?: boolean): Pick;\n getProps

(props: P[], final?: boolean): Partial>;\n getProps(props: string[], final?: boolean): Partial> {\n const anims = this.$animations;\n if (!final || !anims) {\n // let's not create an object, if not needed\n return this as Record;\n }\n const ret: Record = {};\n props.forEach((prop) => {\n ret[prop] = anims[prop] && anims[prop].active() ? anims[prop]._to : this[prop as string];\n });\n return ret;\n }\n}\n","import {isNullOrUndef, valueOrDefault} from '../helpers/helpers.core.js';\nimport {_factorize} from '../helpers/helpers.math.js';\n\n\n/**\n * @typedef { import('./core.controller.js').default } Chart\n * @typedef {{value:number | string, label?:string, major?:boolean, $context?:any}} Tick\n */\n\n/**\n * Returns a subset of ticks to be plotted to avoid overlapping labels.\n * @param {import('./core.scale.js').default} scale\n * @param {Tick[]} ticks\n * @return {Tick[]}\n * @private\n */\nexport function autoSkip(scale, ticks) {\n const tickOpts = scale.options.ticks;\n const determinedMaxTicks = determineMaxTicks(scale);\n const ticksLimit = Math.min(tickOpts.maxTicksLimit || determinedMaxTicks, determinedMaxTicks);\n const majorIndices = tickOpts.major.enabled ? getMajorIndices(ticks) : [];\n const numMajorIndices = majorIndices.length;\n const first = majorIndices[0];\n const last = majorIndices[numMajorIndices - 1];\n const newTicks = [];\n\n // If there are too many major ticks to display them all\n if (numMajorIndices > ticksLimit) {\n skipMajors(ticks, newTicks, majorIndices, numMajorIndices / ticksLimit);\n return newTicks;\n }\n\n const spacing = calculateSpacing(majorIndices, ticks, ticksLimit);\n\n if (numMajorIndices > 0) {\n let i, ilen;\n const avgMajorSpacing = numMajorIndices > 1 ? Math.round((last - first) / (numMajorIndices - 1)) : null;\n skip(ticks, newTicks, spacing, isNullOrUndef(avgMajorSpacing) ? 0 : first - avgMajorSpacing, first);\n for (i = 0, ilen = numMajorIndices - 1; i < ilen; i++) {\n skip(ticks, newTicks, spacing, majorIndices[i], majorIndices[i + 1]);\n }\n skip(ticks, newTicks, spacing, last, isNullOrUndef(avgMajorSpacing) ? ticks.length : last + avgMajorSpacing);\n return newTicks;\n }\n skip(ticks, newTicks, spacing);\n return newTicks;\n}\n\nfunction determineMaxTicks(scale) {\n const offset = scale.options.offset;\n const tickLength = scale._tickSize();\n const maxScale = scale._length / tickLength + (offset ? 0 : 1);\n const maxChart = scale._maxLength / tickLength;\n return Math.floor(Math.min(maxScale, maxChart));\n}\n\n/**\n * @param {number[]} majorIndices\n * @param {Tick[]} ticks\n * @param {number} ticksLimit\n */\nfunction calculateSpacing(majorIndices, ticks, ticksLimit) {\n const evenMajorSpacing = getEvenSpacing(majorIndices);\n const spacing = ticks.length / ticksLimit;\n\n // If the major ticks are evenly spaced apart, place the minor ticks\n // so that they divide the major ticks into even chunks\n if (!evenMajorSpacing) {\n return Math.max(spacing, 1);\n }\n\n const factors = _factorize(evenMajorSpacing);\n for (let i = 0, ilen = factors.length - 1; i < ilen; i++) {\n const factor = factors[i];\n if (factor > spacing) {\n return factor;\n }\n }\n return Math.max(spacing, 1);\n}\n\n/**\n * @param {Tick[]} ticks\n */\nfunction getMajorIndices(ticks) {\n const result = [];\n let i, ilen;\n for (i = 0, ilen = ticks.length; i < ilen; i++) {\n if (ticks[i].major) {\n result.push(i);\n }\n }\n return result;\n}\n\n/**\n * @param {Tick[]} ticks\n * @param {Tick[]} newTicks\n * @param {number[]} majorIndices\n * @param {number} spacing\n */\nfunction skipMajors(ticks, newTicks, majorIndices, spacing) {\n let count = 0;\n let next = majorIndices[0];\n let i;\n\n spacing = Math.ceil(spacing);\n for (i = 0; i < ticks.length; i++) {\n if (i === next) {\n newTicks.push(ticks[i]);\n count++;\n next = majorIndices[count * spacing];\n }\n }\n}\n\n/**\n * @param {Tick[]} ticks\n * @param {Tick[]} newTicks\n * @param {number} spacing\n * @param {number} [majorStart]\n * @param {number} [majorEnd]\n */\nfunction skip(ticks, newTicks, spacing, majorStart, majorEnd) {\n const start = valueOrDefault(majorStart, 0);\n const end = Math.min(valueOrDefault(majorEnd, ticks.length), ticks.length);\n let count = 0;\n let length, i, next;\n\n spacing = Math.ceil(spacing);\n if (majorEnd) {\n length = majorEnd - majorStart;\n spacing = length / Math.floor(length / spacing);\n }\n\n next = start;\n\n while (next < 0) {\n count++;\n next = Math.round(start + count * spacing);\n }\n\n for (i = Math.max(start, 0); i < end; i++) {\n if (i === next) {\n newTicks.push(ticks[i]);\n count++;\n next = Math.round(start + count * spacing);\n }\n }\n}\n\n\n/**\n * @param {number[]} arr\n */\nfunction getEvenSpacing(arr) {\n const len = arr.length;\n let i, diff;\n\n if (len < 2) {\n return false;\n }\n\n for (diff = arr[0], i = 1; i < len; ++i) {\n if (arr[i] - arr[i - 1] !== diff) {\n return false;\n }\n }\n return diff;\n}\n","import Element from './core.element.js';\nimport {_alignPixel, _measureText, renderText, clipArea, unclipArea} from '../helpers/helpers.canvas.js';\nimport {callback as call, each, finiteOrDefault, isArray, isFinite, isNullOrUndef, isObject, valueOrDefault} from '../helpers/helpers.core.js';\nimport {toDegrees, toRadians, _int16Range, _limitValue, HALF_PI} from '../helpers/helpers.math.js';\nimport {_alignStartEnd, _toLeftRightCenter} from '../helpers/helpers.extras.js';\nimport {createContext, toFont, toPadding, _addGrace} from '../helpers/helpers.options.js';\nimport {autoSkip} from './core.scale.autoskip.js';\n\nconst reverseAlign = (align) => align === 'left' ? 'right' : align === 'right' ? 'left' : align;\nconst offsetFromEdge = (scale, edge, offset) => edge === 'top' || edge === 'left' ? scale[edge] + offset : scale[edge] - offset;\n\n/**\n * @typedef { import('./core.controller.js').default } Chart\n * @typedef {{value:number | string, label?:string, major?:boolean, $context?:any}} Tick\n */\n\n/**\n * Returns a new array containing numItems from arr\n * @param {any[]} arr\n * @param {number} numItems\n */\nfunction sample(arr, numItems) {\n const result = [];\n const increment = arr.length / numItems;\n const len = arr.length;\n let i = 0;\n\n for (; i < len; i += increment) {\n result.push(arr[Math.floor(i)]);\n }\n return result;\n}\n\n/**\n * @param {Scale} scale\n * @param {number} index\n * @param {boolean} offsetGridLines\n */\nfunction getPixelForGridLine(scale, index, offsetGridLines) {\n const length = scale.ticks.length;\n const validIndex = Math.min(index, length - 1);\n const start = scale._startPixel;\n const end = scale._endPixel;\n const epsilon = 1e-6; // 1e-6 is margin in pixels for accumulated error.\n let lineValue = scale.getPixelForTick(validIndex);\n let offset;\n\n if (offsetGridLines) {\n if (length === 1) {\n offset = Math.max(lineValue - start, end - lineValue);\n } else if (index === 0) {\n offset = (scale.getPixelForTick(1) - lineValue) / 2;\n } else {\n offset = (lineValue - scale.getPixelForTick(validIndex - 1)) / 2;\n }\n lineValue += validIndex < index ? offset : -offset;\n\n // Return undefined if the pixel is out of the range\n if (lineValue < start - epsilon || lineValue > end + epsilon) {\n return;\n }\n }\n return lineValue;\n}\n\n/**\n * @param {object} caches\n * @param {number} length\n */\nfunction garbageCollect(caches, length) {\n each(caches, (cache) => {\n const gc = cache.gc;\n const gcLen = gc.length / 2;\n let i;\n if (gcLen > length) {\n for (i = 0; i < gcLen; ++i) {\n delete cache.data[gc[i]];\n }\n gc.splice(0, gcLen);\n }\n });\n}\n\n/**\n * @param {object} options\n */\nfunction getTickMarkLength(options) {\n return options.drawTicks ? options.tickLength : 0;\n}\n\n/**\n * @param {object} options\n */\nfunction getTitleHeight(options, fallback) {\n if (!options.display) {\n return 0;\n }\n\n const font = toFont(options.font, fallback);\n const padding = toPadding(options.padding);\n const lines = isArray(options.text) ? options.text.length : 1;\n\n return (lines * font.lineHeight) + padding.height;\n}\n\nfunction createScaleContext(parent, scale) {\n return createContext(parent, {\n scale,\n type: 'scale'\n });\n}\n\nfunction createTickContext(parent, index, tick) {\n return createContext(parent, {\n tick,\n index,\n type: 'tick'\n });\n}\n\nfunction titleAlign(align, position, reverse) {\n let ret = _toLeftRightCenter(align);\n if ((reverse && position !== 'right') || (!reverse && position === 'right')) {\n ret = reverseAlign(ret);\n }\n return ret;\n}\n\nfunction titleArgs(scale, offset, position, align) {\n const {top, left, bottom, right, chart} = scale;\n const {chartArea, scales} = chart;\n let rotation = 0;\n let maxWidth, titleX, titleY;\n const height = bottom - top;\n const width = right - left;\n\n if (scale.isHorizontal()) {\n titleX = _alignStartEnd(align, left, right);\n\n if (isObject(position)) {\n const positionAxisID = Object.keys(position)[0];\n const value = position[positionAxisID];\n titleY = scales[positionAxisID].getPixelForValue(value) + height - offset;\n } else if (position === 'center') {\n titleY = (chartArea.bottom + chartArea.top) / 2 + height - offset;\n } else {\n titleY = offsetFromEdge(scale, position, offset);\n }\n maxWidth = right - left;\n } else {\n if (isObject(position)) {\n const positionAxisID = Object.keys(position)[0];\n const value = position[positionAxisID];\n titleX = scales[positionAxisID].getPixelForValue(value) - width + offset;\n } else if (position === 'center') {\n titleX = (chartArea.left + chartArea.right) / 2 - width + offset;\n } else {\n titleX = offsetFromEdge(scale, position, offset);\n }\n titleY = _alignStartEnd(align, bottom, top);\n rotation = position === 'left' ? -HALF_PI : HALF_PI;\n }\n return {titleX, titleY, maxWidth, rotation};\n}\n\nexport default class Scale extends Element {\n\n // eslint-disable-next-line max-statements\n constructor(cfg) {\n super();\n\n /** @type {string} */\n this.id = cfg.id;\n /** @type {string} */\n this.type = cfg.type;\n /** @type {any} */\n this.options = undefined;\n /** @type {CanvasRenderingContext2D} */\n this.ctx = cfg.ctx;\n /** @type {Chart} */\n this.chart = cfg.chart;\n\n // implements box\n /** @type {number} */\n this.top = undefined;\n /** @type {number} */\n this.bottom = undefined;\n /** @type {number} */\n this.left = undefined;\n /** @type {number} */\n this.right = undefined;\n /** @type {number} */\n this.width = undefined;\n /** @type {number} */\n this.height = undefined;\n this._margins = {\n left: 0,\n right: 0,\n top: 0,\n bottom: 0\n };\n /** @type {number} */\n this.maxWidth = undefined;\n /** @type {number} */\n this.maxHeight = undefined;\n /** @type {number} */\n this.paddingTop = undefined;\n /** @type {number} */\n this.paddingBottom = undefined;\n /** @type {number} */\n this.paddingLeft = undefined;\n /** @type {number} */\n this.paddingRight = undefined;\n\n // scale-specific properties\n /** @type {string=} */\n this.axis = undefined;\n /** @type {number=} */\n this.labelRotation = undefined;\n this.min = undefined;\n this.max = undefined;\n this._range = undefined;\n /** @type {Tick[]} */\n this.ticks = [];\n /** @type {object[]|null} */\n this._gridLineItems = null;\n /** @type {object[]|null} */\n this._labelItems = null;\n /** @type {object|null} */\n this._labelSizes = null;\n this._length = 0;\n this._maxLength = 0;\n this._longestTextCache = {};\n /** @type {number} */\n this._startPixel = undefined;\n /** @type {number} */\n this._endPixel = undefined;\n this._reversePixels = false;\n this._userMax = undefined;\n this._userMin = undefined;\n this._suggestedMax = undefined;\n this._suggestedMin = undefined;\n this._ticksLength = 0;\n this._borderValue = 0;\n this._cache = {};\n this._dataLimitsCached = false;\n this.$context = undefined;\n }\n\n /**\n\t * @param {any} options\n\t * @since 3.0\n\t */\n init(options) {\n this.options = options.setContext(this.getContext());\n\n this.axis = options.axis;\n\n // parse min/max value, so we can properly determine min/max for other scales\n this._userMin = this.parse(options.min);\n this._userMax = this.parse(options.max);\n this._suggestedMin = this.parse(options.suggestedMin);\n this._suggestedMax = this.parse(options.suggestedMax);\n }\n\n /**\n\t * Parse a supported input value to internal representation.\n\t * @param {*} raw\n\t * @param {number} [index]\n\t * @since 3.0\n\t */\n parse(raw, index) { // eslint-disable-line no-unused-vars\n return raw;\n }\n\n /**\n\t * @return {{min: number, max: number, minDefined: boolean, maxDefined: boolean}}\n\t * @protected\n\t * @since 3.0\n\t */\n getUserBounds() {\n let {_userMin, _userMax, _suggestedMin, _suggestedMax} = this;\n _userMin = finiteOrDefault(_userMin, Number.POSITIVE_INFINITY);\n _userMax = finiteOrDefault(_userMax, Number.NEGATIVE_INFINITY);\n _suggestedMin = finiteOrDefault(_suggestedMin, Number.POSITIVE_INFINITY);\n _suggestedMax = finiteOrDefault(_suggestedMax, Number.NEGATIVE_INFINITY);\n return {\n min: finiteOrDefault(_userMin, _suggestedMin),\n max: finiteOrDefault(_userMax, _suggestedMax),\n minDefined: isFinite(_userMin),\n maxDefined: isFinite(_userMax)\n };\n }\n\n /**\n\t * @param {boolean} canStack\n\t * @return {{min: number, max: number}}\n\t * @protected\n\t * @since 3.0\n\t */\n getMinMax(canStack) {\n // eslint-disable-next-line prefer-const\n let {min, max, minDefined, maxDefined} = this.getUserBounds();\n let range;\n\n if (minDefined && maxDefined) {\n return {min, max};\n }\n\n const metas = this.getMatchingVisibleMetas();\n for (let i = 0, ilen = metas.length; i < ilen; ++i) {\n range = metas[i].controller.getMinMax(this, canStack);\n if (!minDefined) {\n min = Math.min(min, range.min);\n }\n if (!maxDefined) {\n max = Math.max(max, range.max);\n }\n }\n\n // Make sure min <= max when only min or max is defined by user and the data is outside that range\n min = maxDefined && min > max ? max : min;\n max = minDefined && min > max ? min : max;\n\n return {\n min: finiteOrDefault(min, finiteOrDefault(max, min)),\n max: finiteOrDefault(max, finiteOrDefault(min, max))\n };\n }\n\n /**\n\t * Get the padding needed for the scale\n\t * @return {{top: number, left: number, bottom: number, right: number}} the necessary padding\n\t * @private\n\t */\n getPadding() {\n return {\n left: this.paddingLeft || 0,\n top: this.paddingTop || 0,\n right: this.paddingRight || 0,\n bottom: this.paddingBottom || 0\n };\n }\n\n /**\n\t * Returns the scale tick objects\n\t * @return {Tick[]}\n\t * @since 2.7\n\t */\n getTicks() {\n return this.ticks;\n }\n\n /**\n\t * @return {string[]}\n\t */\n getLabels() {\n const data = this.chart.data;\n return this.options.labels || (this.isHorizontal() ? data.xLabels : data.yLabels) || data.labels || [];\n }\n\n /**\n * @return {import('../types.js').LabelItem[]}\n */\n getLabelItems(chartArea = this.chart.chartArea) {\n const items = this._labelItems || (this._labelItems = this._computeLabelItems(chartArea));\n return items;\n }\n\n // When a new layout is created, reset the data limits cache\n beforeLayout() {\n this._cache = {};\n this._dataLimitsCached = false;\n }\n\n // These methods are ordered by lifecycle. Utilities then follow.\n // Any function defined here is inherited by all scale types.\n // Any function can be extended by the scale type\n\n beforeUpdate() {\n call(this.options.beforeUpdate, [this]);\n }\n\n /**\n\t * @param {number} maxWidth - the max width in pixels\n\t * @param {number} maxHeight - the max height in pixels\n\t * @param {{top: number, left: number, bottom: number, right: number}} margins - the space between the edge of the other scales and edge of the chart\n\t * This space comes from two sources:\n\t * - padding - space that's required to show the labels at the edges of the scale\n\t * - thickness of scales or legends in another orientation\n\t */\n update(maxWidth, maxHeight, margins) {\n const {beginAtZero, grace, ticks: tickOpts} = this.options;\n const sampleSize = tickOpts.sampleSize;\n\n // Update Lifecycle - Probably don't want to ever extend or overwrite this function ;)\n this.beforeUpdate();\n\n // Absorb the master measurements\n this.maxWidth = maxWidth;\n this.maxHeight = maxHeight;\n this._margins = margins = Object.assign({\n left: 0,\n right: 0,\n top: 0,\n bottom: 0\n }, margins);\n\n this.ticks = null;\n this._labelSizes = null;\n this._gridLineItems = null;\n this._labelItems = null;\n\n // Dimensions\n this.beforeSetDimensions();\n this.setDimensions();\n this.afterSetDimensions();\n\n this._maxLength = this.isHorizontal()\n ? this.width + margins.left + margins.right\n : this.height + margins.top + margins.bottom;\n\n // Data min/max\n if (!this._dataLimitsCached) {\n this.beforeDataLimits();\n this.determineDataLimits();\n this.afterDataLimits();\n this._range = _addGrace(this, grace, beginAtZero);\n this._dataLimitsCached = true;\n }\n\n this.beforeBuildTicks();\n\n this.ticks = this.buildTicks() || [];\n\n // Allow modification of ticks in callback.\n this.afterBuildTicks();\n\n // Compute tick rotation and fit using a sampled subset of labels\n // We generally don't need to compute the size of every single label for determining scale size\n const samplingEnabled = sampleSize < this.ticks.length;\n this._convertTicksToLabels(samplingEnabled ? sample(this.ticks, sampleSize) : this.ticks);\n\n // configure is called twice, once here, once from core.controller.updateLayout.\n // Here we haven't been positioned yet, but dimensions are correct.\n // Variables set in configure are needed for calculateLabelRotation, and\n // it's ok that coordinates are not correct there, only dimensions matter.\n this.configure();\n\n // Tick Rotation\n this.beforeCalculateLabelRotation();\n this.calculateLabelRotation(); // Preconditions: number of ticks and sizes of largest labels must be calculated beforehand\n this.afterCalculateLabelRotation();\n\n // Auto-skip\n if (tickOpts.display && (tickOpts.autoSkip || tickOpts.source === 'auto')) {\n this.ticks = autoSkip(this, this.ticks);\n this._labelSizes = null;\n this.afterAutoSkip();\n }\n\n if (samplingEnabled) {\n // Generate labels using all non-skipped ticks\n this._convertTicksToLabels(this.ticks);\n }\n\n this.beforeFit();\n this.fit(); // Preconditions: label rotation and label sizes must be calculated beforehand\n this.afterFit();\n\n // IMPORTANT: after this point, we consider that `this.ticks` will NEVER change!\n\n this.afterUpdate();\n }\n\n /**\n\t * @protected\n\t */\n configure() {\n let reversePixels = this.options.reverse;\n let startPixel, endPixel;\n\n if (this.isHorizontal()) {\n startPixel = this.left;\n endPixel = this.right;\n } else {\n startPixel = this.top;\n endPixel = this.bottom;\n // by default vertical scales are from bottom to top, so pixels are reversed\n reversePixels = !reversePixels;\n }\n this._startPixel = startPixel;\n this._endPixel = endPixel;\n this._reversePixels = reversePixels;\n this._length = endPixel - startPixel;\n this._alignToPixels = this.options.alignToPixels;\n }\n\n afterUpdate() {\n call(this.options.afterUpdate, [this]);\n }\n\n //\n\n beforeSetDimensions() {\n call(this.options.beforeSetDimensions, [this]);\n }\n setDimensions() {\n // Set the unconstrained dimension before label rotation\n if (this.isHorizontal()) {\n // Reset position before calculating rotation\n this.width = this.maxWidth;\n this.left = 0;\n this.right = this.width;\n } else {\n this.height = this.maxHeight;\n\n // Reset position before calculating rotation\n this.top = 0;\n this.bottom = this.height;\n }\n\n // Reset padding\n this.paddingLeft = 0;\n this.paddingTop = 0;\n this.paddingRight = 0;\n this.paddingBottom = 0;\n }\n afterSetDimensions() {\n call(this.options.afterSetDimensions, [this]);\n }\n\n _callHooks(name) {\n this.chart.notifyPlugins(name, this.getContext());\n call(this.options[name], [this]);\n }\n\n // Data limits\n beforeDataLimits() {\n this._callHooks('beforeDataLimits');\n }\n determineDataLimits() {}\n afterDataLimits() {\n this._callHooks('afterDataLimits');\n }\n\n //\n beforeBuildTicks() {\n this._callHooks('beforeBuildTicks');\n }\n /**\n\t * @return {object[]} the ticks\n\t */\n buildTicks() {\n return [];\n }\n afterBuildTicks() {\n this._callHooks('afterBuildTicks');\n }\n\n beforeTickToLabelConversion() {\n call(this.options.beforeTickToLabelConversion, [this]);\n }\n /**\n\t * Convert ticks to label strings\n\t * @param {Tick[]} ticks\n\t */\n generateTickLabels(ticks) {\n const tickOpts = this.options.ticks;\n let i, ilen, tick;\n for (i = 0, ilen = ticks.length; i < ilen; i++) {\n tick = ticks[i];\n tick.label = call(tickOpts.callback, [tick.value, i, ticks], this);\n }\n }\n afterTickToLabelConversion() {\n call(this.options.afterTickToLabelConversion, [this]);\n }\n\n //\n\n beforeCalculateLabelRotation() {\n call(this.options.beforeCalculateLabelRotation, [this]);\n }\n calculateLabelRotation() {\n const options = this.options;\n const tickOpts = options.ticks;\n const numTicks = this.ticks.length;\n const minRotation = tickOpts.minRotation || 0;\n const maxRotation = tickOpts.maxRotation;\n let labelRotation = minRotation;\n let tickWidth, maxHeight, maxLabelDiagonal;\n\n if (!this._isVisible() || !tickOpts.display || minRotation >= maxRotation || numTicks <= 1 || !this.isHorizontal()) {\n this.labelRotation = minRotation;\n return;\n }\n\n const labelSizes = this._getLabelSizes();\n const maxLabelWidth = labelSizes.widest.width;\n const maxLabelHeight = labelSizes.highest.height;\n\n // Estimate the width of each grid based on the canvas width, the maximum\n // label width and the number of tick intervals\n const maxWidth = _limitValue(this.chart.width - maxLabelWidth, 0, this.maxWidth);\n tickWidth = options.offset ? this.maxWidth / numTicks : maxWidth / (numTicks - 1);\n\n // Allow 3 pixels x2 padding either side for label readability\n if (maxLabelWidth + 6 > tickWidth) {\n tickWidth = maxWidth / (numTicks - (options.offset ? 0.5 : 1));\n maxHeight = this.maxHeight - getTickMarkLength(options.grid)\n\t\t\t\t- tickOpts.padding - getTitleHeight(options.title, this.chart.options.font);\n maxLabelDiagonal = Math.sqrt(maxLabelWidth * maxLabelWidth + maxLabelHeight * maxLabelHeight);\n labelRotation = toDegrees(Math.min(\n Math.asin(_limitValue((labelSizes.highest.height + 6) / tickWidth, -1, 1)),\n Math.asin(_limitValue(maxHeight / maxLabelDiagonal, -1, 1)) - Math.asin(_limitValue(maxLabelHeight / maxLabelDiagonal, -1, 1))\n ));\n labelRotation = Math.max(minRotation, Math.min(maxRotation, labelRotation));\n }\n\n this.labelRotation = labelRotation;\n }\n afterCalculateLabelRotation() {\n call(this.options.afterCalculateLabelRotation, [this]);\n }\n afterAutoSkip() {}\n\n //\n\n beforeFit() {\n call(this.options.beforeFit, [this]);\n }\n fit() {\n // Reset\n const minSize = {\n width: 0,\n height: 0\n };\n\n const {chart, options: {ticks: tickOpts, title: titleOpts, grid: gridOpts}} = this;\n const display = this._isVisible();\n const isHorizontal = this.isHorizontal();\n\n if (display) {\n const titleHeight = getTitleHeight(titleOpts, chart.options.font);\n if (isHorizontal) {\n minSize.width = this.maxWidth;\n minSize.height = getTickMarkLength(gridOpts) + titleHeight;\n } else {\n minSize.height = this.maxHeight; // fill all the height\n minSize.width = getTickMarkLength(gridOpts) + titleHeight;\n }\n\n // Don't bother fitting the ticks if we are not showing the labels\n if (tickOpts.display && this.ticks.length) {\n const {first, last, widest, highest} = this._getLabelSizes();\n const tickPadding = tickOpts.padding * 2;\n const angleRadians = toRadians(this.labelRotation);\n const cos = Math.cos(angleRadians);\n const sin = Math.sin(angleRadians);\n\n if (isHorizontal) {\n // A horizontal axis is more constrained by the height.\n const labelHeight = tickOpts.mirror ? 0 : sin * widest.width + cos * highest.height;\n minSize.height = Math.min(this.maxHeight, minSize.height + labelHeight + tickPadding);\n } else {\n // A vertical axis is more constrained by the width. Labels are the\n // dominant factor here, so get that length first and account for padding\n const labelWidth = tickOpts.mirror ? 0 : cos * widest.width + sin * highest.height;\n\n minSize.width = Math.min(this.maxWidth, minSize.width + labelWidth + tickPadding);\n }\n this._calculatePadding(first, last, sin, cos);\n }\n }\n\n this._handleMargins();\n\n if (isHorizontal) {\n this.width = this._length = chart.width - this._margins.left - this._margins.right;\n this.height = minSize.height;\n } else {\n this.width = minSize.width;\n this.height = this._length = chart.height - this._margins.top - this._margins.bottom;\n }\n }\n\n _calculatePadding(first, last, sin, cos) {\n const {ticks: {align, padding}, position} = this.options;\n const isRotated = this.labelRotation !== 0;\n const labelsBelowTicks = position !== 'top' && this.axis === 'x';\n\n if (this.isHorizontal()) {\n const offsetLeft = this.getPixelForTick(0) - this.left;\n const offsetRight = this.right - this.getPixelForTick(this.ticks.length - 1);\n let paddingLeft = 0;\n let paddingRight = 0;\n\n // Ensure that our ticks are always inside the canvas. When rotated, ticks are right aligned\n // which means that the right padding is dominated by the font height\n if (isRotated) {\n if (labelsBelowTicks) {\n paddingLeft = cos * first.width;\n paddingRight = sin * last.height;\n } else {\n paddingLeft = sin * first.height;\n paddingRight = cos * last.width;\n }\n } else if (align === 'start') {\n paddingRight = last.width;\n } else if (align === 'end') {\n paddingLeft = first.width;\n } else if (align !== 'inner') {\n paddingLeft = first.width / 2;\n paddingRight = last.width / 2;\n }\n\n // Adjust padding taking into account changes in offsets\n this.paddingLeft = Math.max((paddingLeft - offsetLeft + padding) * this.width / (this.width - offsetLeft), 0);\n this.paddingRight = Math.max((paddingRight - offsetRight + padding) * this.width / (this.width - offsetRight), 0);\n } else {\n let paddingTop = last.height / 2;\n let paddingBottom = first.height / 2;\n\n if (align === 'start') {\n paddingTop = 0;\n paddingBottom = first.height;\n } else if (align === 'end') {\n paddingTop = last.height;\n paddingBottom = 0;\n }\n\n this.paddingTop = paddingTop + padding;\n this.paddingBottom = paddingBottom + padding;\n }\n }\n\n /**\n\t * Handle margins and padding interactions\n\t * @private\n\t */\n _handleMargins() {\n if (this._margins) {\n this._margins.left = Math.max(this.paddingLeft, this._margins.left);\n this._margins.top = Math.max(this.paddingTop, this._margins.top);\n this._margins.right = Math.max(this.paddingRight, this._margins.right);\n this._margins.bottom = Math.max(this.paddingBottom, this._margins.bottom);\n }\n }\n\n afterFit() {\n call(this.options.afterFit, [this]);\n }\n\n // Shared Methods\n /**\n\t * @return {boolean}\n\t */\n isHorizontal() {\n const {axis, position} = this.options;\n return position === 'top' || position === 'bottom' || axis === 'x';\n }\n /**\n\t * @return {boolean}\n\t */\n isFullSize() {\n return this.options.fullSize;\n }\n\n /**\n\t * @param {Tick[]} ticks\n\t * @private\n\t */\n _convertTicksToLabels(ticks) {\n this.beforeTickToLabelConversion();\n\n this.generateTickLabels(ticks);\n\n // Ticks should be skipped when callback returns null or undef, so lets remove those.\n let i, ilen;\n for (i = 0, ilen = ticks.length; i < ilen; i++) {\n if (isNullOrUndef(ticks[i].label)) {\n ticks.splice(i, 1);\n ilen--;\n i--;\n }\n }\n\n this.afterTickToLabelConversion();\n }\n\n /**\n\t * @return {{ first: object, last: object, widest: object, highest: object, widths: Array, heights: array }}\n\t * @private\n\t */\n _getLabelSizes() {\n let labelSizes = this._labelSizes;\n\n if (!labelSizes) {\n const sampleSize = this.options.ticks.sampleSize;\n let ticks = this.ticks;\n if (sampleSize < ticks.length) {\n ticks = sample(ticks, sampleSize);\n }\n\n this._labelSizes = labelSizes = this._computeLabelSizes(ticks, ticks.length);\n }\n\n return labelSizes;\n }\n\n /**\n\t * Returns {width, height, offset} objects for the first, last, widest, highest tick\n\t * labels where offset indicates the anchor point offset from the top in pixels.\n\t * @return {{ first: object, last: object, widest: object, highest: object, widths: Array, heights: array }}\n\t * @private\n\t */\n _computeLabelSizes(ticks, length) {\n const {ctx, _longestTextCache: caches} = this;\n const widths = [];\n const heights = [];\n let widestLabelSize = 0;\n let highestLabelSize = 0;\n let i, j, jlen, label, tickFont, fontString, cache, lineHeight, width, height, nestedLabel;\n\n for (i = 0; i < length; ++i) {\n label = ticks[i].label;\n tickFont = this._resolveTickFontOptions(i);\n ctx.font = fontString = tickFont.string;\n cache = caches[fontString] = caches[fontString] || {data: {}, gc: []};\n lineHeight = tickFont.lineHeight;\n width = height = 0;\n // Undefined labels and arrays should not be measured\n if (!isNullOrUndef(label) && !isArray(label)) {\n width = _measureText(ctx, cache.data, cache.gc, width, label);\n height = lineHeight;\n } else if (isArray(label)) {\n // if it is an array let's measure each element\n for (j = 0, jlen = label.length; j < jlen; ++j) {\n nestedLabel = label[j];\n // Undefined labels and arrays should not be measured\n if (!isNullOrUndef(nestedLabel) && !isArray(nestedLabel)) {\n width = _measureText(ctx, cache.data, cache.gc, width, nestedLabel);\n height += lineHeight;\n }\n }\n }\n widths.push(width);\n heights.push(height);\n widestLabelSize = Math.max(width, widestLabelSize);\n highestLabelSize = Math.max(height, highestLabelSize);\n }\n garbageCollect(caches, length);\n\n const widest = widths.indexOf(widestLabelSize);\n const highest = heights.indexOf(highestLabelSize);\n\n const valueAt = (idx) => ({width: widths[idx] || 0, height: heights[idx] || 0});\n\n return {\n first: valueAt(0),\n last: valueAt(length - 1),\n widest: valueAt(widest),\n highest: valueAt(highest),\n widths,\n heights,\n };\n }\n\n /**\n\t * Used to get the label to display in the tooltip for the given value\n\t * @param {*} value\n\t * @return {string}\n\t */\n getLabelForValue(value) {\n return value;\n }\n\n /**\n\t * Returns the location of the given data point. Value can either be an index or a numerical value\n\t * The coordinate (0, 0) is at the upper-left corner of the canvas\n\t * @param {*} value\n\t * @param {number} [index]\n\t * @return {number}\n\t */\n getPixelForValue(value, index) { // eslint-disable-line no-unused-vars\n return NaN;\n }\n\n /**\n\t * Used to get the data value from a given pixel. This is the inverse of getPixelForValue\n\t * The coordinate (0, 0) is at the upper-left corner of the canvas\n\t * @param {number} pixel\n\t * @return {*}\n\t */\n getValueForPixel(pixel) {} // eslint-disable-line no-unused-vars\n\n /**\n\t * Returns the location of the tick at the given index\n\t * The coordinate (0, 0) is at the upper-left corner of the canvas\n\t * @param {number} index\n\t * @return {number}\n\t */\n getPixelForTick(index) {\n const ticks = this.ticks;\n if (index < 0 || index > ticks.length - 1) {\n return null;\n }\n return this.getPixelForValue(ticks[index].value);\n }\n\n /**\n\t * Utility for getting the pixel location of a percentage of scale\n\t * The coordinate (0, 0) is at the upper-left corner of the canvas\n\t * @param {number} decimal\n\t * @return {number}\n\t */\n getPixelForDecimal(decimal) {\n if (this._reversePixels) {\n decimal = 1 - decimal;\n }\n\n const pixel = this._startPixel + decimal * this._length;\n return _int16Range(this._alignToPixels ? _alignPixel(this.chart, pixel, 0) : pixel);\n }\n\n /**\n\t * @param {number} pixel\n\t * @return {number}\n\t */\n getDecimalForPixel(pixel) {\n const decimal = (pixel - this._startPixel) / this._length;\n return this._reversePixels ? 1 - decimal : decimal;\n }\n\n /**\n\t * Returns the pixel for the minimum chart value\n\t * The coordinate (0, 0) is at the upper-left corner of the canvas\n\t * @return {number}\n\t */\n getBasePixel() {\n return this.getPixelForValue(this.getBaseValue());\n }\n\n /**\n\t * @return {number}\n\t */\n getBaseValue() {\n const {min, max} = this;\n\n return min < 0 && max < 0 ? max :\n min > 0 && max > 0 ? min :\n 0;\n }\n\n /**\n\t * @protected\n\t */\n getContext(index) {\n const ticks = this.ticks || [];\n\n if (index >= 0 && index < ticks.length) {\n const tick = ticks[index];\n return tick.$context ||\n\t\t\t\t(tick.$context = createTickContext(this.getContext(), index, tick));\n }\n return this.$context ||\n\t\t\t(this.$context = createScaleContext(this.chart.getContext(), this));\n }\n\n /**\n\t * @return {number}\n\t * @private\n\t */\n _tickSize() {\n const optionTicks = this.options.ticks;\n\n // Calculate space needed by label in axis direction.\n const rot = toRadians(this.labelRotation);\n const cos = Math.abs(Math.cos(rot));\n const sin = Math.abs(Math.sin(rot));\n\n const labelSizes = this._getLabelSizes();\n const padding = optionTicks.autoSkipPadding || 0;\n const w = labelSizes ? labelSizes.widest.width + padding : 0;\n const h = labelSizes ? labelSizes.highest.height + padding : 0;\n\n // Calculate space needed for 1 tick in axis direction.\n return this.isHorizontal()\n ? h * cos > w * sin ? w / cos : h / sin\n : h * sin < w * cos ? h / cos : w / sin;\n }\n\n /**\n\t * @return {boolean}\n\t * @private\n\t */\n _isVisible() {\n const display = this.options.display;\n\n if (display !== 'auto') {\n return !!display;\n }\n\n return this.getMatchingVisibleMetas().length > 0;\n }\n\n /**\n\t * @private\n\t */\n _computeGridLineItems(chartArea) {\n const axis = this.axis;\n const chart = this.chart;\n const options = this.options;\n const {grid, position, border} = options;\n const offset = grid.offset;\n const isHorizontal = this.isHorizontal();\n const ticks = this.ticks;\n const ticksLength = ticks.length + (offset ? 1 : 0);\n const tl = getTickMarkLength(grid);\n const items = [];\n\n const borderOpts = border.setContext(this.getContext());\n const axisWidth = borderOpts.display ? borderOpts.width : 0;\n const axisHalfWidth = axisWidth / 2;\n const alignBorderValue = function(pixel) {\n return _alignPixel(chart, pixel, axisWidth);\n };\n let borderValue, i, lineValue, alignedLineValue;\n let tx1, ty1, tx2, ty2, x1, y1, x2, y2;\n\n if (position === 'top') {\n borderValue = alignBorderValue(this.bottom);\n ty1 = this.bottom - tl;\n ty2 = borderValue - axisHalfWidth;\n y1 = alignBorderValue(chartArea.top) + axisHalfWidth;\n y2 = chartArea.bottom;\n } else if (position === 'bottom') {\n borderValue = alignBorderValue(this.top);\n y1 = chartArea.top;\n y2 = alignBorderValue(chartArea.bottom) - axisHalfWidth;\n ty1 = borderValue + axisHalfWidth;\n ty2 = this.top + tl;\n } else if (position === 'left') {\n borderValue = alignBorderValue(this.right);\n tx1 = this.right - tl;\n tx2 = borderValue - axisHalfWidth;\n x1 = alignBorderValue(chartArea.left) + axisHalfWidth;\n x2 = chartArea.right;\n } else if (position === 'right') {\n borderValue = alignBorderValue(this.left);\n x1 = chartArea.left;\n x2 = alignBorderValue(chartArea.right) - axisHalfWidth;\n tx1 = borderValue + axisHalfWidth;\n tx2 = this.left + tl;\n } else if (axis === 'x') {\n if (position === 'center') {\n borderValue = alignBorderValue((chartArea.top + chartArea.bottom) / 2 + 0.5);\n } else if (isObject(position)) {\n const positionAxisID = Object.keys(position)[0];\n const value = position[positionAxisID];\n borderValue = alignBorderValue(this.chart.scales[positionAxisID].getPixelForValue(value));\n }\n\n y1 = chartArea.top;\n y2 = chartArea.bottom;\n ty1 = borderValue + axisHalfWidth;\n ty2 = ty1 + tl;\n } else if (axis === 'y') {\n if (position === 'center') {\n borderValue = alignBorderValue((chartArea.left + chartArea.right) / 2);\n } else if (isObject(position)) {\n const positionAxisID = Object.keys(position)[0];\n const value = position[positionAxisID];\n borderValue = alignBorderValue(this.chart.scales[positionAxisID].getPixelForValue(value));\n }\n\n tx1 = borderValue - axisHalfWidth;\n tx2 = tx1 - tl;\n x1 = chartArea.left;\n x2 = chartArea.right;\n }\n\n const limit = valueOrDefault(options.ticks.maxTicksLimit, ticksLength);\n const step = Math.max(1, Math.ceil(ticksLength / limit));\n for (i = 0; i < ticksLength; i += step) {\n const context = this.getContext(i);\n const optsAtIndex = grid.setContext(context);\n const optsAtIndexBorder = border.setContext(context);\n\n const lineWidth = optsAtIndex.lineWidth;\n const lineColor = optsAtIndex.color;\n const borderDash = optsAtIndexBorder.dash || [];\n const borderDashOffset = optsAtIndexBorder.dashOffset;\n\n const tickWidth = optsAtIndex.tickWidth;\n const tickColor = optsAtIndex.tickColor;\n const tickBorderDash = optsAtIndex.tickBorderDash || [];\n const tickBorderDashOffset = optsAtIndex.tickBorderDashOffset;\n\n lineValue = getPixelForGridLine(this, i, offset);\n\n // Skip if the pixel is out of the range\n if (lineValue === undefined) {\n continue;\n }\n\n alignedLineValue = _alignPixel(chart, lineValue, lineWidth);\n\n if (isHorizontal) {\n tx1 = tx2 = x1 = x2 = alignedLineValue;\n } else {\n ty1 = ty2 = y1 = y2 = alignedLineValue;\n }\n\n items.push({\n tx1,\n ty1,\n tx2,\n ty2,\n x1,\n y1,\n x2,\n y2,\n width: lineWidth,\n color: lineColor,\n borderDash,\n borderDashOffset,\n tickWidth,\n tickColor,\n tickBorderDash,\n tickBorderDashOffset,\n });\n }\n\n this._ticksLength = ticksLength;\n this._borderValue = borderValue;\n\n return items;\n }\n\n /**\n\t * @private\n\t */\n _computeLabelItems(chartArea) {\n const axis = this.axis;\n const options = this.options;\n const {position, ticks: optionTicks} = options;\n const isHorizontal = this.isHorizontal();\n const ticks = this.ticks;\n const {align, crossAlign, padding, mirror} = optionTicks;\n const tl = getTickMarkLength(options.grid);\n const tickAndPadding = tl + padding;\n const hTickAndPadding = mirror ? -padding : tickAndPadding;\n const rotation = -toRadians(this.labelRotation);\n const items = [];\n let i, ilen, tick, label, x, y, textAlign, pixel, font, lineHeight, lineCount, textOffset;\n let textBaseline = 'middle';\n\n if (position === 'top') {\n y = this.bottom - hTickAndPadding;\n textAlign = this._getXAxisLabelAlignment();\n } else if (position === 'bottom') {\n y = this.top + hTickAndPadding;\n textAlign = this._getXAxisLabelAlignment();\n } else if (position === 'left') {\n const ret = this._getYAxisLabelAlignment(tl);\n textAlign = ret.textAlign;\n x = ret.x;\n } else if (position === 'right') {\n const ret = this._getYAxisLabelAlignment(tl);\n textAlign = ret.textAlign;\n x = ret.x;\n } else if (axis === 'x') {\n if (position === 'center') {\n y = ((chartArea.top + chartArea.bottom) / 2) + tickAndPadding;\n } else if (isObject(position)) {\n const positionAxisID = Object.keys(position)[0];\n const value = position[positionAxisID];\n y = this.chart.scales[positionAxisID].getPixelForValue(value) + tickAndPadding;\n }\n textAlign = this._getXAxisLabelAlignment();\n } else if (axis === 'y') {\n if (position === 'center') {\n x = ((chartArea.left + chartArea.right) / 2) - tickAndPadding;\n } else if (isObject(position)) {\n const positionAxisID = Object.keys(position)[0];\n const value = position[positionAxisID];\n x = this.chart.scales[positionAxisID].getPixelForValue(value);\n }\n textAlign = this._getYAxisLabelAlignment(tl).textAlign;\n }\n\n if (axis === 'y') {\n if (align === 'start') {\n textBaseline = 'top';\n } else if (align === 'end') {\n textBaseline = 'bottom';\n }\n }\n\n const labelSizes = this._getLabelSizes();\n for (i = 0, ilen = ticks.length; i < ilen; ++i) {\n tick = ticks[i];\n label = tick.label;\n\n const optsAtIndex = optionTicks.setContext(this.getContext(i));\n pixel = this.getPixelForTick(i) + optionTicks.labelOffset;\n font = this._resolveTickFontOptions(i);\n lineHeight = font.lineHeight;\n lineCount = isArray(label) ? label.length : 1;\n const halfCount = lineCount / 2;\n const color = optsAtIndex.color;\n const strokeColor = optsAtIndex.textStrokeColor;\n const strokeWidth = optsAtIndex.textStrokeWidth;\n let tickTextAlign = textAlign;\n\n if (isHorizontal) {\n x = pixel;\n\n if (textAlign === 'inner') {\n if (i === ilen - 1) {\n tickTextAlign = !this.options.reverse ? 'right' : 'left';\n } else if (i === 0) {\n tickTextAlign = !this.options.reverse ? 'left' : 'right';\n } else {\n tickTextAlign = 'center';\n }\n }\n\n if (position === 'top') {\n if (crossAlign === 'near' || rotation !== 0) {\n textOffset = -lineCount * lineHeight + lineHeight / 2;\n } else if (crossAlign === 'center') {\n textOffset = -labelSizes.highest.height / 2 - halfCount * lineHeight + lineHeight;\n } else {\n textOffset = -labelSizes.highest.height + lineHeight / 2;\n }\n } else {\n // eslint-disable-next-line no-lonely-if\n if (crossAlign === 'near' || rotation !== 0) {\n textOffset = lineHeight / 2;\n } else if (crossAlign === 'center') {\n textOffset = labelSizes.highest.height / 2 - halfCount * lineHeight;\n } else {\n textOffset = labelSizes.highest.height - lineCount * lineHeight;\n }\n }\n if (mirror) {\n textOffset *= -1;\n }\n if (rotation !== 0 && !optsAtIndex.showLabelBackdrop) {\n x += (lineHeight / 2) * Math.sin(rotation);\n }\n } else {\n y = pixel;\n textOffset = (1 - lineCount) * lineHeight / 2;\n }\n\n let backdrop;\n\n if (optsAtIndex.showLabelBackdrop) {\n const labelPadding = toPadding(optsAtIndex.backdropPadding);\n const height = labelSizes.heights[i];\n const width = labelSizes.widths[i];\n\n let top = textOffset - labelPadding.top;\n let left = 0 - labelPadding.left;\n\n switch (textBaseline) {\n case 'middle':\n top -= height / 2;\n break;\n case 'bottom':\n top -= height;\n break;\n default:\n break;\n }\n\n switch (textAlign) {\n case 'center':\n left -= width / 2;\n break;\n case 'right':\n left -= width;\n break;\n default:\n break;\n }\n\n backdrop = {\n left,\n top,\n width: width + labelPadding.width,\n height: height + labelPadding.height,\n\n color: optsAtIndex.backdropColor,\n };\n }\n\n items.push({\n label,\n font,\n textOffset,\n options: {\n rotation,\n color,\n strokeColor,\n strokeWidth,\n textAlign: tickTextAlign,\n textBaseline,\n translation: [x, y],\n backdrop,\n }\n });\n }\n\n return items;\n }\n\n _getXAxisLabelAlignment() {\n const {position, ticks} = this.options;\n const rotation = -toRadians(this.labelRotation);\n\n if (rotation) {\n return position === 'top' ? 'left' : 'right';\n }\n\n let align = 'center';\n\n if (ticks.align === 'start') {\n align = 'left';\n } else if (ticks.align === 'end') {\n align = 'right';\n } else if (ticks.align === 'inner') {\n align = 'inner';\n }\n\n return align;\n }\n\n _getYAxisLabelAlignment(tl) {\n const {position, ticks: {crossAlign, mirror, padding}} = this.options;\n const labelSizes = this._getLabelSizes();\n const tickAndPadding = tl + padding;\n const widest = labelSizes.widest.width;\n\n let textAlign;\n let x;\n\n if (position === 'left') {\n if (mirror) {\n x = this.right + padding;\n\n if (crossAlign === 'near') {\n textAlign = 'left';\n } else if (crossAlign === 'center') {\n textAlign = 'center';\n x += (widest / 2);\n } else {\n textAlign = 'right';\n x += widest;\n }\n } else {\n x = this.right - tickAndPadding;\n\n if (crossAlign === 'near') {\n textAlign = 'right';\n } else if (crossAlign === 'center') {\n textAlign = 'center';\n x -= (widest / 2);\n } else {\n textAlign = 'left';\n x = this.left;\n }\n }\n } else if (position === 'right') {\n if (mirror) {\n x = this.left + padding;\n\n if (crossAlign === 'near') {\n textAlign = 'right';\n } else if (crossAlign === 'center') {\n textAlign = 'center';\n x -= (widest / 2);\n } else {\n textAlign = 'left';\n x -= widest;\n }\n } else {\n x = this.left + tickAndPadding;\n\n if (crossAlign === 'near') {\n textAlign = 'left';\n } else if (crossAlign === 'center') {\n textAlign = 'center';\n x += widest / 2;\n } else {\n textAlign = 'right';\n x = this.right;\n }\n }\n } else {\n textAlign = 'right';\n }\n\n return {textAlign, x};\n }\n\n /**\n\t * @private\n\t */\n _computeLabelArea() {\n if (this.options.ticks.mirror) {\n return;\n }\n\n const chart = this.chart;\n const position = this.options.position;\n\n if (position === 'left' || position === 'right') {\n return {top: 0, left: this.left, bottom: chart.height, right: this.right};\n } if (position === 'top' || position === 'bottom') {\n return {top: this.top, left: 0, bottom: this.bottom, right: chart.width};\n }\n }\n\n /**\n * @protected\n */\n drawBackground() {\n const {ctx, options: {backgroundColor}, left, top, width, height} = this;\n if (backgroundColor) {\n ctx.save();\n ctx.fillStyle = backgroundColor;\n ctx.fillRect(left, top, width, height);\n ctx.restore();\n }\n }\n\n getLineWidthForValue(value) {\n const grid = this.options.grid;\n if (!this._isVisible() || !grid.display) {\n return 0;\n }\n const ticks = this.ticks;\n const index = ticks.findIndex(t => t.value === value);\n if (index >= 0) {\n const opts = grid.setContext(this.getContext(index));\n return opts.lineWidth;\n }\n return 0;\n }\n\n /**\n\t * @protected\n\t */\n drawGrid(chartArea) {\n const grid = this.options.grid;\n const ctx = this.ctx;\n const items = this._gridLineItems || (this._gridLineItems = this._computeGridLineItems(chartArea));\n let i, ilen;\n\n const drawLine = (p1, p2, style) => {\n if (!style.width || !style.color) {\n return;\n }\n ctx.save();\n ctx.lineWidth = style.width;\n ctx.strokeStyle = style.color;\n ctx.setLineDash(style.borderDash || []);\n ctx.lineDashOffset = style.borderDashOffset;\n\n ctx.beginPath();\n ctx.moveTo(p1.x, p1.y);\n ctx.lineTo(p2.x, p2.y);\n ctx.stroke();\n ctx.restore();\n };\n\n if (grid.display) {\n for (i = 0, ilen = items.length; i < ilen; ++i) {\n const item = items[i];\n\n if (grid.drawOnChartArea) {\n drawLine(\n {x: item.x1, y: item.y1},\n {x: item.x2, y: item.y2},\n item\n );\n }\n\n if (grid.drawTicks) {\n drawLine(\n {x: item.tx1, y: item.ty1},\n {x: item.tx2, y: item.ty2},\n {\n color: item.tickColor,\n width: item.tickWidth,\n borderDash: item.tickBorderDash,\n borderDashOffset: item.tickBorderDashOffset\n }\n );\n }\n }\n }\n }\n\n /**\n\t * @protected\n\t */\n drawBorder() {\n const {chart, ctx, options: {border, grid}} = this;\n const borderOpts = border.setContext(this.getContext());\n const axisWidth = border.display ? borderOpts.width : 0;\n if (!axisWidth) {\n return;\n }\n const lastLineWidth = grid.setContext(this.getContext(0)).lineWidth;\n const borderValue = this._borderValue;\n let x1, x2, y1, y2;\n\n if (this.isHorizontal()) {\n x1 = _alignPixel(chart, this.left, axisWidth) - axisWidth / 2;\n x2 = _alignPixel(chart, this.right, lastLineWidth) + lastLineWidth / 2;\n y1 = y2 = borderValue;\n } else {\n y1 = _alignPixel(chart, this.top, axisWidth) - axisWidth / 2;\n y2 = _alignPixel(chart, this.bottom, lastLineWidth) + lastLineWidth / 2;\n x1 = x2 = borderValue;\n }\n ctx.save();\n ctx.lineWidth = borderOpts.width;\n ctx.strokeStyle = borderOpts.color;\n\n ctx.beginPath();\n ctx.moveTo(x1, y1);\n ctx.lineTo(x2, y2);\n ctx.stroke();\n\n ctx.restore();\n }\n\n /**\n\t * @protected\n\t */\n drawLabels(chartArea) {\n const optionTicks = this.options.ticks;\n\n if (!optionTicks.display) {\n return;\n }\n\n const ctx = this.ctx;\n\n const area = this._computeLabelArea();\n if (area) {\n clipArea(ctx, area);\n }\n\n const items = this.getLabelItems(chartArea);\n for (const item of items) {\n const renderTextOptions = item.options;\n const tickFont = item.font;\n const label = item.label;\n const y = item.textOffset;\n renderText(ctx, label, 0, y, tickFont, renderTextOptions);\n }\n\n if (area) {\n unclipArea(ctx);\n }\n }\n\n /**\n\t * @protected\n\t */\n drawTitle() {\n const {ctx, options: {position, title, reverse}} = this;\n\n if (!title.display) {\n return;\n }\n\n const font = toFont(title.font);\n const padding = toPadding(title.padding);\n const align = title.align;\n let offset = font.lineHeight / 2;\n\n if (position === 'bottom' || position === 'center' || isObject(position)) {\n offset += padding.bottom;\n if (isArray(title.text)) {\n offset += font.lineHeight * (title.text.length - 1);\n }\n } else {\n offset += padding.top;\n }\n\n const {titleX, titleY, maxWidth, rotation} = titleArgs(this, offset, position, align);\n\n renderText(ctx, title.text, 0, 0, font, {\n color: title.color,\n maxWidth,\n rotation,\n textAlign: titleAlign(align, position, reverse),\n textBaseline: 'middle',\n translation: [titleX, titleY],\n });\n }\n\n draw(chartArea) {\n if (!this._isVisible()) {\n return;\n }\n\n this.drawBackground();\n this.drawGrid(chartArea);\n this.drawBorder();\n this.drawTitle();\n this.drawLabels(chartArea);\n }\n\n /**\n\t * @return {object[]}\n\t * @private\n\t */\n _layers() {\n const opts = this.options;\n const tz = opts.ticks && opts.ticks.z || 0;\n const gz = valueOrDefault(opts.grid && opts.grid.z, -1);\n const bz = valueOrDefault(opts.border && opts.border.z, 0);\n\n if (!this._isVisible() || this.draw !== Scale.prototype.draw) {\n // backward compatibility: draw has been overridden by custom scale\n return [{\n z: tz,\n draw: (chartArea) => {\n this.draw(chartArea);\n }\n }];\n }\n\n return [{\n z: gz,\n draw: (chartArea) => {\n this.drawBackground();\n this.drawGrid(chartArea);\n this.drawTitle();\n }\n }, {\n z: bz,\n draw: () => {\n this.drawBorder();\n }\n }, {\n z: tz,\n draw: (chartArea) => {\n this.drawLabels(chartArea);\n }\n }];\n }\n\n /**\n\t * Returns visible dataset metas that are attached to this scale\n\t * @param {string} [type] - if specified, also filter by dataset type\n\t * @return {object[]}\n\t */\n getMatchingVisibleMetas(type) {\n const metas = this.chart.getSortedVisibleDatasetMetas();\n const axisID = this.axis + 'AxisID';\n const result = [];\n let i, ilen;\n\n for (i = 0, ilen = metas.length; i < ilen; ++i) {\n const meta = metas[i];\n if (meta[axisID] === this.id && (!type || meta.type === type)) {\n result.push(meta);\n }\n }\n return result;\n }\n\n /**\n\t * @param {number} index\n\t * @return {object}\n\t * @protected\n \t */\n _resolveTickFontOptions(index) {\n const opts = this.options.ticks.setContext(this.getContext(index));\n return toFont(opts.font);\n }\n\n /**\n * @protected\n */\n _maxDigits() {\n const fontSize = this._resolveTickFontOptions(0).lineHeight;\n return (this.isHorizontal() ? this.width : this.height) / fontSize;\n }\n}\n","import {merge} from '../helpers/index.js';\nimport defaults, {overrides} from './core.defaults.js';\n\n/**\n * @typedef {{id: string, defaults: any, overrides?: any, defaultRoutes: any}} IChartComponent\n */\n\nexport default class TypedRegistry {\n constructor(type, scope, override) {\n this.type = type;\n this.scope = scope;\n this.override = override;\n this.items = Object.create(null);\n }\n\n isForType(type) {\n return Object.prototype.isPrototypeOf.call(this.type.prototype, type.prototype);\n }\n\n /**\n\t * @param {IChartComponent} item\n\t * @returns {string} The scope where items defaults were registered to.\n\t */\n register(item) {\n const proto = Object.getPrototypeOf(item);\n let parentScope;\n\n if (isIChartComponent(proto)) {\n // Make sure the parent is registered and note the scope where its defaults are.\n parentScope = this.register(proto);\n }\n\n const items = this.items;\n const id = item.id;\n const scope = this.scope + '.' + id;\n\n if (!id) {\n throw new Error('class does not have id: ' + item);\n }\n\n if (id in items) {\n // already registered\n return scope;\n }\n\n items[id] = item;\n registerDefaults(item, scope, parentScope);\n if (this.override) {\n defaults.override(item.id, item.overrides);\n }\n\n return scope;\n }\n\n /**\n\t * @param {string} id\n\t * @returns {object?}\n\t */\n get(id) {\n return this.items[id];\n }\n\n /**\n\t * @param {IChartComponent} item\n\t */\n unregister(item) {\n const items = this.items;\n const id = item.id;\n const scope = this.scope;\n\n if (id in items) {\n delete items[id];\n }\n\n if (scope && id in defaults[scope]) {\n delete defaults[scope][id];\n if (this.override) {\n delete overrides[id];\n }\n }\n }\n}\n\nfunction registerDefaults(item, scope, parentScope) {\n // Inherit the parent's defaults and keep existing defaults\n const itemDefaults = merge(Object.create(null), [\n parentScope ? defaults.get(parentScope) : {},\n defaults.get(scope),\n item.defaults\n ]);\n\n defaults.set(scope, itemDefaults);\n\n if (item.defaultRoutes) {\n routeDefaults(scope, item.defaultRoutes);\n }\n\n if (item.descriptors) {\n defaults.describe(scope, item.descriptors);\n }\n}\n\nfunction routeDefaults(scope, routes) {\n Object.keys(routes).forEach(property => {\n const propertyParts = property.split('.');\n const sourceName = propertyParts.pop();\n const sourceScope = [scope].concat(propertyParts).join('.');\n const parts = routes[property].split('.');\n const targetName = parts.pop();\n const targetScope = parts.join('.');\n defaults.route(sourceScope, sourceName, targetScope, targetName);\n });\n}\n\nfunction isIChartComponent(proto) {\n return 'id' in proto && 'defaults' in proto;\n}\n","import DatasetController from './core.datasetController.js';\nimport Element from './core.element.js';\nimport Scale from './core.scale.js';\nimport TypedRegistry from './core.typedRegistry.js';\nimport {each, callback as call, _capitalize} from '../helpers/helpers.core.js';\n\n/**\n * Please use the module's default export which provides a singleton instance\n * Note: class is exported for typedoc\n */\nexport class Registry {\n constructor() {\n this.controllers = new TypedRegistry(DatasetController, 'datasets', true);\n this.elements = new TypedRegistry(Element, 'elements');\n this.plugins = new TypedRegistry(Object, 'plugins');\n this.scales = new TypedRegistry(Scale, 'scales');\n // Order is important, Scale has Element in prototype chain,\n // so Scales must be before Elements. Plugins are a fallback, so not listed here.\n this._typedRegistries = [this.controllers, this.scales, this.elements];\n }\n\n /**\n\t * @param {...any} args\n\t */\n add(...args) {\n this._each('register', args);\n }\n\n remove(...args) {\n this._each('unregister', args);\n }\n\n /**\n\t * @param {...typeof DatasetController} args\n\t */\n addControllers(...args) {\n this._each('register', args, this.controllers);\n }\n\n /**\n\t * @param {...typeof Element} args\n\t */\n addElements(...args) {\n this._each('register', args, this.elements);\n }\n\n /**\n\t * @param {...any} args\n\t */\n addPlugins(...args) {\n this._each('register', args, this.plugins);\n }\n\n /**\n\t * @param {...typeof Scale} args\n\t */\n addScales(...args) {\n this._each('register', args, this.scales);\n }\n\n /**\n\t * @param {string} id\n\t * @returns {typeof DatasetController}\n\t */\n getController(id) {\n return this._get(id, this.controllers, 'controller');\n }\n\n /**\n\t * @param {string} id\n\t * @returns {typeof Element}\n\t */\n getElement(id) {\n return this._get(id, this.elements, 'element');\n }\n\n /**\n\t * @param {string} id\n\t * @returns {object}\n\t */\n getPlugin(id) {\n return this._get(id, this.plugins, 'plugin');\n }\n\n /**\n\t * @param {string} id\n\t * @returns {typeof Scale}\n\t */\n getScale(id) {\n return this._get(id, this.scales, 'scale');\n }\n\n /**\n\t * @param {...typeof DatasetController} args\n\t */\n removeControllers(...args) {\n this._each('unregister', args, this.controllers);\n }\n\n /**\n\t * @param {...typeof Element} args\n\t */\n removeElements(...args) {\n this._each('unregister', args, this.elements);\n }\n\n /**\n\t * @param {...any} args\n\t */\n removePlugins(...args) {\n this._each('unregister', args, this.plugins);\n }\n\n /**\n\t * @param {...typeof Scale} args\n\t */\n removeScales(...args) {\n this._each('unregister', args, this.scales);\n }\n\n /**\n\t * @private\n\t */\n _each(method, args, typedRegistry) {\n [...args].forEach(arg => {\n const reg = typedRegistry || this._getRegistryForType(arg);\n if (typedRegistry || reg.isForType(arg) || (reg === this.plugins && arg.id)) {\n this._exec(method, reg, arg);\n } else {\n // Handle loopable args\n // Use case:\n // import * as plugins from './plugins.js';\n // Chart.register(plugins);\n each(arg, item => {\n // If there are mixed types in the loopable, make sure those are\n // registered in correct registry\n // Use case: (treemap exporting controller, elements etc)\n // import * as treemap from 'chartjs-chart-treemap.js';\n // Chart.register(treemap);\n\n const itemReg = typedRegistry || this._getRegistryForType(item);\n this._exec(method, itemReg, item);\n });\n }\n });\n }\n\n /**\n\t * @private\n\t */\n _exec(method, registry, component) {\n const camelMethod = _capitalize(method);\n call(component['before' + camelMethod], [], component); // beforeRegister / beforeUnregister\n registry[method](component);\n call(component['after' + camelMethod], [], component); // afterRegister / afterUnregister\n }\n\n /**\n\t * @private\n\t */\n _getRegistryForType(type) {\n for (let i = 0; i < this._typedRegistries.length; i++) {\n const reg = this._typedRegistries[i];\n if (reg.isForType(type)) {\n return reg;\n }\n }\n // plugins is the fallback registry\n return this.plugins;\n }\n\n /**\n\t * @private\n\t */\n _get(id, typedRegistry, type) {\n const item = typedRegistry.get(id);\n if (item === undefined) {\n throw new Error('\"' + id + '\" is not a registered ' + type + '.');\n }\n return item;\n }\n\n}\n\n// singleton instance\nexport default /* #__PURE__ */ new Registry();\n","import registry from './core.registry.js';\nimport {callback as callCallback, isNullOrUndef, valueOrDefault} from '../helpers/helpers.core.js';\n\n/**\n * @typedef { import('./core.controller.js').default } Chart\n * @typedef { import('../types/index.js').ChartEvent } ChartEvent\n * @typedef { import('../plugins/plugin.tooltip.js').default } Tooltip\n */\n\n/**\n * @callback filterCallback\n * @param {{plugin: object, options: object}} value\n * @param {number} [index]\n * @param {array} [array]\n * @param {object} [thisArg]\n * @return {boolean}\n */\n\n\nexport default class PluginService {\n constructor() {\n this._init = [];\n }\n\n /**\n\t * Calls enabled plugins for `chart` on the specified hook and with the given args.\n\t * This method immediately returns as soon as a plugin explicitly returns false. The\n\t * returned value can be used, for instance, to interrupt the current action.\n\t * @param {Chart} chart - The chart instance for which plugins should be called.\n\t * @param {string} hook - The name of the plugin method to call (e.g. 'beforeUpdate').\n\t * @param {object} [args] - Extra arguments to apply to the hook call.\n * @param {filterCallback} [filter] - Filtering function for limiting which plugins are notified\n\t * @returns {boolean} false if any of the plugins return false, else returns true.\n\t */\n notify(chart, hook, args, filter) {\n if (hook === 'beforeInit') {\n this._init = this._createDescriptors(chart, true);\n this._notify(this._init, chart, 'install');\n }\n\n const descriptors = filter ? this._descriptors(chart).filter(filter) : this._descriptors(chart);\n const result = this._notify(descriptors, chart, hook, args);\n\n if (hook === 'afterDestroy') {\n this._notify(descriptors, chart, 'stop');\n this._notify(this._init, chart, 'uninstall');\n }\n return result;\n }\n\n /**\n\t * @private\n\t */\n _notify(descriptors, chart, hook, args) {\n args = args || {};\n for (const descriptor of descriptors) {\n const plugin = descriptor.plugin;\n const method = plugin[hook];\n const params = [chart, args, descriptor.options];\n if (callCallback(method, params, plugin) === false && args.cancelable) {\n return false;\n }\n }\n\n return true;\n }\n\n invalidate() {\n // When plugins are registered, there is the possibility of a double\n // invalidate situation. In this case, we only want to invalidate once.\n // If we invalidate multiple times, the `_oldCache` is lost and all of the\n // plugins are restarted without being correctly stopped.\n // See https://github.com/chartjs/Chart.js/issues/8147\n if (!isNullOrUndef(this._cache)) {\n this._oldCache = this._cache;\n this._cache = undefined;\n }\n }\n\n /**\n\t * @param {Chart} chart\n\t * @private\n\t */\n _descriptors(chart) {\n if (this._cache) {\n return this._cache;\n }\n\n const descriptors = this._cache = this._createDescriptors(chart);\n\n this._notifyStateChanges(chart);\n\n return descriptors;\n }\n\n _createDescriptors(chart, all) {\n const config = chart && chart.config;\n const options = valueOrDefault(config.options && config.options.plugins, {});\n const plugins = allPlugins(config);\n // options === false => all plugins are disabled\n return options === false && !all ? [] : createDescriptors(chart, plugins, options, all);\n }\n\n /**\n\t * @param {Chart} chart\n\t * @private\n\t */\n _notifyStateChanges(chart) {\n const previousDescriptors = this._oldCache || [];\n const descriptors = this._cache;\n const diff = (a, b) => a.filter(x => !b.some(y => x.plugin.id === y.plugin.id));\n this._notify(diff(previousDescriptors, descriptors), chart, 'stop');\n this._notify(diff(descriptors, previousDescriptors), chart, 'start');\n }\n}\n\n/**\n * @param {import('./core.config.js').default} config\n */\nfunction allPlugins(config) {\n const localIds = {};\n const plugins = [];\n const keys = Object.keys(registry.plugins.items);\n for (let i = 0; i < keys.length; i++) {\n plugins.push(registry.getPlugin(keys[i]));\n }\n\n const local = config.plugins || [];\n for (let i = 0; i < local.length; i++) {\n const plugin = local[i];\n\n if (plugins.indexOf(plugin) === -1) {\n plugins.push(plugin);\n localIds[plugin.id] = true;\n }\n }\n\n return {plugins, localIds};\n}\n\nfunction getOpts(options, all) {\n if (!all && options === false) {\n return null;\n }\n if (options === true) {\n return {};\n }\n return options;\n}\n\nfunction createDescriptors(chart, {plugins, localIds}, options, all) {\n const result = [];\n const context = chart.getContext();\n\n for (const plugin of plugins) {\n const id = plugin.id;\n const opts = getOpts(options[id], all);\n if (opts === null) {\n continue;\n }\n result.push({\n plugin,\n options: pluginOpts(chart.config, {plugin, local: localIds[id]}, opts, context)\n });\n }\n\n return result;\n}\n\nfunction pluginOpts(config, {plugin, local}, opts, context) {\n const keys = config.pluginScopeKeys(plugin);\n const scopes = config.getOptionScopes(opts, keys);\n if (local && plugin.defaults) {\n // make sure plugin defaults are in scopes for local (not registered) plugins\n scopes.push(plugin.defaults);\n }\n return config.createResolver(scopes, context, [''], {\n // These are just defaults that plugins can override\n scriptable: false,\n indexable: false,\n allKeys: true\n });\n}\n","import defaults, {overrides, descriptors} from './core.defaults.js';\nimport {mergeIf, resolveObjectKey, isArray, isFunction, valueOrDefault, isObject} from '../helpers/helpers.core.js';\nimport {_attachContext, _createResolver, _descriptors} from '../helpers/helpers.config.js';\n\nexport function getIndexAxis(type, options) {\n const datasetDefaults = defaults.datasets[type] || {};\n const datasetOptions = (options.datasets || {})[type] || {};\n return datasetOptions.indexAxis || options.indexAxis || datasetDefaults.indexAxis || 'x';\n}\n\nfunction getAxisFromDefaultScaleID(id, indexAxis) {\n let axis = id;\n if (id === '_index_') {\n axis = indexAxis;\n } else if (id === '_value_') {\n axis = indexAxis === 'x' ? 'y' : 'x';\n }\n return axis;\n}\n\nfunction getDefaultScaleIDFromAxis(axis, indexAxis) {\n return axis === indexAxis ? '_index_' : '_value_';\n}\n\nfunction axisFromPosition(position) {\n if (position === 'top' || position === 'bottom') {\n return 'x';\n }\n if (position === 'left' || position === 'right') {\n return 'y';\n }\n}\n\nexport function determineAxis(id, scaleOptions) {\n if (id === 'x' || id === 'y' || id === 'r') {\n return id;\n }\n\n id = scaleOptions.axis\n || axisFromPosition(scaleOptions.position)\n || id.length > 1 && determineAxis(id[0].toLowerCase(), scaleOptions);\n\n if (id) {\n return id;\n }\n\n throw new Error(`Cannot determine type of '${name}' axis. Please provide 'axis' or 'position' option.`);\n}\n\nfunction mergeScaleConfig(config, options) {\n const chartDefaults = overrides[config.type] || {scales: {}};\n const configScales = options.scales || {};\n const chartIndexAxis = getIndexAxis(config.type, options);\n const scales = Object.create(null);\n\n // First figure out first scale id's per axis.\n Object.keys(configScales).forEach(id => {\n const scaleConf = configScales[id];\n if (!isObject(scaleConf)) {\n return console.error(`Invalid scale configuration for scale: ${id}`);\n }\n if (scaleConf._proxy) {\n return console.warn(`Ignoring resolver passed as options for scale: ${id}`);\n }\n const axis = determineAxis(id, scaleConf);\n const defaultId = getDefaultScaleIDFromAxis(axis, chartIndexAxis);\n const defaultScaleOptions = chartDefaults.scales || {};\n scales[id] = mergeIf(Object.create(null), [{axis}, scaleConf, defaultScaleOptions[axis], defaultScaleOptions[defaultId]]);\n });\n\n // Then merge dataset defaults to scale configs\n config.data.datasets.forEach(dataset => {\n const type = dataset.type || config.type;\n const indexAxis = dataset.indexAxis || getIndexAxis(type, options);\n const datasetDefaults = overrides[type] || {};\n const defaultScaleOptions = datasetDefaults.scales || {};\n Object.keys(defaultScaleOptions).forEach(defaultID => {\n const axis = getAxisFromDefaultScaleID(defaultID, indexAxis);\n const id = dataset[axis + 'AxisID'] || axis;\n scales[id] = scales[id] || Object.create(null);\n mergeIf(scales[id], [{axis}, configScales[id], defaultScaleOptions[defaultID]]);\n });\n });\n\n // apply scale defaults, if not overridden by dataset defaults\n Object.keys(scales).forEach(key => {\n const scale = scales[key];\n mergeIf(scale, [defaults.scales[scale.type], defaults.scale]);\n });\n\n return scales;\n}\n\nfunction initOptions(config) {\n const options = config.options || (config.options = {});\n\n options.plugins = valueOrDefault(options.plugins, {});\n options.scales = mergeScaleConfig(config, options);\n}\n\nfunction initData(data) {\n data = data || {};\n data.datasets = data.datasets || [];\n data.labels = data.labels || [];\n return data;\n}\n\nfunction initConfig(config) {\n config = config || {};\n config.data = initData(config.data);\n\n initOptions(config);\n\n return config;\n}\n\nconst keyCache = new Map();\nconst keysCached = new Set();\n\nfunction cachedKeys(cacheKey, generate) {\n let keys = keyCache.get(cacheKey);\n if (!keys) {\n keys = generate();\n keyCache.set(cacheKey, keys);\n keysCached.add(keys);\n }\n return keys;\n}\n\nconst addIfFound = (set, obj, key) => {\n const opts = resolveObjectKey(obj, key);\n if (opts !== undefined) {\n set.add(opts);\n }\n};\n\nexport default class Config {\n constructor(config) {\n this._config = initConfig(config);\n this._scopeCache = new Map();\n this._resolverCache = new Map();\n }\n\n get platform() {\n return this._config.platform;\n }\n\n get type() {\n return this._config.type;\n }\n\n set type(type) {\n this._config.type = type;\n }\n\n get data() {\n return this._config.data;\n }\n\n set data(data) {\n this._config.data = initData(data);\n }\n\n get options() {\n return this._config.options;\n }\n\n set options(options) {\n this._config.options = options;\n }\n\n get plugins() {\n return this._config.plugins;\n }\n\n update() {\n const config = this._config;\n this.clearCache();\n initOptions(config);\n }\n\n clearCache() {\n this._scopeCache.clear();\n this._resolverCache.clear();\n }\n\n /**\n * Returns the option scope keys for resolving dataset options.\n * These keys do not include the dataset itself, because it is not under options.\n * @param {string} datasetType\n * @return {string[][]}\n */\n datasetScopeKeys(datasetType) {\n return cachedKeys(datasetType,\n () => [[\n `datasets.${datasetType}`,\n ''\n ]]);\n }\n\n /**\n * Returns the option scope keys for resolving dataset animation options.\n * These keys do not include the dataset itself, because it is not under options.\n * @param {string} datasetType\n * @param {string} transition\n * @return {string[][]}\n */\n datasetAnimationScopeKeys(datasetType, transition) {\n return cachedKeys(`${datasetType}.transition.${transition}`,\n () => [\n [\n `datasets.${datasetType}.transitions.${transition}`,\n `transitions.${transition}`,\n ],\n // The following are used for looking up the `animations` and `animation` keys\n [\n `datasets.${datasetType}`,\n ''\n ]\n ]);\n }\n\n /**\n * Returns the options scope keys for resolving element options that belong\n * to an dataset. These keys do not include the dataset itself, because it\n * is not under options.\n * @param {string} datasetType\n * @param {string} elementType\n * @return {string[][]}\n */\n datasetElementScopeKeys(datasetType, elementType) {\n return cachedKeys(`${datasetType}-${elementType}`,\n () => [[\n `datasets.${datasetType}.elements.${elementType}`,\n `datasets.${datasetType}`,\n `elements.${elementType}`,\n ''\n ]]);\n }\n\n /**\n * Returns the options scope keys for resolving plugin options.\n * @param {{id: string, additionalOptionScopes?: string[]}} plugin\n * @return {string[][]}\n */\n pluginScopeKeys(plugin) {\n const id = plugin.id;\n const type = this.type;\n return cachedKeys(`${type}-plugin-${id}`,\n () => [[\n `plugins.${id}`,\n ...plugin.additionalOptionScopes || [],\n ]]);\n }\n\n /**\n * @private\n */\n _cachedScopes(mainScope, resetCache) {\n const _scopeCache = this._scopeCache;\n let cache = _scopeCache.get(mainScope);\n if (!cache || resetCache) {\n cache = new Map();\n _scopeCache.set(mainScope, cache);\n }\n return cache;\n }\n\n /**\n * Resolves the objects from options and defaults for option value resolution.\n * @param {object} mainScope - The main scope object for options\n * @param {string[][]} keyLists - The arrays of keys in resolution order\n * @param {boolean} [resetCache] - reset the cache for this mainScope\n */\n getOptionScopes(mainScope, keyLists, resetCache) {\n const {options, type} = this;\n const cache = this._cachedScopes(mainScope, resetCache);\n const cached = cache.get(keyLists);\n if (cached) {\n return cached;\n }\n\n const scopes = new Set();\n\n keyLists.forEach(keys => {\n if (mainScope) {\n scopes.add(mainScope);\n keys.forEach(key => addIfFound(scopes, mainScope, key));\n }\n keys.forEach(key => addIfFound(scopes, options, key));\n keys.forEach(key => addIfFound(scopes, overrides[type] || {}, key));\n keys.forEach(key => addIfFound(scopes, defaults, key));\n keys.forEach(key => addIfFound(scopes, descriptors, key));\n });\n\n const array = Array.from(scopes);\n if (array.length === 0) {\n array.push(Object.create(null));\n }\n if (keysCached.has(keyLists)) {\n cache.set(keyLists, array);\n }\n return array;\n }\n\n /**\n * Returns the option scopes for resolving chart options\n * @return {object[]}\n */\n chartOptionScopes() {\n const {options, type} = this;\n\n return [\n options,\n overrides[type] || {},\n defaults.datasets[type] || {}, // https://github.com/chartjs/Chart.js/issues/8531\n {type},\n defaults,\n descriptors\n ];\n }\n\n /**\n * @param {object[]} scopes\n * @param {string[]} names\n * @param {function|object} context\n * @param {string[]} [prefixes]\n * @return {object}\n */\n resolveNamedOptions(scopes, names, context, prefixes = ['']) {\n const result = {$shared: true};\n const {resolver, subPrefixes} = getResolver(this._resolverCache, scopes, prefixes);\n let options = resolver;\n if (needContext(resolver, names)) {\n result.$shared = false;\n context = isFunction(context) ? context() : context;\n // subResolver is passed to scriptable options. It should not resolve to hover options.\n const subResolver = this.createResolver(scopes, context, subPrefixes);\n options = _attachContext(resolver, context, subResolver);\n }\n\n for (const prop of names) {\n result[prop] = options[prop];\n }\n return result;\n }\n\n /**\n * @param {object[]} scopes\n * @param {object} [context]\n * @param {string[]} [prefixes]\n * @param {{scriptable: boolean, indexable: boolean, allKeys?: boolean}} [descriptorDefaults]\n */\n createResolver(scopes, context, prefixes = [''], descriptorDefaults) {\n const {resolver} = getResolver(this._resolverCache, scopes, prefixes);\n return isObject(context)\n ? _attachContext(resolver, context, undefined, descriptorDefaults)\n : resolver;\n }\n}\n\nfunction getResolver(resolverCache, scopes, prefixes) {\n let cache = resolverCache.get(scopes);\n if (!cache) {\n cache = new Map();\n resolverCache.set(scopes, cache);\n }\n const cacheKey = prefixes.join();\n let cached = cache.get(cacheKey);\n if (!cached) {\n const resolver = _createResolver(scopes, prefixes);\n cached = {\n resolver,\n subPrefixes: prefixes.filter(p => !p.toLowerCase().includes('hover'))\n };\n cache.set(cacheKey, cached);\n }\n return cached;\n}\n\nconst hasFunction = value => isObject(value)\n && Object.getOwnPropertyNames(value).reduce((acc, key) => acc || isFunction(value[key]), false);\n\nfunction needContext(proxy, names) {\n const {isScriptable, isIndexable} = _descriptors(proxy);\n\n for (const prop of names) {\n const scriptable = isScriptable(prop);\n const indexable = isIndexable(prop);\n const value = (indexable || scriptable) && proxy[prop];\n if ((scriptable && (isFunction(value) || hasFunction(value)))\n || (indexable && isArray(value))) {\n return true;\n }\n }\n return false;\n}\n","import animator from './core.animator.js';\nimport defaults, {overrides} from './core.defaults.js';\nimport Interaction from './core.interaction.js';\nimport layouts from './core.layouts.js';\nimport {_detectPlatform} from '../platform/index.js';\nimport PluginService from './core.plugins.js';\nimport registry from './core.registry.js';\nimport Config, {determineAxis, getIndexAxis} from './core.config.js';\nimport {retinaScale, _isDomSupported} from '../helpers/helpers.dom.js';\nimport {each, callback as callCallback, uid, valueOrDefault, _elementsEqual, isNullOrUndef, setsEqual, defined, isFunction, _isClickEvent} from '../helpers/helpers.core.js';\nimport {clearCanvas, clipArea, createContext, unclipArea, _isPointInArea} from '../helpers/index.js';\n// @ts-ignore\nimport {version} from '../../package.json';\nimport {debounce} from '../helpers/helpers.extras.js';\n\n/**\n * @typedef { import('../types/index.js').ChartEvent } ChartEvent\n * @typedef { import('../types/index.js').Point } Point\n */\n\nconst KNOWN_POSITIONS = ['top', 'bottom', 'left', 'right', 'chartArea'];\nfunction positionIsHorizontal(position, axis) {\n return position === 'top' || position === 'bottom' || (KNOWN_POSITIONS.indexOf(position) === -1 && axis === 'x');\n}\n\nfunction compare2Level(l1, l2) {\n return function(a, b) {\n return a[l1] === b[l1]\n ? a[l2] - b[l2]\n : a[l1] - b[l1];\n };\n}\n\nfunction onAnimationsComplete(context) {\n const chart = context.chart;\n const animationOptions = chart.options.animation;\n\n chart.notifyPlugins('afterRender');\n callCallback(animationOptions && animationOptions.onComplete, [context], chart);\n}\n\nfunction onAnimationProgress(context) {\n const chart = context.chart;\n const animationOptions = chart.options.animation;\n callCallback(animationOptions && animationOptions.onProgress, [context], chart);\n}\n\n/**\n * Chart.js can take a string id of a canvas element, a 2d context, or a canvas element itself.\n * Attempt to unwrap the item passed into the chart constructor so that it is a canvas element (if possible).\n */\nfunction getCanvas(item) {\n if (_isDomSupported() && typeof item === 'string') {\n item = document.getElementById(item);\n } else if (item && item.length) {\n // Support for array based queries (such as jQuery)\n item = item[0];\n }\n\n if (item && item.canvas) {\n // Support for any object associated to a canvas (including a context2d)\n item = item.canvas;\n }\n return item;\n}\n\nconst instances = {};\nconst getChart = (key) => {\n const canvas = getCanvas(key);\n return Object.values(instances).filter((c) => c.canvas === canvas).pop();\n};\n\nfunction moveNumericKeys(obj, start, move) {\n const keys = Object.keys(obj);\n for (const key of keys) {\n const intKey = +key;\n if (intKey >= start) {\n const value = obj[key];\n delete obj[key];\n if (move > 0 || intKey > start) {\n obj[intKey + move] = value;\n }\n }\n }\n}\n\n/**\n * @param {ChartEvent} e\n * @param {ChartEvent|null} lastEvent\n * @param {boolean} inChartArea\n * @param {boolean} isClick\n * @returns {ChartEvent|null}\n */\nfunction determineLastEvent(e, lastEvent, inChartArea, isClick) {\n if (!inChartArea || e.type === 'mouseout') {\n return null;\n }\n if (isClick) {\n return lastEvent;\n }\n return e;\n}\n\nfunction getDatasetArea(meta) {\n const {xScale, yScale} = meta;\n if (xScale && yScale) {\n return {\n left: xScale.left,\n right: xScale.right,\n top: yScale.top,\n bottom: yScale.bottom\n };\n }\n}\n\nclass Chart {\n\n static defaults = defaults;\n static instances = instances;\n static overrides = overrides;\n static registry = registry;\n static version = version;\n static getChart = getChart;\n\n static register(...items) {\n registry.add(...items);\n invalidatePlugins();\n }\n\n static unregister(...items) {\n registry.remove(...items);\n invalidatePlugins();\n }\n\n // eslint-disable-next-line max-statements\n constructor(item, userConfig) {\n const config = this.config = new Config(userConfig);\n const initialCanvas = getCanvas(item);\n const existingChart = getChart(initialCanvas);\n if (existingChart) {\n throw new Error(\n 'Canvas is already in use. Chart with ID \\'' + existingChart.id + '\\'' +\n\t\t\t\t' must be destroyed before the canvas with ID \\'' + existingChart.canvas.id + '\\' can be reused.'\n );\n }\n\n const options = config.createResolver(config.chartOptionScopes(), this.getContext());\n\n this.platform = new (config.platform || _detectPlatform(initialCanvas))();\n this.platform.updateConfig(config);\n\n const context = this.platform.acquireContext(initialCanvas, options.aspectRatio);\n const canvas = context && context.canvas;\n const height = canvas && canvas.height;\n const width = canvas && canvas.width;\n\n this.id = uid();\n this.ctx = context;\n this.canvas = canvas;\n this.width = width;\n this.height = height;\n this._options = options;\n // Store the previously used aspect ratio to determine if a resize\n // is needed during updates. Do this after _options is set since\n // aspectRatio uses a getter\n this._aspectRatio = this.aspectRatio;\n this._layers = [];\n this._metasets = [];\n this._stacks = undefined;\n this.boxes = [];\n this.currentDevicePixelRatio = undefined;\n this.chartArea = undefined;\n this._active = [];\n this._lastEvent = undefined;\n this._listeners = {};\n /** @type {?{attach?: function, detach?: function, resize?: function}} */\n this._responsiveListeners = undefined;\n this._sortedMetasets = [];\n this.scales = {};\n this._plugins = new PluginService();\n this.$proxies = {};\n this._hiddenIndices = {};\n this.attached = false;\n this._animationsDisabled = undefined;\n this.$context = undefined;\n this._doResize = debounce(mode => this.update(mode), options.resizeDelay || 0);\n this._dataChanges = [];\n\n // Add the chart instance to the global namespace\n instances[this.id] = this;\n\n if (!context || !canvas) {\n // The given item is not a compatible context2d element, let's return before finalizing\n // the chart initialization but after setting basic chart / controller properties that\n // can help to figure out that the chart is not valid (e.g chart.canvas !== null);\n // https://github.com/chartjs/Chart.js/issues/2807\n console.error(\"Failed to create chart: can't acquire context from the given item\");\n return;\n }\n\n animator.listen(this, 'complete', onAnimationsComplete);\n animator.listen(this, 'progress', onAnimationProgress);\n\n this._initialize();\n if (this.attached) {\n this.update();\n }\n }\n\n get aspectRatio() {\n const {options: {aspectRatio, maintainAspectRatio}, width, height, _aspectRatio} = this;\n if (!isNullOrUndef(aspectRatio)) {\n // If aspectRatio is defined in options, use that.\n return aspectRatio;\n }\n\n if (maintainAspectRatio && _aspectRatio) {\n // If maintainAspectRatio is truthly and we had previously determined _aspectRatio, use that\n return _aspectRatio;\n }\n\n // Calculate\n return height ? width / height : null;\n }\n\n get data() {\n return this.config.data;\n }\n\n set data(data) {\n this.config.data = data;\n }\n\n get options() {\n return this._options;\n }\n\n set options(options) {\n this.config.options = options;\n }\n\n get registry() {\n return registry;\n }\n\n /**\n\t * @private\n\t */\n _initialize() {\n // Before init plugin notification\n this.notifyPlugins('beforeInit');\n\n if (this.options.responsive) {\n this.resize();\n } else {\n retinaScale(this, this.options.devicePixelRatio);\n }\n\n this.bindEvents();\n\n // After init plugin notification\n this.notifyPlugins('afterInit');\n\n return this;\n }\n\n clear() {\n clearCanvas(this.canvas, this.ctx);\n return this;\n }\n\n stop() {\n animator.stop(this);\n return this;\n }\n\n /**\n\t * Resize the chart to its container or to explicit dimensions.\n\t * @param {number} [width]\n\t * @param {number} [height]\n\t */\n resize(width, height) {\n if (!animator.running(this)) {\n this._resize(width, height);\n } else {\n this._resizeBeforeDraw = {width, height};\n }\n }\n\n _resize(width, height) {\n const options = this.options;\n const canvas = this.canvas;\n const aspectRatio = options.maintainAspectRatio && this.aspectRatio;\n const newSize = this.platform.getMaximumSize(canvas, width, height, aspectRatio);\n const newRatio = options.devicePixelRatio || this.platform.getDevicePixelRatio();\n const mode = this.width ? 'resize' : 'attach';\n\n this.width = newSize.width;\n this.height = newSize.height;\n this._aspectRatio = this.aspectRatio;\n if (!retinaScale(this, newRatio, true)) {\n return;\n }\n\n this.notifyPlugins('resize', {size: newSize});\n\n callCallback(options.onResize, [this, newSize], this);\n\n if (this.attached) {\n if (this._doResize(mode)) {\n // The resize update is delayed, only draw without updating.\n this.render();\n }\n }\n }\n\n ensureScalesHaveIDs() {\n const options = this.options;\n const scalesOptions = options.scales || {};\n\n each(scalesOptions, (axisOptions, axisID) => {\n axisOptions.id = axisID;\n });\n }\n\n /**\n\t * Builds a map of scale ID to scale object for future lookup.\n\t */\n buildOrUpdateScales() {\n const options = this.options;\n const scaleOpts = options.scales;\n const scales = this.scales;\n const updated = Object.keys(scales).reduce((obj, id) => {\n obj[id] = false;\n return obj;\n }, {});\n let items = [];\n\n if (scaleOpts) {\n items = items.concat(\n Object.keys(scaleOpts).map((id) => {\n const scaleOptions = scaleOpts[id];\n const axis = determineAxis(id, scaleOptions);\n const isRadial = axis === 'r';\n const isHorizontal = axis === 'x';\n return {\n options: scaleOptions,\n dposition: isRadial ? 'chartArea' : isHorizontal ? 'bottom' : 'left',\n dtype: isRadial ? 'radialLinear' : isHorizontal ? 'category' : 'linear'\n };\n })\n );\n }\n\n each(items, (item) => {\n const scaleOptions = item.options;\n const id = scaleOptions.id;\n const axis = determineAxis(id, scaleOptions);\n const scaleType = valueOrDefault(scaleOptions.type, item.dtype);\n\n if (scaleOptions.position === undefined || positionIsHorizontal(scaleOptions.position, axis) !== positionIsHorizontal(item.dposition)) {\n scaleOptions.position = item.dposition;\n }\n\n updated[id] = true;\n let scale = null;\n if (id in scales && scales[id].type === scaleType) {\n scale = scales[id];\n } else {\n const scaleClass = registry.getScale(scaleType);\n scale = new scaleClass({\n id,\n type: scaleType,\n ctx: this.ctx,\n chart: this\n });\n scales[scale.id] = scale;\n }\n\n scale.init(scaleOptions, options);\n });\n // clear up discarded scales\n each(updated, (hasUpdated, id) => {\n if (!hasUpdated) {\n delete scales[id];\n }\n });\n\n each(scales, (scale) => {\n layouts.configure(this, scale, scale.options);\n layouts.addBox(this, scale);\n });\n }\n\n /**\n\t * @private\n\t */\n _updateMetasets() {\n const metasets = this._metasets;\n const numData = this.data.datasets.length;\n const numMeta = metasets.length;\n\n metasets.sort((a, b) => a.index - b.index);\n if (numMeta > numData) {\n for (let i = numData; i < numMeta; ++i) {\n this._destroyDatasetMeta(i);\n }\n metasets.splice(numData, numMeta - numData);\n }\n this._sortedMetasets = metasets.slice(0).sort(compare2Level('order', 'index'));\n }\n\n /**\n\t * @private\n\t */\n _removeUnreferencedMetasets() {\n const {_metasets: metasets, data: {datasets}} = this;\n if (metasets.length > datasets.length) {\n delete this._stacks;\n }\n metasets.forEach((meta, index) => {\n if (datasets.filter(x => x === meta._dataset).length === 0) {\n this._destroyDatasetMeta(index);\n }\n });\n }\n\n buildOrUpdateControllers() {\n const newControllers = [];\n const datasets = this.data.datasets;\n let i, ilen;\n\n this._removeUnreferencedMetasets();\n\n for (i = 0, ilen = datasets.length; i < ilen; i++) {\n const dataset = datasets[i];\n let meta = this.getDatasetMeta(i);\n const type = dataset.type || this.config.type;\n\n if (meta.type && meta.type !== type) {\n this._destroyDatasetMeta(i);\n meta = this.getDatasetMeta(i);\n }\n meta.type = type;\n meta.indexAxis = dataset.indexAxis || getIndexAxis(type, this.options);\n meta.order = dataset.order || 0;\n meta.index = i;\n meta.label = '' + dataset.label;\n meta.visible = this.isDatasetVisible(i);\n\n if (meta.controller) {\n meta.controller.updateIndex(i);\n meta.controller.linkScales();\n } else {\n const ControllerClass = registry.getController(type);\n const {datasetElementType, dataElementType} = defaults.datasets[type];\n Object.assign(ControllerClass, {\n dataElementType: registry.getElement(dataElementType),\n datasetElementType: datasetElementType && registry.getElement(datasetElementType)\n });\n meta.controller = new ControllerClass(this, i);\n newControllers.push(meta.controller);\n }\n }\n\n this._updateMetasets();\n return newControllers;\n }\n\n /**\n\t * Reset the elements of all datasets\n\t * @private\n\t */\n _resetElements() {\n each(this.data.datasets, (dataset, datasetIndex) => {\n this.getDatasetMeta(datasetIndex).controller.reset();\n }, this);\n }\n\n /**\n\t* Resets the chart back to its state before the initial animation\n\t*/\n reset() {\n this._resetElements();\n this.notifyPlugins('reset');\n }\n\n update(mode) {\n const config = this.config;\n\n config.update();\n const options = this._options = config.createResolver(config.chartOptionScopes(), this.getContext());\n const animsDisabled = this._animationsDisabled = !options.animation;\n\n this._updateScales();\n this._checkEventBindings();\n this._updateHiddenIndices();\n\n // plugins options references might have change, let's invalidate the cache\n // https://github.com/chartjs/Chart.js/issues/5111#issuecomment-355934167\n this._plugins.invalidate();\n\n if (this.notifyPlugins('beforeUpdate', {mode, cancelable: true}) === false) {\n return;\n }\n\n // Make sure dataset controllers are updated and new controllers are reset\n const newControllers = this.buildOrUpdateControllers();\n\n this.notifyPlugins('beforeElementsUpdate');\n\n // Make sure all dataset controllers have correct meta data counts\n let minPadding = 0;\n for (let i = 0, ilen = this.data.datasets.length; i < ilen; i++) {\n const {controller} = this.getDatasetMeta(i);\n const reset = !animsDisabled && newControllers.indexOf(controller) === -1;\n // New controllers will be reset after the layout pass, so we only want to modify\n // elements added to new datasets\n controller.buildOrUpdateElements(reset);\n minPadding = Math.max(+controller.getMaxOverflow(), minPadding);\n }\n minPadding = this._minPadding = options.layout.autoPadding ? minPadding : 0;\n this._updateLayout(minPadding);\n\n // Only reset the controllers if we have animations\n if (!animsDisabled) {\n // Can only reset the new controllers after the scales have been updated\n // Reset is done to get the starting point for the initial animation\n each(newControllers, (controller) => {\n controller.reset();\n });\n }\n\n this._updateDatasets(mode);\n\n // Do this before render so that any plugins that need final scale updates can use it\n this.notifyPlugins('afterUpdate', {mode});\n\n this._layers.sort(compare2Level('z', '_idx'));\n\n // Replay last event from before update, or set hover styles on active elements\n const {_active, _lastEvent} = this;\n if (_lastEvent) {\n this._eventHandler(_lastEvent, true);\n } else if (_active.length) {\n this._updateHoverStyles(_active, _active, true);\n }\n\n this.render();\n }\n\n /**\n * @private\n */\n _updateScales() {\n each(this.scales, (scale) => {\n layouts.removeBox(this, scale);\n });\n\n this.ensureScalesHaveIDs();\n this.buildOrUpdateScales();\n }\n\n /**\n * @private\n */\n _checkEventBindings() {\n const options = this.options;\n const existingEvents = new Set(Object.keys(this._listeners));\n const newEvents = new Set(options.events);\n\n if (!setsEqual(existingEvents, newEvents) || !!this._responsiveListeners !== options.responsive) {\n // The configured events have changed. Rebind.\n this.unbindEvents();\n this.bindEvents();\n }\n }\n\n /**\n * @private\n */\n _updateHiddenIndices() {\n const {_hiddenIndices} = this;\n const changes = this._getUniformDataChanges() || [];\n for (const {method, start, count} of changes) {\n const move = method === '_removeElements' ? -count : count;\n moveNumericKeys(_hiddenIndices, start, move);\n }\n }\n\n /**\n * @private\n */\n _getUniformDataChanges() {\n const _dataChanges = this._dataChanges;\n if (!_dataChanges || !_dataChanges.length) {\n return;\n }\n\n this._dataChanges = [];\n const datasetCount = this.data.datasets.length;\n const makeSet = (idx) => new Set(\n _dataChanges\n .filter(c => c[0] === idx)\n .map((c, i) => i + ',' + c.splice(1).join(','))\n );\n\n const changeSet = makeSet(0);\n for (let i = 1; i < datasetCount; i++) {\n if (!setsEqual(changeSet, makeSet(i))) {\n return;\n }\n }\n return Array.from(changeSet)\n .map(c => c.split(','))\n .map(a => ({method: a[1], start: +a[2], count: +a[3]}));\n }\n\n /**\n\t * Updates the chart layout unless a plugin returns `false` to the `beforeLayout`\n\t * hook, in which case, plugins will not be called on `afterLayout`.\n\t * @private\n\t */\n _updateLayout(minPadding) {\n if (this.notifyPlugins('beforeLayout', {cancelable: true}) === false) {\n return;\n }\n\n layouts.update(this, this.width, this.height, minPadding);\n\n const area = this.chartArea;\n const noArea = area.width <= 0 || area.height <= 0;\n\n this._layers = [];\n each(this.boxes, (box) => {\n if (noArea && box.position === 'chartArea') {\n // Skip drawing and configuring chartArea boxes when chartArea is zero or negative\n return;\n }\n\n // configure is called twice, once in core.scale.update and once here.\n // Here the boxes are fully updated and at their final positions.\n if (box.configure) {\n box.configure();\n }\n this._layers.push(...box._layers());\n }, this);\n\n this._layers.forEach((item, index) => {\n item._idx = index;\n });\n\n this.notifyPlugins('afterLayout');\n }\n\n /**\n\t * Updates all datasets unless a plugin returns `false` to the `beforeDatasetsUpdate`\n\t * hook, in which case, plugins will not be called on `afterDatasetsUpdate`.\n\t * @private\n\t */\n _updateDatasets(mode) {\n if (this.notifyPlugins('beforeDatasetsUpdate', {mode, cancelable: true}) === false) {\n return;\n }\n\n for (let i = 0, ilen = this.data.datasets.length; i < ilen; ++i) {\n this.getDatasetMeta(i).controller.configure();\n }\n\n for (let i = 0, ilen = this.data.datasets.length; i < ilen; ++i) {\n this._updateDataset(i, isFunction(mode) ? mode({datasetIndex: i}) : mode);\n }\n\n this.notifyPlugins('afterDatasetsUpdate', {mode});\n }\n\n /**\n\t * Updates dataset at index unless a plugin returns `false` to the `beforeDatasetUpdate`\n\t * hook, in which case, plugins will not be called on `afterDatasetUpdate`.\n\t * @private\n\t */\n _updateDataset(index, mode) {\n const meta = this.getDatasetMeta(index);\n const args = {meta, index, mode, cancelable: true};\n\n if (this.notifyPlugins('beforeDatasetUpdate', args) === false) {\n return;\n }\n\n meta.controller._update(mode);\n\n args.cancelable = false;\n this.notifyPlugins('afterDatasetUpdate', args);\n }\n\n render() {\n if (this.notifyPlugins('beforeRender', {cancelable: true}) === false) {\n return;\n }\n\n if (animator.has(this)) {\n if (this.attached && !animator.running(this)) {\n animator.start(this);\n }\n } else {\n this.draw();\n onAnimationsComplete({chart: this});\n }\n }\n\n draw() {\n let i;\n if (this._resizeBeforeDraw) {\n const {width, height} = this._resizeBeforeDraw;\n this._resize(width, height);\n this._resizeBeforeDraw = null;\n }\n this.clear();\n\n if (this.width <= 0 || this.height <= 0) {\n return;\n }\n\n if (this.notifyPlugins('beforeDraw', {cancelable: true}) === false) {\n return;\n }\n\n // Because of plugin hooks (before/afterDatasetsDraw), datasets can't\n // currently be part of layers. Instead, we draw\n // layers <= 0 before(default, backward compat), and the rest after\n const layers = this._layers;\n for (i = 0; i < layers.length && layers[i].z <= 0; ++i) {\n layers[i].draw(this.chartArea);\n }\n\n this._drawDatasets();\n\n // Rest of layers\n for (; i < layers.length; ++i) {\n layers[i].draw(this.chartArea);\n }\n\n this.notifyPlugins('afterDraw');\n }\n\n /**\n\t * @private\n\t */\n _getSortedDatasetMetas(filterVisible) {\n const metasets = this._sortedMetasets;\n const result = [];\n let i, ilen;\n\n for (i = 0, ilen = metasets.length; i < ilen; ++i) {\n const meta = metasets[i];\n if (!filterVisible || meta.visible) {\n result.push(meta);\n }\n }\n\n return result;\n }\n\n /**\n\t * Gets the visible dataset metas in drawing order\n\t * @return {object[]}\n\t */\n getSortedVisibleDatasetMetas() {\n return this._getSortedDatasetMetas(true);\n }\n\n /**\n\t * Draws all datasets unless a plugin returns `false` to the `beforeDatasetsDraw`\n\t * hook, in which case, plugins will not be called on `afterDatasetsDraw`.\n\t * @private\n\t */\n _drawDatasets() {\n if (this.notifyPlugins('beforeDatasetsDraw', {cancelable: true}) === false) {\n return;\n }\n\n const metasets = this.getSortedVisibleDatasetMetas();\n for (let i = metasets.length - 1; i >= 0; --i) {\n this._drawDataset(metasets[i]);\n }\n\n this.notifyPlugins('afterDatasetsDraw');\n }\n\n /**\n\t * Draws dataset at index unless a plugin returns `false` to the `beforeDatasetDraw`\n\t * hook, in which case, plugins will not be called on `afterDatasetDraw`.\n\t * @private\n\t */\n _drawDataset(meta) {\n const ctx = this.ctx;\n const clip = meta._clip;\n const useClip = !clip.disabled;\n const area = getDatasetArea(meta) || this.chartArea;\n const args = {\n meta,\n index: meta.index,\n cancelable: true\n };\n\n if (this.notifyPlugins('beforeDatasetDraw', args) === false) {\n return;\n }\n\n if (useClip) {\n clipArea(ctx, {\n left: clip.left === false ? 0 : area.left - clip.left,\n right: clip.right === false ? this.width : area.right + clip.right,\n top: clip.top === false ? 0 : area.top - clip.top,\n bottom: clip.bottom === false ? this.height : area.bottom + clip.bottom\n });\n }\n\n meta.controller.draw();\n\n if (useClip) {\n unclipArea(ctx);\n }\n\n args.cancelable = false;\n this.notifyPlugins('afterDatasetDraw', args);\n }\n\n /**\n * Checks whether the given point is in the chart area.\n * @param {Point} point - in relative coordinates (see, e.g., getRelativePosition)\n * @returns {boolean}\n */\n isPointInArea(point) {\n return _isPointInArea(point, this.chartArea, this._minPadding);\n }\n\n getElementsAtEventForMode(e, mode, options, useFinalPosition) {\n const method = Interaction.modes[mode];\n if (typeof method === 'function') {\n return method(this, e, options, useFinalPosition);\n }\n\n return [];\n }\n\n getDatasetMeta(datasetIndex) {\n const dataset = this.data.datasets[datasetIndex];\n const metasets = this._metasets;\n let meta = metasets.filter(x => x && x._dataset === dataset).pop();\n\n if (!meta) {\n meta = {\n type: null,\n data: [],\n dataset: null,\n controller: null,\n hidden: null,\t\t\t// See isDatasetVisible() comment\n xAxisID: null,\n yAxisID: null,\n order: dataset && dataset.order || 0,\n index: datasetIndex,\n _dataset: dataset,\n _parsed: [],\n _sorted: false\n };\n metasets.push(meta);\n }\n\n return meta;\n }\n\n getContext() {\n return this.$context || (this.$context = createContext(null, {chart: this, type: 'chart'}));\n }\n\n getVisibleDatasetCount() {\n return this.getSortedVisibleDatasetMetas().length;\n }\n\n isDatasetVisible(datasetIndex) {\n const dataset = this.data.datasets[datasetIndex];\n if (!dataset) {\n return false;\n }\n\n const meta = this.getDatasetMeta(datasetIndex);\n\n // meta.hidden is a per chart dataset hidden flag override with 3 states: if true or false,\n // the dataset.hidden value is ignored, else if null, the dataset hidden state is returned.\n return typeof meta.hidden === 'boolean' ? !meta.hidden : !dataset.hidden;\n }\n\n setDatasetVisibility(datasetIndex, visible) {\n const meta = this.getDatasetMeta(datasetIndex);\n meta.hidden = !visible;\n }\n\n toggleDataVisibility(index) {\n this._hiddenIndices[index] = !this._hiddenIndices[index];\n }\n\n getDataVisibility(index) {\n return !this._hiddenIndices[index];\n }\n\n /**\n\t * @private\n\t */\n _updateVisibility(datasetIndex, dataIndex, visible) {\n const mode = visible ? 'show' : 'hide';\n const meta = this.getDatasetMeta(datasetIndex);\n const anims = meta.controller._resolveAnimations(undefined, mode);\n\n if (defined(dataIndex)) {\n meta.data[dataIndex].hidden = !visible;\n this.update();\n } else {\n this.setDatasetVisibility(datasetIndex, visible);\n // Animate visible state, so hide animation can be seen. This could be handled better if update / updateDataset returned a Promise.\n anims.update(meta, {visible});\n this.update((ctx) => ctx.datasetIndex === datasetIndex ? mode : undefined);\n }\n }\n\n hide(datasetIndex, dataIndex) {\n this._updateVisibility(datasetIndex, dataIndex, false);\n }\n\n show(datasetIndex, dataIndex) {\n this._updateVisibility(datasetIndex, dataIndex, true);\n }\n\n /**\n\t * @private\n\t */\n _destroyDatasetMeta(datasetIndex) {\n const meta = this._metasets[datasetIndex];\n if (meta && meta.controller) {\n meta.controller._destroy();\n }\n delete this._metasets[datasetIndex];\n }\n\n _stop() {\n let i, ilen;\n this.stop();\n animator.remove(this);\n\n for (i = 0, ilen = this.data.datasets.length; i < ilen; ++i) {\n this._destroyDatasetMeta(i);\n }\n }\n\n destroy() {\n this.notifyPlugins('beforeDestroy');\n const {canvas, ctx} = this;\n\n this._stop();\n this.config.clearCache();\n\n if (canvas) {\n this.unbindEvents();\n clearCanvas(canvas, ctx);\n this.platform.releaseContext(ctx);\n this.canvas = null;\n this.ctx = null;\n }\n\n delete instances[this.id];\n\n this.notifyPlugins('afterDestroy');\n }\n\n toBase64Image(...args) {\n return this.canvas.toDataURL(...args);\n }\n\n /**\n\t * @private\n\t */\n bindEvents() {\n this.bindUserEvents();\n if (this.options.responsive) {\n this.bindResponsiveEvents();\n } else {\n this.attached = true;\n }\n }\n\n /**\n * @private\n */\n bindUserEvents() {\n const listeners = this._listeners;\n const platform = this.platform;\n\n const _add = (type, listener) => {\n platform.addEventListener(this, type, listener);\n listeners[type] = listener;\n };\n\n const listener = (e, x, y) => {\n e.offsetX = x;\n e.offsetY = y;\n this._eventHandler(e);\n };\n\n each(this.options.events, (type) => _add(type, listener));\n }\n\n /**\n * @private\n */\n bindResponsiveEvents() {\n if (!this._responsiveListeners) {\n this._responsiveListeners = {};\n }\n const listeners = this._responsiveListeners;\n const platform = this.platform;\n\n const _add = (type, listener) => {\n platform.addEventListener(this, type, listener);\n listeners[type] = listener;\n };\n const _remove = (type, listener) => {\n if (listeners[type]) {\n platform.removeEventListener(this, type, listener);\n delete listeners[type];\n }\n };\n\n const listener = (width, height) => {\n if (this.canvas) {\n this.resize(width, height);\n }\n };\n\n let detached; // eslint-disable-line prefer-const\n const attached = () => {\n _remove('attach', attached);\n\n this.attached = true;\n this.resize();\n\n _add('resize', listener);\n _add('detach', detached);\n };\n\n detached = () => {\n this.attached = false;\n\n _remove('resize', listener);\n\n // Stop animating and remove metasets, so when re-attached, the animations start from beginning.\n this._stop();\n this._resize(0, 0);\n\n _add('attach', attached);\n };\n\n if (platform.isAttached(this.canvas)) {\n attached();\n } else {\n detached();\n }\n }\n\n /**\n\t * @private\n\t */\n unbindEvents() {\n each(this._listeners, (listener, type) => {\n this.platform.removeEventListener(this, type, listener);\n });\n this._listeners = {};\n\n each(this._responsiveListeners, (listener, type) => {\n this.platform.removeEventListener(this, type, listener);\n });\n this._responsiveListeners = undefined;\n }\n\n updateHoverStyle(items, mode, enabled) {\n const prefix = enabled ? 'set' : 'remove';\n let meta, item, i, ilen;\n\n if (mode === 'dataset') {\n meta = this.getDatasetMeta(items[0].datasetIndex);\n meta.controller['_' + prefix + 'DatasetHoverStyle']();\n }\n\n for (i = 0, ilen = items.length; i < ilen; ++i) {\n item = items[i];\n const controller = item && this.getDatasetMeta(item.datasetIndex).controller;\n if (controller) {\n controller[prefix + 'HoverStyle'](item.element, item.datasetIndex, item.index);\n }\n }\n }\n\n /**\n\t * Get active (hovered) elements\n\t * @returns array\n\t */\n getActiveElements() {\n return this._active || [];\n }\n\n /**\n\t * Set active (hovered) elements\n\t * @param {array} activeElements New active data points\n\t */\n setActiveElements(activeElements) {\n const lastActive = this._active || [];\n const active = activeElements.map(({datasetIndex, index}) => {\n const meta = this.getDatasetMeta(datasetIndex);\n if (!meta) {\n throw new Error('No dataset found at index ' + datasetIndex);\n }\n\n return {\n datasetIndex,\n element: meta.data[index],\n index,\n };\n });\n const changed = !_elementsEqual(active, lastActive);\n\n if (changed) {\n this._active = active;\n // Make sure we don't use the previous mouse event to override the active elements in update.\n this._lastEvent = null;\n this._updateHoverStyles(active, lastActive);\n }\n }\n\n /**\n\t * Calls enabled plugins on the specified hook and with the given args.\n\t * This method immediately returns as soon as a plugin explicitly returns false. The\n\t * returned value can be used, for instance, to interrupt the current action.\n\t * @param {string} hook - The name of the plugin method to call (e.g. 'beforeUpdate').\n\t * @param {Object} [args] - Extra arguments to apply to the hook call.\n * @param {import('./core.plugins.js').filterCallback} [filter] - Filtering function for limiting which plugins are notified\n\t * @returns {boolean} false if any of the plugins return false, else returns true.\n\t */\n notifyPlugins(hook, args, filter) {\n return this._plugins.notify(this, hook, args, filter);\n }\n\n /**\n * Check if a plugin with the specific ID is registered and enabled\n * @param {string} pluginId - The ID of the plugin of which to check if it is enabled\n * @returns {boolean}\n */\n isPluginEnabled(pluginId) {\n return this._plugins._cache.filter(p => p.plugin.id === pluginId).length === 1;\n }\n\n /**\n\t * @private\n\t */\n _updateHoverStyles(active, lastActive, replay) {\n const hoverOptions = this.options.hover;\n const diff = (a, b) => a.filter(x => !b.some(y => x.datasetIndex === y.datasetIndex && x.index === y.index));\n const deactivated = diff(lastActive, active);\n const activated = replay ? active : diff(active, lastActive);\n\n if (deactivated.length) {\n this.updateHoverStyle(deactivated, hoverOptions.mode, false);\n }\n\n if (activated.length && hoverOptions.mode) {\n this.updateHoverStyle(activated, hoverOptions.mode, true);\n }\n }\n\n /**\n\t * @private\n\t */\n _eventHandler(e, replay) {\n const args = {\n event: e,\n replay,\n cancelable: true,\n inChartArea: this.isPointInArea(e)\n };\n const eventFilter = (plugin) => (plugin.options.events || this.options.events).includes(e.native.type);\n\n if (this.notifyPlugins('beforeEvent', args, eventFilter) === false) {\n return;\n }\n\n const changed = this._handleEvent(e, replay, args.inChartArea);\n\n args.cancelable = false;\n this.notifyPlugins('afterEvent', args, eventFilter);\n\n if (changed || args.changed) {\n this.render();\n }\n\n return this;\n }\n\n /**\n\t * Handle an event\n\t * @param {ChartEvent} e the event to handle\n\t * @param {boolean} [replay] - true if the event was replayed by `update`\n * @param {boolean} [inChartArea] - true if the event is inside chartArea\n\t * @return {boolean} true if the chart needs to re-render\n\t * @private\n\t */\n _handleEvent(e, replay, inChartArea) {\n const {_active: lastActive = [], options} = this;\n\n // If the event is replayed from `update`, we should evaluate with the final positions.\n //\n // The `replay`:\n // It's the last event (excluding click) that has occurred before `update`.\n // So mouse has not moved. It's also over the chart, because there is a `replay`.\n //\n // The why:\n // If animations are active, the elements haven't moved yet compared to state before update.\n // But if they will, we are activating the elements that would be active, if this check\n // was done after the animations have completed. => \"final positions\".\n // If there is no animations, the \"final\" and \"current\" positions are equal.\n // This is done so we do not have to evaluate the active elements each animation frame\n // - it would be expensive.\n const useFinalPosition = replay;\n const active = this._getActiveElements(e, lastActive, inChartArea, useFinalPosition);\n const isClick = _isClickEvent(e);\n const lastEvent = determineLastEvent(e, this._lastEvent, inChartArea, isClick);\n\n if (inChartArea) {\n // Set _lastEvent to null while we are processing the event handlers.\n // This prevents recursion if the handler calls chart.update()\n this._lastEvent = null;\n\n // Invoke onHover hook\n callCallback(options.onHover, [e, active, this], this);\n\n if (isClick) {\n callCallback(options.onClick, [e, active, this], this);\n }\n }\n\n const changed = !_elementsEqual(active, lastActive);\n if (changed || replay) {\n this._active = active;\n this._updateHoverStyles(active, lastActive, replay);\n }\n\n this._lastEvent = lastEvent;\n\n return changed;\n }\n\n /**\n * @param {ChartEvent} e - The event\n * @param {import('../types/index.js').ActiveElement[]} lastActive - Previously active elements\n * @param {boolean} inChartArea - Is the envent inside chartArea\n * @param {boolean} useFinalPosition - Should the evaluation be done with current or final (after animation) element positions\n * @returns {import('../types/index.js').ActiveElement[]} - The active elements\n * @pravate\n */\n _getActiveElements(e, lastActive, inChartArea, useFinalPosition) {\n if (e.type === 'mouseout') {\n return [];\n }\n\n if (!inChartArea) {\n // Let user control the active elements outside chartArea. Eg. using Legend.\n return lastActive;\n }\n\n const hoverOptions = this.options.hover;\n return this.getElementsAtEventForMode(e, hoverOptions.mode, hoverOptions, useFinalPosition);\n }\n}\n\n// @ts-ignore\nfunction invalidatePlugins() {\n return each(Chart.instances, (chart) => chart._plugins.invalidate());\n}\n\nexport default Chart;\n","/**\n * @namespace Chart._adapters\n * @since 2.8.0\n * @private\n */\n\nimport type {AnyObject} from '../types/basic.js';\nimport type {ChartOptions} from '../types/index.js';\n\nexport type TimeUnit = 'millisecond' | 'second' | 'minute' | 'hour' | 'day' | 'week' | 'month' | 'quarter' | 'year';\n\nexport interface DateAdapter {\n readonly options: T;\n /**\n * Will called with chart options after adapter creation.\n */\n init(this: DateAdapter, chartOptions: ChartOptions): void;\n /**\n * Returns a map of time formats for the supported formatting units defined\n * in Unit as well as 'datetime' representing a detailed date/time string.\n */\n formats(this: DateAdapter): Record;\n /**\n * Parses the given `value` and return the associated timestamp.\n * @param value - the value to parse (usually comes from the data)\n * @param [format] - the expected data format\n */\n parse(this: DateAdapter, value: unknown, format?: TimeUnit): number | null;\n /**\n * Returns the formatted date in the specified `format` for a given `timestamp`.\n * @param timestamp - the timestamp to format\n * @param format - the date/time token\n */\n format(this: DateAdapter, timestamp: number, format: TimeUnit): string;\n /**\n * Adds the specified `amount` of `unit` to the given `timestamp`.\n * @param timestamp - the input timestamp\n * @param amount - the amount to add\n * @param unit - the unit as string\n */\n add(this: DateAdapter, timestamp: number, amount: number, unit: TimeUnit): number;\n /**\n * Returns the number of `unit` between the given timestamps.\n * @param a - the input timestamp (reference)\n * @param b - the timestamp to subtract\n * @param unit - the unit as string\n */\n diff(this: DateAdapter, a: number, b: number, unit: TimeUnit): number;\n /**\n * Returns start of `unit` for the given `timestamp`.\n * @param timestamp - the input timestamp\n * @param unit - the unit as string\n * @param [weekday] - the ISO day of the week with 1 being Monday\n * and 7 being Sunday (only needed if param *unit* is `isoWeek`).\n */\n startOf(this: DateAdapter, timestamp: number, unit: TimeUnit | 'isoWeek', weekday?: number): number;\n /**\n * Returns end of `unit` for the given `timestamp`.\n * @param timestamp - the input timestamp\n * @param unit - the unit as string\n */\n endOf(this: DateAdapter, timestamp: number, unit: TimeUnit | 'isoWeek'): number;\n}\n\nfunction abstract(): T {\n throw new Error('This method is not implemented: Check that a complete date adapter is provided.');\n}\n\n/**\n * Date adapter (current used by the time scale)\n * @namespace Chart._adapters._date\n * @memberof Chart._adapters\n * @private\n */\nclass DateAdapterBase implements DateAdapter {\n\n /**\n * Override default date adapter methods.\n * Accepts type parameter to define options type.\n * @example\n * Chart._adapters._date.override<{myAdapterOption: string}>({\n * init() {\n * console.log(this.options.myAdapterOption);\n * }\n * })\n */\n static override(\n members: Partial, 'options'>>\n ) {\n Object.assign(DateAdapterBase.prototype, members);\n }\n\n readonly options: AnyObject;\n\n constructor(options: AnyObject) {\n this.options = options || {};\n }\n\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n init() {}\n\n formats(): Record {\n return abstract();\n }\n\n parse(): number | null {\n return abstract();\n }\n\n format(): string {\n return abstract();\n }\n\n add(): number {\n return abstract();\n }\n\n diff(): number {\n return abstract();\n }\n\n startOf(): number {\n return abstract();\n }\n\n endOf(): number {\n return abstract();\n }\n}\n\nexport default {\n _date: DateAdapterBase\n};\n","import DatasetController from '../core/core.datasetController.js';\nimport {\n _arrayUnique, isArray, isNullOrUndef,\n valueOrDefault, resolveObjectKey, sign, defined\n} from '../helpers/index.js';\n\nfunction getAllScaleValues(scale, type) {\n if (!scale._cache.$bar) {\n const visibleMetas = scale.getMatchingVisibleMetas(type);\n let values = [];\n\n for (let i = 0, ilen = visibleMetas.length; i < ilen; i++) {\n values = values.concat(visibleMetas[i].controller.getAllParsedValues(scale));\n }\n scale._cache.$bar = _arrayUnique(values.sort((a, b) => a - b));\n }\n return scale._cache.$bar;\n}\n\n/**\n * Computes the \"optimal\" sample size to maintain bars equally sized while preventing overlap.\n * @private\n */\nfunction computeMinSampleSize(meta) {\n const scale = meta.iScale;\n const values = getAllScaleValues(scale, meta.type);\n let min = scale._length;\n let i, ilen, curr, prev;\n const updateMinAndPrev = () => {\n if (curr === 32767 || curr === -32768) {\n // Ignore truncated pixels\n return;\n }\n if (defined(prev)) {\n // curr - prev === 0 is ignored\n min = Math.min(min, Math.abs(curr - prev) || min);\n }\n prev = curr;\n };\n\n for (i = 0, ilen = values.length; i < ilen; ++i) {\n curr = scale.getPixelForValue(values[i]);\n updateMinAndPrev();\n }\n\n prev = undefined;\n for (i = 0, ilen = scale.ticks.length; i < ilen; ++i) {\n curr = scale.getPixelForTick(i);\n updateMinAndPrev();\n }\n\n return min;\n}\n\n/**\n * Computes an \"ideal\" category based on the absolute bar thickness or, if undefined or null,\n * uses the smallest interval (see computeMinSampleSize) that prevents bar overlapping. This\n * mode currently always generates bars equally sized (until we introduce scriptable options?).\n * @private\n */\nfunction computeFitCategoryTraits(index, ruler, options, stackCount) {\n const thickness = options.barThickness;\n let size, ratio;\n\n if (isNullOrUndef(thickness)) {\n size = ruler.min * options.categoryPercentage;\n ratio = options.barPercentage;\n } else {\n // When bar thickness is enforced, category and bar percentages are ignored.\n // Note(SB): we could add support for relative bar thickness (e.g. barThickness: '50%')\n // and deprecate barPercentage since this value is ignored when thickness is absolute.\n size = thickness * stackCount;\n ratio = 1;\n }\n\n return {\n chunk: size / stackCount,\n ratio,\n start: ruler.pixels[index] - (size / 2)\n };\n}\n\n/**\n * Computes an \"optimal\" category that globally arranges bars side by side (no gap when\n * percentage options are 1), based on the previous and following categories. This mode\n * generates bars with different widths when data are not evenly spaced.\n * @private\n */\nfunction computeFlexCategoryTraits(index, ruler, options, stackCount) {\n const pixels = ruler.pixels;\n const curr = pixels[index];\n let prev = index > 0 ? pixels[index - 1] : null;\n let next = index < pixels.length - 1 ? pixels[index + 1] : null;\n const percent = options.categoryPercentage;\n\n if (prev === null) {\n // first data: its size is double based on the next point or,\n // if it's also the last data, we use the scale size.\n prev = curr - (next === null ? ruler.end - ruler.start : next - curr);\n }\n\n if (next === null) {\n // last data: its size is also double based on the previous point.\n next = curr + curr - prev;\n }\n\n const start = curr - (curr - Math.min(prev, next)) / 2 * percent;\n const size = Math.abs(next - prev) / 2 * percent;\n\n return {\n chunk: size / stackCount,\n ratio: options.barPercentage,\n start\n };\n}\n\nfunction parseFloatBar(entry, item, vScale, i) {\n const startValue = vScale.parse(entry[0], i);\n const endValue = vScale.parse(entry[1], i);\n const min = Math.min(startValue, endValue);\n const max = Math.max(startValue, endValue);\n let barStart = min;\n let barEnd = max;\n\n if (Math.abs(min) > Math.abs(max)) {\n barStart = max;\n barEnd = min;\n }\n\n // Store `barEnd` (furthest away from origin) as parsed value,\n // to make stacking straight forward\n item[vScale.axis] = barEnd;\n\n item._custom = {\n barStart,\n barEnd,\n start: startValue,\n end: endValue,\n min,\n max\n };\n}\n\nfunction parseValue(entry, item, vScale, i) {\n if (isArray(entry)) {\n parseFloatBar(entry, item, vScale, i);\n } else {\n item[vScale.axis] = vScale.parse(entry, i);\n }\n return item;\n}\n\nfunction parseArrayOrPrimitive(meta, data, start, count) {\n const iScale = meta.iScale;\n const vScale = meta.vScale;\n const labels = iScale.getLabels();\n const singleScale = iScale === vScale;\n const parsed = [];\n let i, ilen, item, entry;\n\n for (i = start, ilen = start + count; i < ilen; ++i) {\n entry = data[i];\n item = {};\n item[iScale.axis] = singleScale || iScale.parse(labels[i], i);\n parsed.push(parseValue(entry, item, vScale, i));\n }\n return parsed;\n}\n\nfunction isFloatBar(custom) {\n return custom && custom.barStart !== undefined && custom.barEnd !== undefined;\n}\n\nfunction barSign(size, vScale, actualBase) {\n if (size !== 0) {\n return sign(size);\n }\n return (vScale.isHorizontal() ? 1 : -1) * (vScale.min >= actualBase ? 1 : -1);\n}\n\nfunction borderProps(properties) {\n let reverse, start, end, top, bottom;\n if (properties.horizontal) {\n reverse = properties.base > properties.x;\n start = 'left';\n end = 'right';\n } else {\n reverse = properties.base < properties.y;\n start = 'bottom';\n end = 'top';\n }\n if (reverse) {\n top = 'end';\n bottom = 'start';\n } else {\n top = 'start';\n bottom = 'end';\n }\n return {start, end, reverse, top, bottom};\n}\n\nfunction setBorderSkipped(properties, options, stack, index) {\n let edge = options.borderSkipped;\n const res = {};\n\n if (!edge) {\n properties.borderSkipped = res;\n return;\n }\n\n if (edge === true) {\n properties.borderSkipped = {top: true, right: true, bottom: true, left: true};\n return;\n }\n\n const {start, end, reverse, top, bottom} = borderProps(properties);\n\n if (edge === 'middle' && stack) {\n properties.enableBorderRadius = true;\n if ((stack._top || 0) === index) {\n edge = top;\n } else if ((stack._bottom || 0) === index) {\n edge = bottom;\n } else {\n res[parseEdge(bottom, start, end, reverse)] = true;\n edge = top;\n }\n }\n\n res[parseEdge(edge, start, end, reverse)] = true;\n properties.borderSkipped = res;\n}\n\nfunction parseEdge(edge, a, b, reverse) {\n if (reverse) {\n edge = swap(edge, a, b);\n edge = startEnd(edge, b, a);\n } else {\n edge = startEnd(edge, a, b);\n }\n return edge;\n}\n\nfunction swap(orig, v1, v2) {\n return orig === v1 ? v2 : orig === v2 ? v1 : orig;\n}\n\nfunction startEnd(v, start, end) {\n return v === 'start' ? start : v === 'end' ? end : v;\n}\n\nfunction setInflateAmount(properties, {inflateAmount}, ratio) {\n properties.inflateAmount = inflateAmount === 'auto'\n ? ratio === 1 ? 0.33 : 0\n : inflateAmount;\n}\n\nexport default class BarController extends DatasetController {\n\n static id = 'bar';\n\n /**\n * @type {any}\n */\n static defaults = {\n datasetElementType: false,\n dataElementType: 'bar',\n\n categoryPercentage: 0.8,\n barPercentage: 0.9,\n grouped: true,\n\n animations: {\n numbers: {\n type: 'number',\n properties: ['x', 'y', 'base', 'width', 'height']\n }\n }\n };\n\n /**\n * @type {any}\n */\n static overrides = {\n scales: {\n _index_: {\n type: 'category',\n offset: true,\n grid: {\n offset: true\n }\n },\n _value_: {\n type: 'linear',\n beginAtZero: true,\n }\n }\n };\n\n\n /**\n\t * Overriding primitive data parsing since we support mixed primitive/array\n\t * data for float bars\n\t * @protected\n\t */\n parsePrimitiveData(meta, data, start, count) {\n return parseArrayOrPrimitive(meta, data, start, count);\n }\n\n /**\n\t * Overriding array data parsing since we support mixed primitive/array\n\t * data for float bars\n\t * @protected\n\t */\n parseArrayData(meta, data, start, count) {\n return parseArrayOrPrimitive(meta, data, start, count);\n }\n\n /**\n\t * Overriding object data parsing since we support mixed primitive/array\n\t * value-scale data for float bars\n\t * @protected\n\t */\n parseObjectData(meta, data, start, count) {\n const {iScale, vScale} = meta;\n const {xAxisKey = 'x', yAxisKey = 'y'} = this._parsing;\n const iAxisKey = iScale.axis === 'x' ? xAxisKey : yAxisKey;\n const vAxisKey = vScale.axis === 'x' ? xAxisKey : yAxisKey;\n const parsed = [];\n let i, ilen, item, obj;\n for (i = start, ilen = start + count; i < ilen; ++i) {\n obj = data[i];\n item = {};\n item[iScale.axis] = iScale.parse(resolveObjectKey(obj, iAxisKey), i);\n parsed.push(parseValue(resolveObjectKey(obj, vAxisKey), item, vScale, i));\n }\n return parsed;\n }\n\n /**\n\t * @protected\n\t */\n updateRangeFromParsed(range, scale, parsed, stack) {\n super.updateRangeFromParsed(range, scale, parsed, stack);\n const custom = parsed._custom;\n if (custom && scale === this._cachedMeta.vScale) {\n // float bar: only one end of the bar is considered by `super`\n range.min = Math.min(range.min, custom.min);\n range.max = Math.max(range.max, custom.max);\n }\n }\n\n /**\n\t * @return {number|boolean}\n\t * @protected\n\t */\n getMaxOverflow() {\n return 0;\n }\n\n /**\n\t * @protected\n\t */\n getLabelAndValue(index) {\n const meta = this._cachedMeta;\n const {iScale, vScale} = meta;\n const parsed = this.getParsed(index);\n const custom = parsed._custom;\n const value = isFloatBar(custom)\n ? '[' + custom.start + ', ' + custom.end + ']'\n : '' + vScale.getLabelForValue(parsed[vScale.axis]);\n\n return {\n label: '' + iScale.getLabelForValue(parsed[iScale.axis]),\n value\n };\n }\n\n initialize() {\n this.enableOptionSharing = true;\n\n super.initialize();\n\n const meta = this._cachedMeta;\n meta.stack = this.getDataset().stack;\n }\n\n update(mode) {\n const meta = this._cachedMeta;\n this.updateElements(meta.data, 0, meta.data.length, mode);\n }\n\n updateElements(bars, start, count, mode) {\n const reset = mode === 'reset';\n const {index, _cachedMeta: {vScale}} = this;\n const base = vScale.getBasePixel();\n const horizontal = vScale.isHorizontal();\n const ruler = this._getRuler();\n const {sharedOptions, includeOptions} = this._getSharedOptions(start, mode);\n\n for (let i = start; i < start + count; i++) {\n const parsed = this.getParsed(i);\n const vpixels = reset || isNullOrUndef(parsed[vScale.axis]) ? {base, head: base} : this._calculateBarValuePixels(i);\n const ipixels = this._calculateBarIndexPixels(i, ruler);\n const stack = (parsed._stacks || {})[vScale.axis];\n\n const properties = {\n horizontal,\n base: vpixels.base,\n enableBorderRadius: !stack || isFloatBar(parsed._custom) || (index === stack._top || index === stack._bottom),\n x: horizontal ? vpixels.head : ipixels.center,\n y: horizontal ? ipixels.center : vpixels.head,\n height: horizontal ? ipixels.size : Math.abs(vpixels.size),\n width: horizontal ? Math.abs(vpixels.size) : ipixels.size\n };\n\n if (includeOptions) {\n properties.options = sharedOptions || this.resolveDataElementOptions(i, bars[i].active ? 'active' : mode);\n }\n const options = properties.options || bars[i].options;\n setBorderSkipped(properties, options, stack, index);\n setInflateAmount(properties, options, ruler.ratio);\n this.updateElement(bars[i], i, properties, mode);\n }\n }\n\n /**\n\t * Returns the stacks based on groups and bar visibility.\n\t * @param {number} [last] - The dataset index\n\t * @param {number} [dataIndex] - The data index of the ruler\n\t * @returns {string[]} The list of stack IDs\n\t * @private\n\t */\n _getStacks(last, dataIndex) {\n const {iScale} = this._cachedMeta;\n const metasets = iScale.getMatchingVisibleMetas(this._type)\n .filter(meta => meta.controller.options.grouped);\n const stacked = iScale.options.stacked;\n const stacks = [];\n\n const skipNull = (meta) => {\n const parsed = meta.controller.getParsed(dataIndex);\n const val = parsed && parsed[meta.vScale.axis];\n\n if (isNullOrUndef(val) || isNaN(val)) {\n return true;\n }\n };\n\n for (const meta of metasets) {\n if (dataIndex !== undefined && skipNull(meta)) {\n continue;\n }\n\n // stacked | meta.stack\n // | found | not found | undefined\n // false | x | x | x\n // true | | x |\n // undefined | | x | x\n if (stacked === false || stacks.indexOf(meta.stack) === -1 ||\n\t\t\t\t(stacked === undefined && meta.stack === undefined)) {\n stacks.push(meta.stack);\n }\n if (meta.index === last) {\n break;\n }\n }\n\n // No stacks? that means there is no visible data. Let's still initialize an `undefined`\n // stack where possible invisible bars will be located.\n // https://github.com/chartjs/Chart.js/issues/6368\n if (!stacks.length) {\n stacks.push(undefined);\n }\n\n return stacks;\n }\n\n /**\n\t * Returns the effective number of stacks based on groups and bar visibility.\n\t * @private\n\t */\n _getStackCount(index) {\n return this._getStacks(undefined, index).length;\n }\n\n /**\n\t * Returns the stack index for the given dataset based on groups and bar visibility.\n\t * @param {number} [datasetIndex] - The dataset index\n\t * @param {string} [name] - The stack name to find\n * @param {number} [dataIndex]\n\t * @returns {number} The stack index\n\t * @private\n\t */\n _getStackIndex(datasetIndex, name, dataIndex) {\n const stacks = this._getStacks(datasetIndex, dataIndex);\n const index = (name !== undefined)\n ? stacks.indexOf(name)\n : -1; // indexOf returns -1 if element is not present\n\n return (index === -1)\n ? stacks.length - 1\n : index;\n }\n\n /**\n\t * @private\n\t */\n _getRuler() {\n const opts = this.options;\n const meta = this._cachedMeta;\n const iScale = meta.iScale;\n const pixels = [];\n let i, ilen;\n\n for (i = 0, ilen = meta.data.length; i < ilen; ++i) {\n pixels.push(iScale.getPixelForValue(this.getParsed(i)[iScale.axis], i));\n }\n\n const barThickness = opts.barThickness;\n const min = barThickness || computeMinSampleSize(meta);\n\n return {\n min,\n pixels,\n start: iScale._startPixel,\n end: iScale._endPixel,\n stackCount: this._getStackCount(),\n scale: iScale,\n grouped: opts.grouped,\n // bar thickness ratio used for non-grouped bars\n ratio: barThickness ? 1 : opts.categoryPercentage * opts.barPercentage\n };\n }\n\n /**\n\t * Note: pixel values are not clamped to the scale area.\n\t * @private\n\t */\n _calculateBarValuePixels(index) {\n const {_cachedMeta: {vScale, _stacked, index: datasetIndex}, options: {base: baseValue, minBarLength}} = this;\n const actualBase = baseValue || 0;\n const parsed = this.getParsed(index);\n const custom = parsed._custom;\n const floating = isFloatBar(custom);\n let value = parsed[vScale.axis];\n let start = 0;\n let length = _stacked ? this.applyStack(vScale, parsed, _stacked) : value;\n let head, size;\n\n if (length !== value) {\n start = length - value;\n length = value;\n }\n\n if (floating) {\n value = custom.barStart;\n length = custom.barEnd - custom.barStart;\n // bars crossing origin are not stacked\n if (value !== 0 && sign(value) !== sign(custom.barEnd)) {\n start = 0;\n }\n start += value;\n }\n\n const startValue = !isNullOrUndef(baseValue) && !floating ? baseValue : start;\n let base = vScale.getPixelForValue(startValue);\n\n if (this.chart.getDataVisibility(index)) {\n head = vScale.getPixelForValue(start + length);\n } else {\n // When not visible, no height\n head = base;\n }\n\n size = head - base;\n\n if (Math.abs(size) < minBarLength) {\n size = barSign(size, vScale, actualBase) * minBarLength;\n if (value === actualBase) {\n base -= size / 2;\n }\n const startPixel = vScale.getPixelForDecimal(0);\n const endPixel = vScale.getPixelForDecimal(1);\n const min = Math.min(startPixel, endPixel);\n const max = Math.max(startPixel, endPixel);\n base = Math.max(Math.min(base, max), min);\n head = base + size;\n\n if (_stacked && !floating) {\n // visual data coordinates after applying minBarLength\n parsed._stacks[vScale.axis]._visualValues[datasetIndex] = vScale.getValueForPixel(head) - vScale.getValueForPixel(base);\n }\n }\n\n if (base === vScale.getPixelForValue(actualBase)) {\n const halfGrid = sign(size) * vScale.getLineWidthForValue(actualBase) / 2;\n base += halfGrid;\n size -= halfGrid;\n }\n\n return {\n size,\n base,\n head,\n center: head + size / 2\n };\n }\n\n /**\n\t * @private\n\t */\n _calculateBarIndexPixels(index, ruler) {\n const scale = ruler.scale;\n const options = this.options;\n const skipNull = options.skipNull;\n const maxBarThickness = valueOrDefault(options.maxBarThickness, Infinity);\n let center, size;\n if (ruler.grouped) {\n const stackCount = skipNull ? this._getStackCount(index) : ruler.stackCount;\n const range = options.barThickness === 'flex'\n ? computeFlexCategoryTraits(index, ruler, options, stackCount)\n : computeFitCategoryTraits(index, ruler, options, stackCount);\n\n const stackIndex = this._getStackIndex(this.index, this._cachedMeta.stack, skipNull ? index : undefined);\n center = range.start + (range.chunk * stackIndex) + (range.chunk / 2);\n size = Math.min(maxBarThickness, range.chunk * range.ratio);\n } else {\n // For non-grouped bar charts, exact pixel values are used\n center = scale.getPixelForValue(this.getParsed(index)[scale.axis], index);\n size = Math.min(maxBarThickness, ruler.min * ruler.ratio);\n }\n\n return {\n base: center - size / 2,\n head: center + size / 2,\n center,\n size\n };\n }\n\n draw() {\n const meta = this._cachedMeta;\n const vScale = meta.vScale;\n const rects = meta.data;\n const ilen = rects.length;\n let i = 0;\n\n for (; i < ilen; ++i) {\n if (this.getParsed(i)[vScale.axis] !== null) {\n rects[i].draw(this._ctx);\n }\n }\n }\n\n}\n","import DatasetController from '../core/core.datasetController.js';\nimport {isObject, resolveObjectKey, toPercentage, toDimension, valueOrDefault} from '../helpers/helpers.core.js';\nimport {formatNumber} from '../helpers/helpers.intl.js';\nimport {toRadians, PI, TAU, HALF_PI, _angleBetween} from '../helpers/helpers.math.js';\n\n/**\n * @typedef { import('../core/core.controller.js').default } Chart\n */\n\nfunction getRatioAndOffset(rotation, circumference, cutout) {\n let ratioX = 1;\n let ratioY = 1;\n let offsetX = 0;\n let offsetY = 0;\n // If the chart's circumference isn't a full circle, calculate size as a ratio of the width/height of the arc\n if (circumference < TAU) {\n const startAngle = rotation;\n const endAngle = startAngle + circumference;\n const startX = Math.cos(startAngle);\n const startY = Math.sin(startAngle);\n const endX = Math.cos(endAngle);\n const endY = Math.sin(endAngle);\n const calcMax = (angle, a, b) => _angleBetween(angle, startAngle, endAngle, true) ? 1 : Math.max(a, a * cutout, b, b * cutout);\n const calcMin = (angle, a, b) => _angleBetween(angle, startAngle, endAngle, true) ? -1 : Math.min(a, a * cutout, b, b * cutout);\n const maxX = calcMax(0, startX, endX);\n const maxY = calcMax(HALF_PI, startY, endY);\n const minX = calcMin(PI, startX, endX);\n const minY = calcMin(PI + HALF_PI, startY, endY);\n ratioX = (maxX - minX) / 2;\n ratioY = (maxY - minY) / 2;\n offsetX = -(maxX + minX) / 2;\n offsetY = -(maxY + minY) / 2;\n }\n return {ratioX, ratioY, offsetX, offsetY};\n}\n\nexport default class DoughnutController extends DatasetController {\n\n static id = 'doughnut';\n\n /**\n * @type {any}\n */\n static defaults = {\n datasetElementType: false,\n dataElementType: 'arc',\n animation: {\n // Boolean - Whether we animate the rotation of the Doughnut\n animateRotate: true,\n // Boolean - Whether we animate scaling the Doughnut from the centre\n animateScale: false\n },\n animations: {\n numbers: {\n type: 'number',\n properties: ['circumference', 'endAngle', 'innerRadius', 'outerRadius', 'startAngle', 'x', 'y', 'offset', 'borderWidth', 'spacing']\n },\n },\n // The percentage of the chart that we cut out of the middle.\n cutout: '50%',\n\n // The rotation of the chart, where the first data arc begins.\n rotation: 0,\n\n // The total circumference of the chart.\n circumference: 360,\n\n // The outr radius of the chart\n radius: '100%',\n\n // Spacing between arcs\n spacing: 0,\n\n indexAxis: 'r',\n };\n\n static descriptors = {\n _scriptable: (name) => name !== 'spacing',\n _indexable: (name) => name !== 'spacing',\n };\n\n /**\n * @type {any}\n */\n static overrides = {\n aspectRatio: 1,\n\n // Need to override these to give a nice default\n plugins: {\n legend: {\n labels: {\n generateLabels(chart) {\n const data = chart.data;\n if (data.labels.length && data.datasets.length) {\n const {labels: {pointStyle, color}} = chart.legend.options;\n\n return data.labels.map((label, i) => {\n const meta = chart.getDatasetMeta(0);\n const style = meta.controller.getStyle(i);\n\n return {\n text: label,\n fillStyle: style.backgroundColor,\n strokeStyle: style.borderColor,\n fontColor: color,\n lineWidth: style.borderWidth,\n pointStyle: pointStyle,\n hidden: !chart.getDataVisibility(i),\n\n // Extra data used for toggling the correct item\n index: i\n };\n });\n }\n return [];\n }\n },\n\n onClick(e, legendItem, legend) {\n legend.chart.toggleDataVisibility(legendItem.index);\n legend.chart.update();\n }\n }\n }\n };\n\n constructor(chart, datasetIndex) {\n super(chart, datasetIndex);\n\n this.enableOptionSharing = true;\n this.innerRadius = undefined;\n this.outerRadius = undefined;\n this.offsetX = undefined;\n this.offsetY = undefined;\n }\n\n linkScales() {}\n\n /**\n\t * Override data parsing, since we are not using scales\n\t */\n parse(start, count) {\n const data = this.getDataset().data;\n const meta = this._cachedMeta;\n\n if (this._parsing === false) {\n meta._parsed = data;\n } else {\n let getter = (i) => +data[i];\n\n if (isObject(data[start])) {\n const {key = 'value'} = this._parsing;\n getter = (i) => +resolveObjectKey(data[i], key);\n }\n\n let i, ilen;\n for (i = start, ilen = start + count; i < ilen; ++i) {\n meta._parsed[i] = getter(i);\n }\n }\n }\n\n /**\n\t * @private\n\t */\n _getRotation() {\n return toRadians(this.options.rotation - 90);\n }\n\n /**\n\t * @private\n\t */\n _getCircumference() {\n return toRadians(this.options.circumference);\n }\n\n /**\n\t * Get the maximal rotation & circumference extents\n\t * across all visible datasets.\n\t */\n _getRotationExtents() {\n let min = TAU;\n let max = -TAU;\n\n for (let i = 0; i < this.chart.data.datasets.length; ++i) {\n if (this.chart.isDatasetVisible(i) && this.chart.getDatasetMeta(i).type === this._type) {\n const controller = this.chart.getDatasetMeta(i).controller;\n const rotation = controller._getRotation();\n const circumference = controller._getCircumference();\n\n min = Math.min(min, rotation);\n max = Math.max(max, rotation + circumference);\n }\n }\n\n return {\n rotation: min,\n circumference: max - min,\n };\n }\n\n /**\n\t * @param {string} mode\n\t */\n update(mode) {\n const chart = this.chart;\n const {chartArea} = chart;\n const meta = this._cachedMeta;\n const arcs = meta.data;\n const spacing = this.getMaxBorderWidth() + this.getMaxOffset(arcs) + this.options.spacing;\n const maxSize = Math.max((Math.min(chartArea.width, chartArea.height) - spacing) / 2, 0);\n const cutout = Math.min(toPercentage(this.options.cutout, maxSize), 1);\n const chartWeight = this._getRingWeight(this.index);\n\n // Compute the maximal rotation & circumference limits.\n // If we only consider our dataset, this can cause problems when two datasets\n // are both less than a circle with different rotations (starting angles)\n const {circumference, rotation} = this._getRotationExtents();\n const {ratioX, ratioY, offsetX, offsetY} = getRatioAndOffset(rotation, circumference, cutout);\n const maxWidth = (chartArea.width - spacing) / ratioX;\n const maxHeight = (chartArea.height - spacing) / ratioY;\n const maxRadius = Math.max(Math.min(maxWidth, maxHeight) / 2, 0);\n const outerRadius = toDimension(this.options.radius, maxRadius);\n const innerRadius = Math.max(outerRadius * cutout, 0);\n const radiusLength = (outerRadius - innerRadius) / this._getVisibleDatasetWeightTotal();\n this.offsetX = offsetX * outerRadius;\n this.offsetY = offsetY * outerRadius;\n\n meta.total = this.calculateTotal();\n\n this.outerRadius = outerRadius - radiusLength * this._getRingWeightOffset(this.index);\n this.innerRadius = Math.max(this.outerRadius - radiusLength * chartWeight, 0);\n\n this.updateElements(arcs, 0, arcs.length, mode);\n }\n\n /**\n * @private\n */\n _circumference(i, reset) {\n const opts = this.options;\n const meta = this._cachedMeta;\n const circumference = this._getCircumference();\n if ((reset && opts.animation.animateRotate) || !this.chart.getDataVisibility(i) || meta._parsed[i] === null || meta.data[i].hidden) {\n return 0;\n }\n return this.calculateCircumference(meta._parsed[i] * circumference / TAU);\n }\n\n updateElements(arcs, start, count, mode) {\n const reset = mode === 'reset';\n const chart = this.chart;\n const chartArea = chart.chartArea;\n const opts = chart.options;\n const animationOpts = opts.animation;\n const centerX = (chartArea.left + chartArea.right) / 2;\n const centerY = (chartArea.top + chartArea.bottom) / 2;\n const animateScale = reset && animationOpts.animateScale;\n const innerRadius = animateScale ? 0 : this.innerRadius;\n const outerRadius = animateScale ? 0 : this.outerRadius;\n const {sharedOptions, includeOptions} = this._getSharedOptions(start, mode);\n let startAngle = this._getRotation();\n let i;\n\n for (i = 0; i < start; ++i) {\n startAngle += this._circumference(i, reset);\n }\n\n for (i = start; i < start + count; ++i) {\n const circumference = this._circumference(i, reset);\n const arc = arcs[i];\n const properties = {\n x: centerX + this.offsetX,\n y: centerY + this.offsetY,\n startAngle,\n endAngle: startAngle + circumference,\n circumference,\n outerRadius,\n innerRadius\n };\n if (includeOptions) {\n properties.options = sharedOptions || this.resolveDataElementOptions(i, arc.active ? 'active' : mode);\n }\n startAngle += circumference;\n\n this.updateElement(arc, i, properties, mode);\n }\n }\n\n calculateTotal() {\n const meta = this._cachedMeta;\n const metaData = meta.data;\n let total = 0;\n let i;\n\n for (i = 0; i < metaData.length; i++) {\n const value = meta._parsed[i];\n if (value !== null && !isNaN(value) && this.chart.getDataVisibility(i) && !metaData[i].hidden) {\n total += Math.abs(value);\n }\n }\n\n return total;\n }\n\n calculateCircumference(value) {\n const total = this._cachedMeta.total;\n if (total > 0 && !isNaN(value)) {\n return TAU * (Math.abs(value) / total);\n }\n return 0;\n }\n\n getLabelAndValue(index) {\n const meta = this._cachedMeta;\n const chart = this.chart;\n const labels = chart.data.labels || [];\n const value = formatNumber(meta._parsed[index], chart.options.locale);\n\n return {\n label: labels[index] || '',\n value,\n };\n }\n\n getMaxBorderWidth(arcs) {\n let max = 0;\n const chart = this.chart;\n let i, ilen, meta, controller, options;\n\n if (!arcs) {\n // Find the outmost visible dataset\n for (i = 0, ilen = chart.data.datasets.length; i < ilen; ++i) {\n if (chart.isDatasetVisible(i)) {\n meta = chart.getDatasetMeta(i);\n arcs = meta.data;\n controller = meta.controller;\n break;\n }\n }\n }\n\n if (!arcs) {\n return 0;\n }\n\n for (i = 0, ilen = arcs.length; i < ilen; ++i) {\n options = controller.resolveDataElementOptions(i);\n if (options.borderAlign !== 'inner') {\n max = Math.max(max, options.borderWidth || 0, options.hoverBorderWidth || 0);\n }\n }\n return max;\n }\n\n getMaxOffset(arcs) {\n let max = 0;\n\n for (let i = 0, ilen = arcs.length; i < ilen; ++i) {\n const options = this.resolveDataElementOptions(i);\n max = Math.max(max, options.offset || 0, options.hoverOffset || 0);\n }\n return max;\n }\n\n /**\n\t * Get radius length offset of the dataset in relation to the visible datasets weights. This allows determining the inner and outer radius correctly\n\t * @private\n\t */\n _getRingWeightOffset(datasetIndex) {\n let ringWeightOffset = 0;\n\n for (let i = 0; i < datasetIndex; ++i) {\n if (this.chart.isDatasetVisible(i)) {\n ringWeightOffset += this._getRingWeight(i);\n }\n }\n\n return ringWeightOffset;\n }\n\n /**\n\t * @private\n\t */\n _getRingWeight(datasetIndex) {\n return Math.max(valueOrDefault(this.chart.data.datasets[datasetIndex].weight, 1), 0);\n }\n\n /**\n\t * Returns the sum of all visible data set weights.\n\t * @private\n\t */\n _getVisibleDatasetWeightTotal() {\n return this._getRingWeightOffset(this.chart.data.datasets.length) || 1;\n }\n}\n","import DatasetController from '../core/core.datasetController.js';\nimport {toRadians, PI, formatNumber, _parseObjectDataRadialScale} from '../helpers/index.js';\n\nexport default class PolarAreaController extends DatasetController {\n\n static id = 'polarArea';\n\n /**\n * @type {any}\n */\n static defaults = {\n dataElementType: 'arc',\n animation: {\n animateRotate: true,\n animateScale: true\n },\n animations: {\n numbers: {\n type: 'number',\n properties: ['x', 'y', 'startAngle', 'endAngle', 'innerRadius', 'outerRadius']\n },\n },\n indexAxis: 'r',\n startAngle: 0,\n };\n\n /**\n * @type {any}\n */\n static overrides = {\n aspectRatio: 1,\n\n plugins: {\n legend: {\n labels: {\n generateLabels(chart) {\n const data = chart.data;\n if (data.labels.length && data.datasets.length) {\n const {labels: {pointStyle, color}} = chart.legend.options;\n\n return data.labels.map((label, i) => {\n const meta = chart.getDatasetMeta(0);\n const style = meta.controller.getStyle(i);\n\n return {\n text: label,\n fillStyle: style.backgroundColor,\n strokeStyle: style.borderColor,\n fontColor: color,\n lineWidth: style.borderWidth,\n pointStyle: pointStyle,\n hidden: !chart.getDataVisibility(i),\n\n // Extra data used for toggling the correct item\n index: i\n };\n });\n }\n return [];\n }\n },\n\n onClick(e, legendItem, legend) {\n legend.chart.toggleDataVisibility(legendItem.index);\n legend.chart.update();\n }\n }\n },\n\n scales: {\n r: {\n type: 'radialLinear',\n angleLines: {\n display: false\n },\n beginAtZero: true,\n grid: {\n circular: true\n },\n pointLabels: {\n display: false\n },\n startAngle: 0\n }\n }\n };\n\n constructor(chart, datasetIndex) {\n super(chart, datasetIndex);\n\n this.innerRadius = undefined;\n this.outerRadius = undefined;\n }\n\n getLabelAndValue(index) {\n const meta = this._cachedMeta;\n const chart = this.chart;\n const labels = chart.data.labels || [];\n const value = formatNumber(meta._parsed[index].r, chart.options.locale);\n\n return {\n label: labels[index] || '',\n value,\n };\n }\n\n parseObjectData(meta, data, start, count) {\n return _parseObjectDataRadialScale.bind(this)(meta, data, start, count);\n }\n\n update(mode) {\n const arcs = this._cachedMeta.data;\n\n this._updateRadius();\n this.updateElements(arcs, 0, arcs.length, mode);\n }\n\n /**\n * @protected\n */\n getMinMax() {\n const meta = this._cachedMeta;\n const range = {min: Number.POSITIVE_INFINITY, max: Number.NEGATIVE_INFINITY};\n\n meta.data.forEach((element, index) => {\n const parsed = this.getParsed(index).r;\n\n if (!isNaN(parsed) && this.chart.getDataVisibility(index)) {\n if (parsed < range.min) {\n range.min = parsed;\n }\n\n if (parsed > range.max) {\n range.max = parsed;\n }\n }\n });\n\n return range;\n }\n\n /**\n\t * @private\n\t */\n _updateRadius() {\n const chart = this.chart;\n const chartArea = chart.chartArea;\n const opts = chart.options;\n const minSize = Math.min(chartArea.right - chartArea.left, chartArea.bottom - chartArea.top);\n\n const outerRadius = Math.max(minSize / 2, 0);\n const innerRadius = Math.max(opts.cutoutPercentage ? (outerRadius / 100) * (opts.cutoutPercentage) : 1, 0);\n const radiusLength = (outerRadius - innerRadius) / chart.getVisibleDatasetCount();\n\n this.outerRadius = outerRadius - (radiusLength * this.index);\n this.innerRadius = this.outerRadius - radiusLength;\n }\n\n updateElements(arcs, start, count, mode) {\n const reset = mode === 'reset';\n const chart = this.chart;\n const opts = chart.options;\n const animationOpts = opts.animation;\n const scale = this._cachedMeta.rScale;\n const centerX = scale.xCenter;\n const centerY = scale.yCenter;\n const datasetStartAngle = scale.getIndexAngle(0) - 0.5 * PI;\n let angle = datasetStartAngle;\n let i;\n\n const defaultAngle = 360 / this.countVisibleElements();\n\n for (i = 0; i < start; ++i) {\n angle += this._computeAngle(i, mode, defaultAngle);\n }\n for (i = start; i < start + count; i++) {\n const arc = arcs[i];\n let startAngle = angle;\n let endAngle = angle + this._computeAngle(i, mode, defaultAngle);\n let outerRadius = chart.getDataVisibility(i) ? scale.getDistanceFromCenterForValue(this.getParsed(i).r) : 0;\n angle = endAngle;\n\n if (reset) {\n if (animationOpts.animateScale) {\n outerRadius = 0;\n }\n if (animationOpts.animateRotate) {\n startAngle = endAngle = datasetStartAngle;\n }\n }\n\n const properties = {\n x: centerX,\n y: centerY,\n innerRadius: 0,\n outerRadius,\n startAngle,\n endAngle,\n options: this.resolveDataElementOptions(i, arc.active ? 'active' : mode)\n };\n\n this.updateElement(arc, i, properties, mode);\n }\n }\n\n countVisibleElements() {\n const meta = this._cachedMeta;\n let count = 0;\n\n meta.data.forEach((element, index) => {\n if (!isNaN(this.getParsed(index).r) && this.chart.getDataVisibility(index)) {\n count++;\n }\n });\n\n return count;\n }\n\n /**\n\t * @private\n\t */\n _computeAngle(index, mode, defaultAngle) {\n return this.chart.getDataVisibility(index)\n ? toRadians(this.resolveDataElementOptions(index, mode).angle || defaultAngle)\n : 0;\n }\n}\n","import DatasetController from '../core/core.datasetController.js';\nimport {valueOrDefault} from '../helpers/helpers.core.js';\n\nexport default class BubbleController extends DatasetController {\n\n static id = 'bubble';\n\n /**\n * @type {any}\n */\n static defaults = {\n datasetElementType: false,\n dataElementType: 'point',\n\n animations: {\n numbers: {\n type: 'number',\n properties: ['x', 'y', 'borderWidth', 'radius']\n }\n }\n };\n\n /**\n * @type {any}\n */\n static overrides = {\n scales: {\n x: {\n type: 'linear'\n },\n y: {\n type: 'linear'\n }\n }\n };\n\n initialize() {\n this.enableOptionSharing = true;\n super.initialize();\n }\n\n /**\n\t * Parse array of primitive values\n\t * @protected\n\t */\n parsePrimitiveData(meta, data, start, count) {\n const parsed = super.parsePrimitiveData(meta, data, start, count);\n for (let i = 0; i < parsed.length; i++) {\n parsed[i]._custom = this.resolveDataElementOptions(i + start).radius;\n }\n return parsed;\n }\n\n /**\n\t * Parse array of arrays\n\t * @protected\n\t */\n parseArrayData(meta, data, start, count) {\n const parsed = super.parseArrayData(meta, data, start, count);\n for (let i = 0; i < parsed.length; i++) {\n const item = data[start + i];\n parsed[i]._custom = valueOrDefault(item[2], this.resolveDataElementOptions(i + start).radius);\n }\n return parsed;\n }\n\n /**\n\t * Parse array of objects\n\t * @protected\n\t */\n parseObjectData(meta, data, start, count) {\n const parsed = super.parseObjectData(meta, data, start, count);\n for (let i = 0; i < parsed.length; i++) {\n const item = data[start + i];\n parsed[i]._custom = valueOrDefault(item && item.r && +item.r, this.resolveDataElementOptions(i + start).radius);\n }\n return parsed;\n }\n\n /**\n\t * @protected\n\t */\n getMaxOverflow() {\n const data = this._cachedMeta.data;\n\n let max = 0;\n for (let i = data.length - 1; i >= 0; --i) {\n max = Math.max(max, data[i].size(this.resolveDataElementOptions(i)) / 2);\n }\n return max > 0 && max;\n }\n\n /**\n\t * @protected\n\t */\n getLabelAndValue(index) {\n const meta = this._cachedMeta;\n const labels = this.chart.data.labels || [];\n const {xScale, yScale} = meta;\n const parsed = this.getParsed(index);\n const x = xScale.getLabelForValue(parsed.x);\n const y = yScale.getLabelForValue(parsed.y);\n const r = parsed._custom;\n\n return {\n label: labels[index] || '',\n value: '(' + x + ', ' + y + (r ? ', ' + r : '') + ')'\n };\n }\n\n update(mode) {\n const points = this._cachedMeta.data;\n\n // Update Points\n this.updateElements(points, 0, points.length, mode);\n }\n\n updateElements(points, start, count, mode) {\n const reset = mode === 'reset';\n const {iScale, vScale} = this._cachedMeta;\n const {sharedOptions, includeOptions} = this._getSharedOptions(start, mode);\n const iAxis = iScale.axis;\n const vAxis = vScale.axis;\n\n for (let i = start; i < start + count; i++) {\n const point = points[i];\n const parsed = !reset && this.getParsed(i);\n const properties = {};\n const iPixel = properties[iAxis] = reset ? iScale.getPixelForDecimal(0.5) : iScale.getPixelForValue(parsed[iAxis]);\n const vPixel = properties[vAxis] = reset ? vScale.getBasePixel() : vScale.getPixelForValue(parsed[vAxis]);\n\n properties.skip = isNaN(iPixel) || isNaN(vPixel);\n\n if (includeOptions) {\n properties.options = sharedOptions || this.resolveDataElementOptions(i, point.active ? 'active' : mode);\n\n if (reset) {\n properties.options.radius = 0;\n }\n }\n\n this.updateElement(point, i, properties, mode);\n }\n }\n\n /**\n\t * @param {number} index\n\t * @param {string} [mode]\n\t * @protected\n\t */\n resolveDataElementOptions(index, mode) {\n const parsed = this.getParsed(index);\n let values = super.resolveDataElementOptions(index, mode);\n\n // In case values were cached (and thus frozen), we need to clone the values\n if (values.$shared) {\n values = Object.assign({}, values, {$shared: false});\n }\n\n // Custom radius resolution\n const radius = values.radius;\n if (mode !== 'active') {\n values.radius = 0;\n }\n values.radius += valueOrDefault(parsed && parsed._custom, radius);\n\n return values;\n }\n}\n","import DatasetController from '../core/core.datasetController.js';\nimport {isNullOrUndef} from '../helpers/index.js';\nimport {isNumber} from '../helpers/helpers.math.js';\nimport {_getStartAndCountOfVisiblePoints, _scaleRangesChanged} from '../helpers/helpers.extras.js';\n\nexport default class LineController extends DatasetController {\n\n static id = 'line';\n\n /**\n * @type {any}\n */\n static defaults = {\n datasetElementType: 'line',\n dataElementType: 'point',\n\n showLine: true,\n spanGaps: false,\n };\n\n /**\n * @type {any}\n */\n static overrides = {\n scales: {\n _index_: {\n type: 'category',\n },\n _value_: {\n type: 'linear',\n },\n }\n };\n\n initialize() {\n this.enableOptionSharing = true;\n this.supportsDecimation = true;\n super.initialize();\n }\n\n update(mode) {\n const meta = this._cachedMeta;\n const {dataset: line, data: points = [], _dataset} = meta;\n // @ts-ignore\n const animationsDisabled = this.chart._animationsDisabled;\n let {start, count} = _getStartAndCountOfVisiblePoints(meta, points, animationsDisabled);\n\n this._drawStart = start;\n this._drawCount = count;\n\n if (_scaleRangesChanged(meta)) {\n start = 0;\n count = points.length;\n }\n\n // Update Line\n line._chart = this.chart;\n line._datasetIndex = this.index;\n line._decimated = !!_dataset._decimated;\n line.points = points;\n\n const options = this.resolveDatasetElementOptions(mode);\n if (!this.options.showLine) {\n options.borderWidth = 0;\n }\n options.segment = this.options.segment;\n this.updateElement(line, undefined, {\n animated: !animationsDisabled,\n options\n }, mode);\n\n // Update Points\n this.updateElements(points, start, count, mode);\n }\n\n updateElements(points, start, count, mode) {\n const reset = mode === 'reset';\n const {iScale, vScale, _stacked, _dataset} = this._cachedMeta;\n const {sharedOptions, includeOptions} = this._getSharedOptions(start, mode);\n const iAxis = iScale.axis;\n const vAxis = vScale.axis;\n const {spanGaps, segment} = this.options;\n const maxGapLength = isNumber(spanGaps) ? spanGaps : Number.POSITIVE_INFINITY;\n const directUpdate = this.chart._animationsDisabled || reset || mode === 'none';\n const end = start + count;\n const pointsCount = points.length;\n let prevParsed = start > 0 && this.getParsed(start - 1);\n\n for (let i = 0; i < pointsCount; ++i) {\n const point = points[i];\n const properties = directUpdate ? point : {};\n\n if (i < start || i >= end) {\n properties.skip = true;\n continue;\n }\n\n const parsed = this.getParsed(i);\n const nullData = isNullOrUndef(parsed[vAxis]);\n const iPixel = properties[iAxis] = iScale.getPixelForValue(parsed[iAxis], i);\n const vPixel = properties[vAxis] = reset || nullData ? vScale.getBasePixel() : vScale.getPixelForValue(_stacked ? this.applyStack(vScale, parsed, _stacked) : parsed[vAxis], i);\n\n properties.skip = isNaN(iPixel) || isNaN(vPixel) || nullData;\n properties.stop = i > 0 && (Math.abs(parsed[iAxis] - prevParsed[iAxis])) > maxGapLength;\n if (segment) {\n properties.parsed = parsed;\n properties.raw = _dataset.data[i];\n }\n\n if (includeOptions) {\n properties.options = sharedOptions || this.resolveDataElementOptions(i, point.active ? 'active' : mode);\n }\n\n if (!directUpdate) {\n this.updateElement(point, i, properties, mode);\n }\n\n prevParsed = parsed;\n }\n }\n\n /**\n\t * @protected\n\t */\n getMaxOverflow() {\n const meta = this._cachedMeta;\n const dataset = meta.dataset;\n const border = dataset.options && dataset.options.borderWidth || 0;\n const data = meta.data || [];\n if (!data.length) {\n return border;\n }\n const firstPoint = data[0].size(this.resolveDataElementOptions(0));\n const lastPoint = data[data.length - 1].size(this.resolveDataElementOptions(data.length - 1));\n return Math.max(border, firstPoint, lastPoint) / 2;\n }\n\n draw() {\n const meta = this._cachedMeta;\n meta.dataset.updateControlPoints(this.chart.chartArea, meta.iScale.axis);\n super.draw();\n }\n}\n","import DoughnutController from './controller.doughnut.js';\n\n// Pie charts are Doughnut chart with different defaults\nexport default class PieController extends DoughnutController {\n\n static id = 'pie';\n\n /**\n * @type {any}\n */\n static defaults = {\n // The percentage of the chart that we cut out of the middle.\n cutout: 0,\n\n // The rotation of the chart, where the first data arc begins.\n rotation: 0,\n\n // The total circumference of the chart.\n circumference: 360,\n\n // The outr radius of the chart\n radius: '100%'\n };\n}\n","import DatasetController from '../core/core.datasetController.js';\nimport {_parseObjectDataRadialScale} from '../helpers/index.js';\n\nexport default class RadarController extends DatasetController {\n\n static id = 'radar';\n\n /**\n * @type {any}\n */\n static defaults = {\n datasetElementType: 'line',\n dataElementType: 'point',\n indexAxis: 'r',\n showLine: true,\n elements: {\n line: {\n fill: 'start'\n }\n },\n };\n\n /**\n * @type {any}\n */\n static overrides = {\n aspectRatio: 1,\n\n scales: {\n r: {\n type: 'radialLinear',\n }\n }\n };\n\n /**\n\t * @protected\n\t */\n getLabelAndValue(index) {\n const vScale = this._cachedMeta.vScale;\n const parsed = this.getParsed(index);\n\n return {\n label: vScale.getLabels()[index],\n value: '' + vScale.getLabelForValue(parsed[vScale.axis])\n };\n }\n\n parseObjectData(meta, data, start, count) {\n return _parseObjectDataRadialScale.bind(this)(meta, data, start, count);\n }\n\n update(mode) {\n const meta = this._cachedMeta;\n const line = meta.dataset;\n const points = meta.data || [];\n const labels = meta.iScale.getLabels();\n\n // Update Line\n line.points = points;\n // In resize mode only point locations change, so no need to set the points or options.\n if (mode !== 'resize') {\n const options = this.resolveDatasetElementOptions(mode);\n if (!this.options.showLine) {\n options.borderWidth = 0;\n }\n\n const properties = {\n _loop: true,\n _fullLoop: labels.length === points.length,\n options\n };\n\n this.updateElement(line, undefined, properties, mode);\n }\n\n // Update Points\n this.updateElements(points, 0, points.length, mode);\n }\n\n updateElements(points, start, count, mode) {\n const scale = this._cachedMeta.rScale;\n const reset = mode === 'reset';\n\n for (let i = start; i < start + count; i++) {\n const point = points[i];\n const options = this.resolveDataElementOptions(i, point.active ? 'active' : mode);\n const pointPosition = scale.getPointPositionForValue(i, this.getParsed(i).r);\n\n const x = reset ? scale.xCenter : pointPosition.x;\n const y = reset ? scale.yCenter : pointPosition.y;\n\n const properties = {\n x,\n y,\n angle: pointPosition.angle,\n skip: isNaN(x) || isNaN(y),\n options\n };\n\n this.updateElement(point, i, properties, mode);\n }\n }\n}\n","import DatasetController from '../core/core.datasetController.js';\nimport {isNullOrUndef} from '../helpers/index.js';\nimport {isNumber} from '../helpers/helpers.math.js';\nimport {_getStartAndCountOfVisiblePoints, _scaleRangesChanged} from '../helpers/helpers.extras.js';\n\nexport default class ScatterController extends DatasetController {\n\n static id = 'scatter';\n\n /**\n * @type {any}\n */\n static defaults = {\n datasetElementType: false,\n dataElementType: 'point',\n showLine: false,\n fill: false\n };\n\n /**\n * @type {any}\n */\n static overrides = {\n\n interaction: {\n mode: 'point'\n },\n\n scales: {\n x: {\n type: 'linear'\n },\n y: {\n type: 'linear'\n }\n }\n };\n\n /**\n\t * @protected\n\t */\n getLabelAndValue(index) {\n const meta = this._cachedMeta;\n const labels = this.chart.data.labels || [];\n const {xScale, yScale} = meta;\n const parsed = this.getParsed(index);\n const x = xScale.getLabelForValue(parsed.x);\n const y = yScale.getLabelForValue(parsed.y);\n\n return {\n label: labels[index] || '',\n value: '(' + x + ', ' + y + ')'\n };\n }\n\n update(mode) {\n const meta = this._cachedMeta;\n const {data: points = []} = meta;\n // @ts-ignore\n const animationsDisabled = this.chart._animationsDisabled;\n let {start, count} = _getStartAndCountOfVisiblePoints(meta, points, animationsDisabled);\n\n this._drawStart = start;\n this._drawCount = count;\n\n if (_scaleRangesChanged(meta)) {\n start = 0;\n count = points.length;\n }\n\n if (this.options.showLine) {\n\n const {dataset: line, _dataset} = meta;\n\n // Update Line\n line._chart = this.chart;\n line._datasetIndex = this.index;\n line._decimated = !!_dataset._decimated;\n line.points = points;\n\n const options = this.resolveDatasetElementOptions(mode);\n options.segment = this.options.segment;\n this.updateElement(line, undefined, {\n animated: !animationsDisabled,\n options\n }, mode);\n }\n\n // Update Points\n this.updateElements(points, start, count, mode);\n }\n\n addElements() {\n const {showLine} = this.options;\n\n if (!this.datasetElementType && showLine) {\n this.datasetElementType = this.chart.registry.getElement('line');\n }\n\n super.addElements();\n }\n\n updateElements(points, start, count, mode) {\n const reset = mode === 'reset';\n const {iScale, vScale, _stacked, _dataset} = this._cachedMeta;\n const firstOpts = this.resolveDataElementOptions(start, mode);\n const sharedOptions = this.getSharedOptions(firstOpts);\n const includeOptions = this.includeOptions(mode, sharedOptions);\n const iAxis = iScale.axis;\n const vAxis = vScale.axis;\n const {spanGaps, segment} = this.options;\n const maxGapLength = isNumber(spanGaps) ? spanGaps : Number.POSITIVE_INFINITY;\n const directUpdate = this.chart._animationsDisabled || reset || mode === 'none';\n let prevParsed = start > 0 && this.getParsed(start - 1);\n\n for (let i = start; i < start + count; ++i) {\n const point = points[i];\n const parsed = this.getParsed(i);\n const properties = directUpdate ? point : {};\n const nullData = isNullOrUndef(parsed[vAxis]);\n const iPixel = properties[iAxis] = iScale.getPixelForValue(parsed[iAxis], i);\n const vPixel = properties[vAxis] = reset || nullData ? vScale.getBasePixel() : vScale.getPixelForValue(_stacked ? this.applyStack(vScale, parsed, _stacked) : parsed[vAxis], i);\n\n properties.skip = isNaN(iPixel) || isNaN(vPixel) || nullData;\n properties.stop = i > 0 && (Math.abs(parsed[iAxis] - prevParsed[iAxis])) > maxGapLength;\n if (segment) {\n properties.parsed = parsed;\n properties.raw = _dataset.data[i];\n }\n\n if (includeOptions) {\n properties.options = sharedOptions || this.resolveDataElementOptions(i, point.active ? 'active' : mode);\n }\n\n if (!directUpdate) {\n this.updateElement(point, i, properties, mode);\n }\n\n prevParsed = parsed;\n }\n\n this.updateSharedOptions(sharedOptions, mode, firstOpts);\n }\n\n /**\n\t * @protected\n\t */\n getMaxOverflow() {\n const meta = this._cachedMeta;\n const data = meta.data || [];\n\n if (!this.options.showLine) {\n let max = 0;\n for (let i = data.length - 1; i >= 0; --i) {\n max = Math.max(max, data[i].size(this.resolveDataElementOptions(i)) / 2);\n }\n return max > 0 && max;\n }\n\n const dataset = meta.dataset;\n const border = dataset.options && dataset.options.borderWidth || 0;\n\n if (!data.length) {\n return border;\n }\n\n const firstPoint = data[0].size(this.resolveDataElementOptions(0));\n const lastPoint = data[data.length - 1].size(this.resolveDataElementOptions(data.length - 1));\n return Math.max(border, firstPoint, lastPoint) / 2;\n }\n}\n","import Element from '../core/core.element.js';\nimport {_angleBetween, getAngleFromPoint, TAU, HALF_PI, valueOrDefault} from '../helpers/index.js';\nimport {PI, _isBetween, _limitValue} from '../helpers/helpers.math.js';\nimport {_readValueToProps} from '../helpers/helpers.options.js';\nimport type {ArcOptions, Point} from '../types/index.js';\n\n\nfunction clipArc(ctx: CanvasRenderingContext2D, element: ArcElement, endAngle: number) {\n const {startAngle, pixelMargin, x, y, outerRadius, innerRadius} = element;\n let angleMargin = pixelMargin / outerRadius;\n\n // Draw an inner border by clipping the arc and drawing a double-width border\n // Enlarge the clipping arc by 0.33 pixels to eliminate glitches between borders\n ctx.beginPath();\n ctx.arc(x, y, outerRadius, startAngle - angleMargin, endAngle + angleMargin);\n if (innerRadius > pixelMargin) {\n angleMargin = pixelMargin / innerRadius;\n ctx.arc(x, y, innerRadius, endAngle + angleMargin, startAngle - angleMargin, true);\n } else {\n ctx.arc(x, y, pixelMargin, endAngle + HALF_PI, startAngle - HALF_PI);\n }\n ctx.closePath();\n ctx.clip();\n}\n\nfunction toRadiusCorners(value) {\n return _readValueToProps(value, ['outerStart', 'outerEnd', 'innerStart', 'innerEnd']);\n}\n\n/**\n * Parse border radius from the provided options\n */\nfunction parseBorderRadius(arc: ArcElement, innerRadius: number, outerRadius: number, angleDelta: number) {\n const o = toRadiusCorners(arc.options.borderRadius);\n const halfThickness = (outerRadius - innerRadius) / 2;\n const innerLimit = Math.min(halfThickness, angleDelta * innerRadius / 2);\n\n // Outer limits are complicated. We want to compute the available angular distance at\n // a radius of outerRadius - borderRadius because for small angular distances, this term limits.\n // We compute at r = outerRadius - borderRadius because this circle defines the center of the border corners.\n //\n // If the borderRadius is large, that value can become negative.\n // This causes the outer borders to lose their radius entirely, which is rather unexpected. To solve that, if borderRadius > outerRadius\n // we know that the thickness term will dominate and compute the limits at that point\n const computeOuterLimit = (val) => {\n const outerArcLimit = (outerRadius - Math.min(halfThickness, val)) * angleDelta / 2;\n return _limitValue(val, 0, Math.min(halfThickness, outerArcLimit));\n };\n\n return {\n outerStart: computeOuterLimit(o.outerStart),\n outerEnd: computeOuterLimit(o.outerEnd),\n innerStart: _limitValue(o.innerStart, 0, innerLimit),\n innerEnd: _limitValue(o.innerEnd, 0, innerLimit),\n };\n}\n\n/**\n * Convert (r, 𝜃) to (x, y)\n */\nfunction rThetaToXY(r: number, theta: number, x: number, y: number) {\n return {\n x: x + r * Math.cos(theta),\n y: y + r * Math.sin(theta),\n };\n}\n\n\n/**\n * Path the arc, respecting border radius by separating into left and right halves.\n *\n * Start End\n *\n * 1--->a--->2 Outer\n * / \\\n * 8 3\n * | |\n * | |\n * 7 4\n * \\ /\n * 6<---b<---5 Inner\n */\nfunction pathArc(\n ctx: CanvasRenderingContext2D,\n element: ArcElement,\n offset: number,\n spacing: number,\n end: number,\n circular: boolean,\n) {\n const {x, y, startAngle: start, pixelMargin, innerRadius: innerR} = element;\n\n const outerRadius = Math.max(element.outerRadius + spacing + offset - pixelMargin, 0);\n const innerRadius = innerR > 0 ? innerR + spacing + offset + pixelMargin : 0;\n\n let spacingOffset = 0;\n const alpha = end - start;\n\n if (spacing) {\n // When spacing is present, it is the same for all items\n // So we adjust the start and end angle of the arc such that\n // the distance is the same as it would be without the spacing\n const noSpacingInnerRadius = innerR > 0 ? innerR - spacing : 0;\n const noSpacingOuterRadius = outerRadius > 0 ? outerRadius - spacing : 0;\n const avNogSpacingRadius = (noSpacingInnerRadius + noSpacingOuterRadius) / 2;\n const adjustedAngle = avNogSpacingRadius !== 0 ? (alpha * avNogSpacingRadius) / (avNogSpacingRadius + spacing) : alpha;\n spacingOffset = (alpha - adjustedAngle) / 2;\n }\n\n const beta = Math.max(0.001, alpha * outerRadius - offset / PI) / outerRadius;\n const angleOffset = (alpha - beta) / 2;\n const startAngle = start + angleOffset + spacingOffset;\n const endAngle = end - angleOffset - spacingOffset;\n const {outerStart, outerEnd, innerStart, innerEnd} = parseBorderRadius(element, innerRadius, outerRadius, endAngle - startAngle);\n\n const outerStartAdjustedRadius = outerRadius - outerStart;\n const outerEndAdjustedRadius = outerRadius - outerEnd;\n const outerStartAdjustedAngle = startAngle + outerStart / outerStartAdjustedRadius;\n const outerEndAdjustedAngle = endAngle - outerEnd / outerEndAdjustedRadius;\n\n const innerStartAdjustedRadius = innerRadius + innerStart;\n const innerEndAdjustedRadius = innerRadius + innerEnd;\n const innerStartAdjustedAngle = startAngle + innerStart / innerStartAdjustedRadius;\n const innerEndAdjustedAngle = endAngle - innerEnd / innerEndAdjustedRadius;\n\n ctx.beginPath();\n\n if (circular) {\n // The first arc segments from point 1 to point a to point 2\n const outerMidAdjustedAngle = (outerStartAdjustedAngle + outerEndAdjustedAngle) / 2;\n ctx.arc(x, y, outerRadius, outerStartAdjustedAngle, outerMidAdjustedAngle);\n ctx.arc(x, y, outerRadius, outerMidAdjustedAngle, outerEndAdjustedAngle);\n\n // The corner segment from point 2 to point 3\n if (outerEnd > 0) {\n const pCenter = rThetaToXY(outerEndAdjustedRadius, outerEndAdjustedAngle, x, y);\n ctx.arc(pCenter.x, pCenter.y, outerEnd, outerEndAdjustedAngle, endAngle + HALF_PI);\n }\n\n // The line from point 3 to point 4\n const p4 = rThetaToXY(innerEndAdjustedRadius, endAngle, x, y);\n ctx.lineTo(p4.x, p4.y);\n\n // The corner segment from point 4 to point 5\n if (innerEnd > 0) {\n const pCenter = rThetaToXY(innerEndAdjustedRadius, innerEndAdjustedAngle, x, y);\n ctx.arc(pCenter.x, pCenter.y, innerEnd, endAngle + HALF_PI, innerEndAdjustedAngle + Math.PI);\n }\n\n // The inner arc from point 5 to point b to point 6\n const innerMidAdjustedAngle = ((endAngle - (innerEnd / innerRadius)) + (startAngle + (innerStart / innerRadius))) / 2;\n ctx.arc(x, y, innerRadius, endAngle - (innerEnd / innerRadius), innerMidAdjustedAngle, true);\n ctx.arc(x, y, innerRadius, innerMidAdjustedAngle, startAngle + (innerStart / innerRadius), true);\n\n // The corner segment from point 6 to point 7\n if (innerStart > 0) {\n const pCenter = rThetaToXY(innerStartAdjustedRadius, innerStartAdjustedAngle, x, y);\n ctx.arc(pCenter.x, pCenter.y, innerStart, innerStartAdjustedAngle + Math.PI, startAngle - HALF_PI);\n }\n\n // The line from point 7 to point 8\n const p8 = rThetaToXY(outerStartAdjustedRadius, startAngle, x, y);\n ctx.lineTo(p8.x, p8.y);\n\n // The corner segment from point 8 to point 1\n if (outerStart > 0) {\n const pCenter = rThetaToXY(outerStartAdjustedRadius, outerStartAdjustedAngle, x, y);\n ctx.arc(pCenter.x, pCenter.y, outerStart, startAngle - HALF_PI, outerStartAdjustedAngle);\n }\n } else {\n ctx.moveTo(x, y);\n\n const outerStartX = Math.cos(outerStartAdjustedAngle) * outerRadius + x;\n const outerStartY = Math.sin(outerStartAdjustedAngle) * outerRadius + y;\n ctx.lineTo(outerStartX, outerStartY);\n\n const outerEndX = Math.cos(outerEndAdjustedAngle) * outerRadius + x;\n const outerEndY = Math.sin(outerEndAdjustedAngle) * outerRadius + y;\n ctx.lineTo(outerEndX, outerEndY);\n }\n\n ctx.closePath();\n}\n\nfunction drawArc(\n ctx: CanvasRenderingContext2D,\n element: ArcElement,\n offset: number,\n spacing: number,\n circular: boolean,\n) {\n const {fullCircles, startAngle, circumference} = element;\n let endAngle = element.endAngle;\n if (fullCircles) {\n pathArc(ctx, element, offset, spacing, endAngle, circular);\n for (let i = 0; i < fullCircles; ++i) {\n ctx.fill();\n }\n if (!isNaN(circumference)) {\n endAngle = startAngle + (circumference % TAU || TAU);\n }\n }\n pathArc(ctx, element, offset, spacing, endAngle, circular);\n ctx.fill();\n return endAngle;\n}\n\nfunction drawBorder(\n ctx: CanvasRenderingContext2D,\n element: ArcElement,\n offset: number,\n spacing: number,\n circular: boolean,\n) {\n const {fullCircles, startAngle, circumference, options} = element;\n const {borderWidth, borderJoinStyle} = options;\n const inner = options.borderAlign === 'inner';\n\n if (!borderWidth) {\n return;\n }\n\n if (inner) {\n ctx.lineWidth = borderWidth * 2;\n ctx.lineJoin = borderJoinStyle || 'round';\n } else {\n ctx.lineWidth = borderWidth;\n ctx.lineJoin = borderJoinStyle || 'bevel';\n }\n\n let endAngle = element.endAngle;\n if (fullCircles) {\n pathArc(ctx, element, offset, spacing, endAngle, circular);\n for (let i = 0; i < fullCircles; ++i) {\n ctx.stroke();\n }\n if (!isNaN(circumference)) {\n endAngle = startAngle + (circumference % TAU || TAU);\n }\n }\n\n if (inner) {\n clipArc(ctx, element, endAngle);\n }\n\n if (!fullCircles) {\n pathArc(ctx, element, offset, spacing, endAngle, circular);\n ctx.stroke();\n }\n}\n\nexport interface ArcProps extends Point {\n startAngle: number;\n endAngle: number;\n innerRadius: number;\n outerRadius: number;\n circumference: number;\n}\n\nexport default class ArcElement extends Element {\n\n static id = 'arc';\n\n static defaults = {\n borderAlign: 'center',\n borderColor: '#fff',\n borderJoinStyle: undefined,\n borderRadius: 0,\n borderWidth: 2,\n offset: 0,\n spacing: 0,\n angle: undefined,\n circular: true,\n };\n\n static defaultRoutes = {\n backgroundColor: 'backgroundColor'\n };\n\n circumference: number;\n endAngle: number;\n fullCircles: number;\n innerRadius: number;\n outerRadius: number;\n pixelMargin: number;\n startAngle: number;\n\n constructor(cfg) {\n super();\n\n this.options = undefined;\n this.circumference = undefined;\n this.startAngle = undefined;\n this.endAngle = undefined;\n this.innerRadius = undefined;\n this.outerRadius = undefined;\n this.pixelMargin = 0;\n this.fullCircles = 0;\n\n if (cfg) {\n Object.assign(this, cfg);\n }\n }\n\n inRange(chartX: number, chartY: number, useFinalPosition: boolean) {\n const point = this.getProps(['x', 'y'], useFinalPosition);\n const {angle, distance} = getAngleFromPoint(point, {x: chartX, y: chartY});\n const {startAngle, endAngle, innerRadius, outerRadius, circumference} = this.getProps([\n 'startAngle',\n 'endAngle',\n 'innerRadius',\n 'outerRadius',\n 'circumference'\n ], useFinalPosition);\n const rAdjust = this.options.spacing / 2;\n const _circumference = valueOrDefault(circumference, endAngle - startAngle);\n const betweenAngles = _circumference >= TAU || _angleBetween(angle, startAngle, endAngle);\n const withinRadius = _isBetween(distance, innerRadius + rAdjust, outerRadius + rAdjust);\n\n return (betweenAngles && withinRadius);\n }\n\n getCenterPoint(useFinalPosition: boolean) {\n const {x, y, startAngle, endAngle, innerRadius, outerRadius} = this.getProps([\n 'x',\n 'y',\n 'startAngle',\n 'endAngle',\n 'innerRadius',\n 'outerRadius',\n 'circumference',\n ], useFinalPosition);\n const {offset, spacing} = this.options;\n const halfAngle = (startAngle + endAngle) / 2;\n const halfRadius = (innerRadius + outerRadius + spacing + offset) / 2;\n return {\n x: x + Math.cos(halfAngle) * halfRadius,\n y: y + Math.sin(halfAngle) * halfRadius\n };\n }\n\n tooltipPosition(useFinalPosition: boolean) {\n return this.getCenterPoint(useFinalPosition);\n }\n\n draw(ctx: CanvasRenderingContext2D) {\n const {options, circumference} = this;\n const offset = (options.offset || 0) / 4;\n const spacing = (options.spacing || 0) / 2;\n const circular = options.circular;\n this.pixelMargin = (options.borderAlign === 'inner') ? 0.33 : 0;\n this.fullCircles = circumference > TAU ? Math.floor(circumference / TAU) : 0;\n\n if (circumference === 0 || this.innerRadius < 0 || this.outerRadius < 0) {\n return;\n }\n\n ctx.save();\n\n const halfAngle = (this.startAngle + this.endAngle) / 2;\n ctx.translate(Math.cos(halfAngle) * offset, Math.sin(halfAngle) * offset);\n const fix = 1 - Math.sin(Math.min(PI, circumference || 0));\n const radiusOffset = offset * fix;\n\n ctx.fillStyle = options.backgroundColor;\n ctx.strokeStyle = options.borderColor;\n\n drawArc(ctx, this, radiusOffset, spacing, circular);\n drawBorder(ctx, this, radiusOffset, spacing, circular);\n\n ctx.restore();\n }\n}\n","import Element from '../core/core.element.js';\nimport {_bezierInterpolation, _pointInLine, _steppedInterpolation} from '../helpers/helpers.interpolation.js';\nimport {_computeSegments, _boundSegments} from '../helpers/helpers.segment.js';\nimport {_steppedLineTo, _bezierCurveTo} from '../helpers/helpers.canvas.js';\nimport {_updateBezierControlPoints} from '../helpers/helpers.curve.js';\nimport {valueOrDefault} from '../helpers/index.js';\n\n/**\n * @typedef { import('./element.point.js').default } PointElement\n */\n\nfunction setStyle(ctx, options, style = options) {\n ctx.lineCap = valueOrDefault(style.borderCapStyle, options.borderCapStyle);\n ctx.setLineDash(valueOrDefault(style.borderDash, options.borderDash));\n ctx.lineDashOffset = valueOrDefault(style.borderDashOffset, options.borderDashOffset);\n ctx.lineJoin = valueOrDefault(style.borderJoinStyle, options.borderJoinStyle);\n ctx.lineWidth = valueOrDefault(style.borderWidth, options.borderWidth);\n ctx.strokeStyle = valueOrDefault(style.borderColor, options.borderColor);\n}\n\nfunction lineTo(ctx, previous, target) {\n ctx.lineTo(target.x, target.y);\n}\n\nfunction getLineMethod(options) {\n if (options.stepped) {\n return _steppedLineTo;\n }\n\n if (options.tension || options.cubicInterpolationMode === 'monotone') {\n return _bezierCurveTo;\n }\n\n return lineTo;\n}\n\nfunction pathVars(points, segment, params = {}) {\n const count = points.length;\n const {start: paramsStart = 0, end: paramsEnd = count - 1} = params;\n const {start: segmentStart, end: segmentEnd} = segment;\n const start = Math.max(paramsStart, segmentStart);\n const end = Math.min(paramsEnd, segmentEnd);\n const outside = paramsStart < segmentStart && paramsEnd < segmentStart || paramsStart > segmentEnd && paramsEnd > segmentEnd;\n\n return {\n count,\n start,\n loop: segment.loop,\n ilen: end < start && !outside ? count + end - start : end - start\n };\n}\n\n/**\n * Create path from points, grouping by truncated x-coordinate\n * Points need to be in order by x-coordinate for this to work efficiently\n * @param {CanvasRenderingContext2D|Path2D} ctx - Context\n * @param {LineElement} line\n * @param {object} segment\n * @param {number} segment.start - start index of the segment, referring the points array\n * @param {number} segment.end - end index of the segment, referring the points array\n * @param {boolean} segment.loop - indicates that the segment is a loop\n * @param {object} params\n * @param {boolean} params.move - move to starting point (vs line to it)\n * @param {boolean} params.reverse - path the segment from end to start\n * @param {number} params.start - limit segment to points starting from `start` index\n * @param {number} params.end - limit segment to points ending at `start` + `count` index\n */\nfunction pathSegment(ctx, line, segment, params) {\n const {points, options} = line;\n const {count, start, loop, ilen} = pathVars(points, segment, params);\n const lineMethod = getLineMethod(options);\n // eslint-disable-next-line prefer-const\n let {move = true, reverse} = params || {};\n let i, point, prev;\n\n for (i = 0; i <= ilen; ++i) {\n point = points[(start + (reverse ? ilen - i : i)) % count];\n\n if (point.skip) {\n // If there is a skipped point inside a segment, spanGaps must be true\n continue;\n } else if (move) {\n ctx.moveTo(point.x, point.y);\n move = false;\n } else {\n lineMethod(ctx, prev, point, reverse, options.stepped);\n }\n\n prev = point;\n }\n\n if (loop) {\n point = points[(start + (reverse ? ilen : 0)) % count];\n lineMethod(ctx, prev, point, reverse, options.stepped);\n }\n\n return !!loop;\n}\n\n/**\n * Create path from points, grouping by truncated x-coordinate\n * Points need to be in order by x-coordinate for this to work efficiently\n * @param {CanvasRenderingContext2D|Path2D} ctx - Context\n * @param {LineElement} line\n * @param {object} segment\n * @param {number} segment.start - start index of the segment, referring the points array\n * @param {number} segment.end - end index of the segment, referring the points array\n * @param {boolean} segment.loop - indicates that the segment is a loop\n * @param {object} params\n * @param {boolean} params.move - move to starting point (vs line to it)\n * @param {boolean} params.reverse - path the segment from end to start\n * @param {number} params.start - limit segment to points starting from `start` index\n * @param {number} params.end - limit segment to points ending at `start` + `count` index\n */\nfunction fastPathSegment(ctx, line, segment, params) {\n const points = line.points;\n const {count, start, ilen} = pathVars(points, segment, params);\n const {move = true, reverse} = params || {};\n let avgX = 0;\n let countX = 0;\n let i, point, prevX, minY, maxY, lastY;\n\n const pointIndex = (index) => (start + (reverse ? ilen - index : index)) % count;\n const drawX = () => {\n if (minY !== maxY) {\n // Draw line to maxY and minY, using the average x-coordinate\n ctx.lineTo(avgX, maxY);\n ctx.lineTo(avgX, minY);\n // Line to y-value of last point in group. So the line continues\n // from correct position. Not using move, to have solid path.\n ctx.lineTo(avgX, lastY);\n }\n };\n\n if (move) {\n point = points[pointIndex(0)];\n ctx.moveTo(point.x, point.y);\n }\n\n for (i = 0; i <= ilen; ++i) {\n point = points[pointIndex(i)];\n\n if (point.skip) {\n // If there is a skipped point inside a segment, spanGaps must be true\n continue;\n }\n\n const x = point.x;\n const y = point.y;\n const truncX = x | 0; // truncated x-coordinate\n\n if (truncX === prevX) {\n // Determine `minY` / `maxY` and `avgX` while we stay within same x-position\n if (y < minY) {\n minY = y;\n } else if (y > maxY) {\n maxY = y;\n }\n // For first point in group, countX is `0`, so average will be `x` / 1.\n avgX = (countX * avgX + x) / ++countX;\n } else {\n drawX();\n // Draw line to next x-position, using the first (or only)\n // y-value in that group\n ctx.lineTo(x, y);\n\n prevX = truncX;\n countX = 0;\n minY = maxY = y;\n }\n // Keep track of the last y-value in group\n lastY = y;\n }\n drawX();\n}\n\n/**\n * @param {LineElement} line - the line\n * @returns {function}\n * @private\n */\nfunction _getSegmentMethod(line) {\n const opts = line.options;\n const borderDash = opts.borderDash && opts.borderDash.length;\n const useFastPath = !line._decimated && !line._loop && !opts.tension && opts.cubicInterpolationMode !== 'monotone' && !opts.stepped && !borderDash;\n return useFastPath ? fastPathSegment : pathSegment;\n}\n\n/**\n * @private\n */\nfunction _getInterpolationMethod(options) {\n if (options.stepped) {\n return _steppedInterpolation;\n }\n\n if (options.tension || options.cubicInterpolationMode === 'monotone') {\n return _bezierInterpolation;\n }\n\n return _pointInLine;\n}\n\nfunction strokePathWithCache(ctx, line, start, count) {\n let path = line._path;\n if (!path) {\n path = line._path = new Path2D();\n if (line.path(path, start, count)) {\n path.closePath();\n }\n }\n setStyle(ctx, line.options);\n ctx.stroke(path);\n}\n\nfunction strokePathDirect(ctx, line, start, count) {\n const {segments, options} = line;\n const segmentMethod = _getSegmentMethod(line);\n\n for (const segment of segments) {\n setStyle(ctx, options, segment.style);\n ctx.beginPath();\n if (segmentMethod(ctx, line, segment, {start, end: start + count - 1})) {\n ctx.closePath();\n }\n ctx.stroke();\n }\n}\n\nconst usePath2D = typeof Path2D === 'function';\n\nfunction draw(ctx, line, start, count) {\n if (usePath2D && !line.options.segment) {\n strokePathWithCache(ctx, line, start, count);\n } else {\n strokePathDirect(ctx, line, start, count);\n }\n}\n\nexport default class LineElement extends Element {\n\n static id = 'line';\n\n /**\n * @type {any}\n */\n static defaults = {\n borderCapStyle: 'butt',\n borderDash: [],\n borderDashOffset: 0,\n borderJoinStyle: 'miter',\n borderWidth: 3,\n capBezierPoints: true,\n cubicInterpolationMode: 'default',\n fill: false,\n spanGaps: false,\n stepped: false,\n tension: 0,\n };\n\n /**\n * @type {any}\n */\n static defaultRoutes = {\n backgroundColor: 'backgroundColor',\n borderColor: 'borderColor'\n };\n\n\n static descriptors = {\n _scriptable: true,\n _indexable: (name) => name !== 'borderDash' && name !== 'fill',\n };\n\n\n constructor(cfg) {\n super();\n\n this.animated = true;\n this.options = undefined;\n this._chart = undefined;\n this._loop = undefined;\n this._fullLoop = undefined;\n this._path = undefined;\n this._points = undefined;\n this._segments = undefined;\n this._decimated = false;\n this._pointsUpdated = false;\n this._datasetIndex = undefined;\n\n if (cfg) {\n Object.assign(this, cfg);\n }\n }\n\n updateControlPoints(chartArea, indexAxis) {\n const options = this.options;\n if ((options.tension || options.cubicInterpolationMode === 'monotone') && !options.stepped && !this._pointsUpdated) {\n const loop = options.spanGaps ? this._loop : this._fullLoop;\n _updateBezierControlPoints(this._points, options, chartArea, loop, indexAxis);\n this._pointsUpdated = true;\n }\n }\n\n set points(points) {\n this._points = points;\n delete this._segments;\n delete this._path;\n this._pointsUpdated = false;\n }\n\n get points() {\n return this._points;\n }\n\n get segments() {\n return this._segments || (this._segments = _computeSegments(this, this.options.segment));\n }\n\n /**\n\t * First non-skipped point on this line\n\t * @returns {PointElement|undefined}\n\t */\n first() {\n const segments = this.segments;\n const points = this.points;\n return segments.length && points[segments[0].start];\n }\n\n /**\n\t * Last non-skipped point on this line\n\t * @returns {PointElement|undefined}\n\t */\n last() {\n const segments = this.segments;\n const points = this.points;\n const count = segments.length;\n return count && points[segments[count - 1].end];\n }\n\n /**\n\t * Interpolate a point in this line at the same value on `property` as\n\t * the reference `point` provided\n\t * @param {PointElement} point - the reference point\n\t * @param {string} property - the property to match on\n\t * @returns {PointElement|undefined}\n\t */\n interpolate(point, property) {\n const options = this.options;\n const value = point[property];\n const points = this.points;\n const segments = _boundSegments(this, {property, start: value, end: value});\n\n if (!segments.length) {\n return;\n }\n\n const result = [];\n const _interpolate = _getInterpolationMethod(options);\n let i, ilen;\n for (i = 0, ilen = segments.length; i < ilen; ++i) {\n const {start, end} = segments[i];\n const p1 = points[start];\n const p2 = points[end];\n if (p1 === p2) {\n result.push(p1);\n continue;\n }\n const t = Math.abs((value - p1[property]) / (p2[property] - p1[property]));\n const interpolated = _interpolate(p1, p2, t, options.stepped);\n interpolated[property] = point[property];\n result.push(interpolated);\n }\n return result.length === 1 ? result[0] : result;\n }\n\n /**\n\t * Append a segment of this line to current path.\n\t * @param {CanvasRenderingContext2D} ctx\n\t * @param {object} segment\n\t * @param {number} segment.start - start index of the segment, referring the points array\n \t * @param {number} segment.end - end index of the segment, referring the points array\n \t * @param {boolean} segment.loop - indicates that the segment is a loop\n\t * @param {object} params\n\t * @param {boolean} params.move - move to starting point (vs line to it)\n\t * @param {boolean} params.reverse - path the segment from end to start\n\t * @param {number} params.start - limit segment to points starting from `start` index\n\t * @param {number} params.end - limit segment to points ending at `start` + `count` index\n\t * @returns {undefined|boolean} - true if the segment is a full loop (path should be closed)\n\t */\n pathSegment(ctx, segment, params) {\n const segmentMethod = _getSegmentMethod(this);\n return segmentMethod(ctx, this, segment, params);\n }\n\n /**\n\t * Append all segments of this line to current path.\n\t * @param {CanvasRenderingContext2D|Path2D} ctx\n\t * @param {number} [start]\n\t * @param {number} [count]\n\t * @returns {undefined|boolean} - true if line is a full loop (path should be closed)\n\t */\n path(ctx, start, count) {\n const segments = this.segments;\n const segmentMethod = _getSegmentMethod(this);\n let loop = this._loop;\n\n start = start || 0;\n count = count || (this.points.length - start);\n\n for (const segment of segments) {\n loop &= segmentMethod(ctx, this, segment, {start, end: start + count - 1});\n }\n return !!loop;\n }\n\n /**\n\t * Draw\n\t * @param {CanvasRenderingContext2D} ctx\n\t * @param {object} chartArea\n\t * @param {number} [start]\n\t * @param {number} [count]\n\t */\n draw(ctx, chartArea, start, count) {\n const options = this.options || {};\n const points = this.points || [];\n\n if (points.length && options.borderWidth) {\n ctx.save();\n\n draw(ctx, this, start, count);\n\n ctx.restore();\n }\n\n if (this.animated) {\n // When line is animated, the control points and path are not cached.\n this._pointsUpdated = false;\n this._path = undefined;\n }\n }\n}\n","import Element from '../core/core.element.js';\nimport {drawPoint, _isPointInArea} from '../helpers/helpers.canvas.js';\nimport type {\n CartesianParsedData,\n ChartArea,\n Point,\n PointHoverOptions,\n PointOptions,\n} from '../types/index.js';\n\nfunction inRange(el: PointElement, pos: number, axis: 'x' | 'y', useFinalPosition?: boolean) {\n const options = el.options;\n const {[axis]: value} = el.getProps([axis], useFinalPosition);\n\n return (Math.abs(pos - value) < options.radius + options.hitRadius);\n}\n\nexport type PointProps = Point\n\nexport default class PointElement extends Element {\n\n static id = 'point';\n\n parsed: CartesianParsedData;\n skip?: boolean;\n stop?: boolean;\n\n /**\n * @type {any}\n */\n static defaults = {\n borderWidth: 1,\n hitRadius: 1,\n hoverBorderWidth: 1,\n hoverRadius: 4,\n pointStyle: 'circle',\n radius: 3,\n rotation: 0\n };\n\n /**\n * @type {any}\n */\n static defaultRoutes = {\n backgroundColor: 'backgroundColor',\n borderColor: 'borderColor'\n };\n\n constructor(cfg) {\n super();\n\n this.options = undefined;\n this.parsed = undefined;\n this.skip = undefined;\n this.stop = undefined;\n\n if (cfg) {\n Object.assign(this, cfg);\n }\n }\n\n inRange(mouseX: number, mouseY: number, useFinalPosition?: boolean) {\n const options = this.options;\n const {x, y} = this.getProps(['x', 'y'], useFinalPosition);\n return ((Math.pow(mouseX - x, 2) + Math.pow(mouseY - y, 2)) < Math.pow(options.hitRadius + options.radius, 2));\n }\n\n inXRange(mouseX: number, useFinalPosition?: boolean) {\n return inRange(this, mouseX, 'x', useFinalPosition);\n }\n\n inYRange(mouseY: number, useFinalPosition?: boolean) {\n return inRange(this, mouseY, 'y', useFinalPosition);\n }\n\n getCenterPoint(useFinalPosition?: boolean) {\n const {x, y} = this.getProps(['x', 'y'], useFinalPosition);\n return {x, y};\n }\n\n size(options?: Partial) {\n options = options || this.options || {};\n let radius = options.radius || 0;\n radius = Math.max(radius, radius && options.hoverRadius || 0);\n const borderWidth = radius && options.borderWidth || 0;\n return (radius + borderWidth) * 2;\n }\n\n draw(ctx: CanvasRenderingContext2D, area: ChartArea) {\n const options = this.options;\n\n if (this.skip || options.radius < 0.1 || !_isPointInArea(this, area, this.size(options) / 2)) {\n return;\n }\n\n ctx.strokeStyle = options.borderColor;\n ctx.lineWidth = options.borderWidth;\n ctx.fillStyle = options.backgroundColor;\n drawPoint(ctx, options, this.x, this.y);\n }\n\n getRange() {\n const options = this.options || {};\n // @ts-expect-error Fallbacks should never be hit in practice\n return options.radius + options.hitRadius;\n }\n}\n","import Element from '../core/core.element.js';\nimport {isObject, _isBetween, _limitValue} from '../helpers/index.js';\nimport {addRoundedRectPath} from '../helpers/helpers.canvas.js';\nimport {toTRBL, toTRBLCorners} from '../helpers/helpers.options.js';\n\n/** @typedef {{ x: number, y: number, base: number, horizontal: boolean, width: number, height: number }} BarProps */\n\n/**\n * Helper function to get the bounds of the bar regardless of the orientation\n * @param {BarElement} bar the bar\n * @param {boolean} [useFinalPosition]\n * @return {object} bounds of the bar\n * @private\n */\nfunction getBarBounds(bar, useFinalPosition) {\n const {x, y, base, width, height} = /** @type {BarProps} */ (bar.getProps(['x', 'y', 'base', 'width', 'height'], useFinalPosition));\n\n let left, right, top, bottom, half;\n\n if (bar.horizontal) {\n half = height / 2;\n left = Math.min(x, base);\n right = Math.max(x, base);\n top = y - half;\n bottom = y + half;\n } else {\n half = width / 2;\n left = x - half;\n right = x + half;\n top = Math.min(y, base);\n bottom = Math.max(y, base);\n }\n\n return {left, top, right, bottom};\n}\n\nfunction skipOrLimit(skip, value, min, max) {\n return skip ? 0 : _limitValue(value, min, max);\n}\n\nfunction parseBorderWidth(bar, maxW, maxH) {\n const value = bar.options.borderWidth;\n const skip = bar.borderSkipped;\n const o = toTRBL(value);\n\n return {\n t: skipOrLimit(skip.top, o.top, 0, maxH),\n r: skipOrLimit(skip.right, o.right, 0, maxW),\n b: skipOrLimit(skip.bottom, o.bottom, 0, maxH),\n l: skipOrLimit(skip.left, o.left, 0, maxW)\n };\n}\n\nfunction parseBorderRadius(bar, maxW, maxH) {\n const {enableBorderRadius} = bar.getProps(['enableBorderRadius']);\n const value = bar.options.borderRadius;\n const o = toTRBLCorners(value);\n const maxR = Math.min(maxW, maxH);\n const skip = bar.borderSkipped;\n\n // If the value is an object, assume the user knows what they are doing\n // and apply as directed.\n const enableBorder = enableBorderRadius || isObject(value);\n\n return {\n topLeft: skipOrLimit(!enableBorder || skip.top || skip.left, o.topLeft, 0, maxR),\n topRight: skipOrLimit(!enableBorder || skip.top || skip.right, o.topRight, 0, maxR),\n bottomLeft: skipOrLimit(!enableBorder || skip.bottom || skip.left, o.bottomLeft, 0, maxR),\n bottomRight: skipOrLimit(!enableBorder || skip.bottom || skip.right, o.bottomRight, 0, maxR)\n };\n}\n\nfunction boundingRects(bar) {\n const bounds = getBarBounds(bar);\n const width = bounds.right - bounds.left;\n const height = bounds.bottom - bounds.top;\n const border = parseBorderWidth(bar, width / 2, height / 2);\n const radius = parseBorderRadius(bar, width / 2, height / 2);\n\n return {\n outer: {\n x: bounds.left,\n y: bounds.top,\n w: width,\n h: height,\n radius\n },\n inner: {\n x: bounds.left + border.l,\n y: bounds.top + border.t,\n w: width - border.l - border.r,\n h: height - border.t - border.b,\n radius: {\n topLeft: Math.max(0, radius.topLeft - Math.max(border.t, border.l)),\n topRight: Math.max(0, radius.topRight - Math.max(border.t, border.r)),\n bottomLeft: Math.max(0, radius.bottomLeft - Math.max(border.b, border.l)),\n bottomRight: Math.max(0, radius.bottomRight - Math.max(border.b, border.r)),\n }\n }\n };\n}\n\nfunction inRange(bar, x, y, useFinalPosition) {\n const skipX = x === null;\n const skipY = y === null;\n const skipBoth = skipX && skipY;\n const bounds = bar && !skipBoth && getBarBounds(bar, useFinalPosition);\n\n return bounds\n\t\t&& (skipX || _isBetween(x, bounds.left, bounds.right))\n\t\t&& (skipY || _isBetween(y, bounds.top, bounds.bottom));\n}\n\nfunction hasRadius(radius) {\n return radius.topLeft || radius.topRight || radius.bottomLeft || radius.bottomRight;\n}\n\n/**\n * Add a path of a rectangle to the current sub-path\n * @param {CanvasRenderingContext2D} ctx Context\n * @param {*} rect Bounding rect\n */\nfunction addNormalRectPath(ctx, rect) {\n ctx.rect(rect.x, rect.y, rect.w, rect.h);\n}\n\nfunction inflateRect(rect, amount, refRect = {}) {\n const x = rect.x !== refRect.x ? -amount : 0;\n const y = rect.y !== refRect.y ? -amount : 0;\n const w = (rect.x + rect.w !== refRect.x + refRect.w ? amount : 0) - x;\n const h = (rect.y + rect.h !== refRect.y + refRect.h ? amount : 0) - y;\n return {\n x: rect.x + x,\n y: rect.y + y,\n w: rect.w + w,\n h: rect.h + h,\n radius: rect.radius\n };\n}\n\nexport default class BarElement extends Element {\n\n static id = 'bar';\n\n /**\n * @type {any}\n */\n static defaults = {\n borderSkipped: 'start',\n borderWidth: 0,\n borderRadius: 0,\n inflateAmount: 'auto',\n pointStyle: undefined\n };\n\n /**\n * @type {any}\n */\n static defaultRoutes = {\n backgroundColor: 'backgroundColor',\n borderColor: 'borderColor'\n };\n\n constructor(cfg) {\n super();\n\n this.options = undefined;\n this.horizontal = undefined;\n this.base = undefined;\n this.width = undefined;\n this.height = undefined;\n this.inflateAmount = undefined;\n\n if (cfg) {\n Object.assign(this, cfg);\n }\n }\n\n draw(ctx) {\n const {inflateAmount, options: {borderColor, backgroundColor}} = this;\n const {inner, outer} = boundingRects(this);\n const addRectPath = hasRadius(outer.radius) ? addRoundedRectPath : addNormalRectPath;\n\n ctx.save();\n\n if (outer.w !== inner.w || outer.h !== inner.h) {\n ctx.beginPath();\n addRectPath(ctx, inflateRect(outer, inflateAmount, inner));\n ctx.clip();\n addRectPath(ctx, inflateRect(inner, -inflateAmount, outer));\n ctx.fillStyle = borderColor;\n ctx.fill('evenodd');\n }\n\n ctx.beginPath();\n addRectPath(ctx, inflateRect(inner, inflateAmount));\n ctx.fillStyle = backgroundColor;\n ctx.fill();\n\n ctx.restore();\n }\n\n inRange(mouseX, mouseY, useFinalPosition) {\n return inRange(this, mouseX, mouseY, useFinalPosition);\n }\n\n inXRange(mouseX, useFinalPosition) {\n return inRange(this, mouseX, null, useFinalPosition);\n }\n\n inYRange(mouseY, useFinalPosition) {\n return inRange(this, null, mouseY, useFinalPosition);\n }\n\n getCenterPoint(useFinalPosition) {\n const {x, y, base, horizontal} = /** @type {BarProps} */ (this.getProps(['x', 'y', 'base', 'horizontal'], useFinalPosition));\n return {\n x: horizontal ? (x + base) / 2 : x,\n y: horizontal ? y : (y + base) / 2\n };\n }\n\n getRange(axis) {\n return axis === 'x' ? this.width / 2 : this.height / 2;\n }\n}\n","import Scale from '../core/core.scale.js';\nimport {isNullOrUndef, valueOrDefault, _limitValue} from '../helpers/index.js';\n\nconst addIfString = (labels, raw, index, addedLabels) => {\n if (typeof raw === 'string') {\n index = labels.push(raw) - 1;\n addedLabels.unshift({index, label: raw});\n } else if (isNaN(raw)) {\n index = null;\n }\n return index;\n};\n\nfunction findOrAddLabel(labels, raw, index, addedLabels) {\n const first = labels.indexOf(raw);\n if (first === -1) {\n return addIfString(labels, raw, index, addedLabels);\n }\n const last = labels.lastIndexOf(raw);\n return first !== last ? index : first;\n}\n\nconst validIndex = (index, max) => index === null ? null : _limitValue(Math.round(index), 0, max);\n\nfunction _getLabelForValue(value) {\n const labels = this.getLabels();\n\n if (value >= 0 && value < labels.length) {\n return labels[value];\n }\n return value;\n}\n\nexport default class CategoryScale extends Scale {\n\n static id = 'category';\n\n /**\n * @type {any}\n */\n static defaults = {\n ticks: {\n callback: _getLabelForValue\n }\n };\n\n constructor(cfg) {\n super(cfg);\n\n /** @type {number} */\n this._startValue = undefined;\n this._valueRange = 0;\n this._addedLabels = [];\n }\n\n init(scaleOptions) {\n const added = this._addedLabels;\n if (added.length) {\n const labels = this.getLabels();\n for (const {index, label} of added) {\n if (labels[index] === label) {\n labels.splice(index, 1);\n }\n }\n this._addedLabels = [];\n }\n super.init(scaleOptions);\n }\n\n parse(raw, index) {\n if (isNullOrUndef(raw)) {\n return null;\n }\n const labels = this.getLabels();\n index = isFinite(index) && labels[index] === raw ? index\n : findOrAddLabel(labels, raw, valueOrDefault(index, raw), this._addedLabels);\n return validIndex(index, labels.length - 1);\n }\n\n determineDataLimits() {\n const {minDefined, maxDefined} = this.getUserBounds();\n let {min, max} = this.getMinMax(true);\n\n if (this.options.bounds === 'ticks') {\n if (!minDefined) {\n min = 0;\n }\n if (!maxDefined) {\n max = this.getLabels().length - 1;\n }\n }\n\n this.min = min;\n this.max = max;\n }\n\n buildTicks() {\n const min = this.min;\n const max = this.max;\n const offset = this.options.offset;\n const ticks = [];\n let labels = this.getLabels();\n\n // If we are viewing some subset of labels, slice the original array\n labels = (min === 0 && max === labels.length - 1) ? labels : labels.slice(min, max + 1);\n\n this._valueRange = Math.max(labels.length - (offset ? 0 : 1), 1);\n this._startValue = this.min - (offset ? 0.5 : 0);\n\n for (let value = min; value <= max; value++) {\n ticks.push({value});\n }\n return ticks;\n }\n\n getLabelForValue(value) {\n return _getLabelForValue.call(this, value);\n }\n\n /**\n\t * @protected\n\t */\n configure() {\n super.configure();\n\n if (!this.isHorizontal()) {\n // For backward compatibility, vertical category scale reverse is inverted.\n this._reversePixels = !this._reversePixels;\n }\n }\n\n // Used to get data value locations. Value can either be an index or a numerical value\n getPixelForValue(value) {\n if (typeof value !== 'number') {\n value = this.parse(value);\n }\n\n return value === null ? NaN : this.getPixelForDecimal((value - this._startValue) / this._valueRange);\n }\n\n // Must override base implementation because it calls getPixelForValue\n // and category scale can have duplicate values\n getPixelForTick(index) {\n const ticks = this.ticks;\n if (index < 0 || index > ticks.length - 1) {\n return null;\n }\n return this.getPixelForValue(ticks[index].value);\n }\n\n getValueForPixel(pixel) {\n return Math.round(this._startValue + this.getDecimalForPixel(pixel) * this._valueRange);\n }\n\n getBasePixel() {\n return this.bottom;\n }\n}\n","import {isNullOrUndef} from '../helpers/helpers.core.js';\nimport {almostEquals, almostWhole, niceNum, _decimalPlaces, _setMinAndMaxByKey, sign, toRadians} from '../helpers/helpers.math.js';\nimport Scale from '../core/core.scale.js';\nimport {formatNumber} from '../helpers/helpers.intl.js';\n\n/**\n * Generate a set of linear ticks for an axis\n * 1. If generationOptions.min, generationOptions.max, and generationOptions.step are defined:\n * if (max - min) / step is an integer, ticks are generated as [min, min + step, ..., max]\n * Note that the generationOptions.maxCount setting is respected in this scenario\n *\n * 2. If generationOptions.min, generationOptions.max, and generationOptions.count is defined\n * spacing = (max - min) / count\n * Ticks are generated as [min, min + spacing, ..., max]\n *\n * 3. If generationOptions.count is defined\n * spacing = (niceMax - niceMin) / count\n *\n * 4. Compute optimal spacing of ticks using niceNum algorithm\n *\n * @param generationOptions the options used to generate the ticks\n * @param dataRange the range of the data\n * @returns {object[]} array of tick objects\n */\nfunction generateTicks(generationOptions, dataRange) {\n const ticks = [];\n // To get a \"nice\" value for the tick spacing, we will use the appropriately named\n // \"nice number\" algorithm. See https://stackoverflow.com/questions/8506881/nice-label-algorithm-for-charts-with-minimum-ticks\n // for details.\n\n const MIN_SPACING = 1e-14;\n const {bounds, step, min, max, precision, count, maxTicks, maxDigits, includeBounds} = generationOptions;\n const unit = step || 1;\n const maxSpaces = maxTicks - 1;\n const {min: rmin, max: rmax} = dataRange;\n const minDefined = !isNullOrUndef(min);\n const maxDefined = !isNullOrUndef(max);\n const countDefined = !isNullOrUndef(count);\n const minSpacing = (rmax - rmin) / (maxDigits + 1);\n let spacing = niceNum((rmax - rmin) / maxSpaces / unit) * unit;\n let factor, niceMin, niceMax, numSpaces;\n\n // Beyond MIN_SPACING floating point numbers being to lose precision\n // such that we can't do the math necessary to generate ticks\n if (spacing < MIN_SPACING && !minDefined && !maxDefined) {\n return [{value: rmin}, {value: rmax}];\n }\n\n numSpaces = Math.ceil(rmax / spacing) - Math.floor(rmin / spacing);\n if (numSpaces > maxSpaces) {\n // If the calculated num of spaces exceeds maxNumSpaces, recalculate it\n spacing = niceNum(numSpaces * spacing / maxSpaces / unit) * unit;\n }\n\n if (!isNullOrUndef(precision)) {\n // If the user specified a precision, round to that number of decimal places\n factor = Math.pow(10, precision);\n spacing = Math.ceil(spacing * factor) / factor;\n }\n\n if (bounds === 'ticks') {\n niceMin = Math.floor(rmin / spacing) * spacing;\n niceMax = Math.ceil(rmax / spacing) * spacing;\n } else {\n niceMin = rmin;\n niceMax = rmax;\n }\n\n if (minDefined && maxDefined && step && almostWhole((max - min) / step, spacing / 1000)) {\n // Case 1: If min, max and stepSize are set and they make an evenly spaced scale use it.\n // spacing = step;\n // numSpaces = (max - min) / spacing;\n // Note that we round here to handle the case where almostWhole translated an FP error\n numSpaces = Math.round(Math.min((max - min) / spacing, maxTicks));\n spacing = (max - min) / numSpaces;\n niceMin = min;\n niceMax = max;\n } else if (countDefined) {\n // Cases 2 & 3, we have a count specified. Handle optional user defined edges to the range.\n // Sometimes these are no-ops, but it makes the code a lot clearer\n // and when a user defined range is specified, we want the correct ticks\n niceMin = minDefined ? min : niceMin;\n niceMax = maxDefined ? max : niceMax;\n numSpaces = count - 1;\n spacing = (niceMax - niceMin) / numSpaces;\n } else {\n // Case 4\n numSpaces = (niceMax - niceMin) / spacing;\n\n // If very close to our rounded value, use it.\n if (almostEquals(numSpaces, Math.round(numSpaces), spacing / 1000)) {\n numSpaces = Math.round(numSpaces);\n } else {\n numSpaces = Math.ceil(numSpaces);\n }\n }\n\n // The spacing will have changed in cases 1, 2, and 3 so the factor cannot be computed\n // until this point\n const decimalPlaces = Math.max(\n _decimalPlaces(spacing),\n _decimalPlaces(niceMin)\n );\n factor = Math.pow(10, isNullOrUndef(precision) ? decimalPlaces : precision);\n niceMin = Math.round(niceMin * factor) / factor;\n niceMax = Math.round(niceMax * factor) / factor;\n\n let j = 0;\n if (minDefined) {\n if (includeBounds && niceMin !== min) {\n ticks.push({value: min});\n\n if (niceMin < min) {\n j++; // Skip niceMin\n }\n // If the next nice tick is close to min, skip it\n if (almostEquals(Math.round((niceMin + j * spacing) * factor) / factor, min, relativeLabelSize(min, minSpacing, generationOptions))) {\n j++;\n }\n } else if (niceMin < min) {\n j++;\n }\n }\n\n for (; j < numSpaces; ++j) {\n ticks.push({value: Math.round((niceMin + j * spacing) * factor) / factor});\n }\n\n if (maxDefined && includeBounds && niceMax !== max) {\n // If the previous tick is too close to max, replace it with max, else add max\n if (ticks.length && almostEquals(ticks[ticks.length - 1].value, max, relativeLabelSize(max, minSpacing, generationOptions))) {\n ticks[ticks.length - 1].value = max;\n } else {\n ticks.push({value: max});\n }\n } else if (!maxDefined || niceMax === max) {\n ticks.push({value: niceMax});\n }\n\n return ticks;\n}\n\nfunction relativeLabelSize(value, minSpacing, {horizontal, minRotation}) {\n const rad = toRadians(minRotation);\n const ratio = (horizontal ? Math.sin(rad) : Math.cos(rad)) || 0.001;\n const length = 0.75 * minSpacing * ('' + value).length;\n return Math.min(minSpacing / ratio, length);\n}\n\nexport default class LinearScaleBase extends Scale {\n\n constructor(cfg) {\n super(cfg);\n\n /** @type {number} */\n this.start = undefined;\n /** @type {number} */\n this.end = undefined;\n /** @type {number} */\n this._startValue = undefined;\n /** @type {number} */\n this._endValue = undefined;\n this._valueRange = 0;\n }\n\n parse(raw, index) { // eslint-disable-line no-unused-vars\n if (isNullOrUndef(raw)) {\n return null;\n }\n if ((typeof raw === 'number' || raw instanceof Number) && !isFinite(+raw)) {\n return null;\n }\n\n return +raw;\n }\n\n handleTickRangeOptions() {\n const {beginAtZero} = this.options;\n const {minDefined, maxDefined} = this.getUserBounds();\n let {min, max} = this;\n\n const setMin = v => (min = minDefined ? min : v);\n const setMax = v => (max = maxDefined ? max : v);\n\n if (beginAtZero) {\n const minSign = sign(min);\n const maxSign = sign(max);\n\n if (minSign < 0 && maxSign < 0) {\n setMax(0);\n } else if (minSign > 0 && maxSign > 0) {\n setMin(0);\n }\n }\n\n if (min === max) {\n let offset = max === 0 ? 1 : Math.abs(max * 0.05);\n\n setMax(max + offset);\n\n if (!beginAtZero) {\n setMin(min - offset);\n }\n }\n this.min = min;\n this.max = max;\n }\n\n getTickLimit() {\n const tickOpts = this.options.ticks;\n // eslint-disable-next-line prefer-const\n let {maxTicksLimit, stepSize} = tickOpts;\n let maxTicks;\n\n if (stepSize) {\n maxTicks = Math.ceil(this.max / stepSize) - Math.floor(this.min / stepSize) + 1;\n if (maxTicks > 1000) {\n console.warn(`scales.${this.id}.ticks.stepSize: ${stepSize} would result generating up to ${maxTicks} ticks. Limiting to 1000.`);\n maxTicks = 1000;\n }\n } else {\n maxTicks = this.computeTickLimit();\n maxTicksLimit = maxTicksLimit || 11;\n }\n\n if (maxTicksLimit) {\n maxTicks = Math.min(maxTicksLimit, maxTicks);\n }\n\n return maxTicks;\n }\n\n /**\n\t * @protected\n\t */\n computeTickLimit() {\n return Number.POSITIVE_INFINITY;\n }\n\n buildTicks() {\n const opts = this.options;\n const tickOpts = opts.ticks;\n\n // Figure out what the max number of ticks we can support it is based on the size of\n // the axis area. For now, we say that the minimum tick spacing in pixels must be 40\n // We also limit the maximum number of ticks to 11 which gives a nice 10 squares on\n // the graph. Make sure we always have at least 2 ticks\n let maxTicks = this.getTickLimit();\n maxTicks = Math.max(2, maxTicks);\n\n const numericGeneratorOptions = {\n maxTicks,\n bounds: opts.bounds,\n min: opts.min,\n max: opts.max,\n precision: tickOpts.precision,\n step: tickOpts.stepSize,\n count: tickOpts.count,\n maxDigits: this._maxDigits(),\n horizontal: this.isHorizontal(),\n minRotation: tickOpts.minRotation || 0,\n includeBounds: tickOpts.includeBounds !== false\n };\n const dataRange = this._range || this;\n const ticks = generateTicks(numericGeneratorOptions, dataRange);\n\n // At this point, we need to update our max and min given the tick values,\n // since we probably have expanded the range of the scale\n if (opts.bounds === 'ticks') {\n _setMinAndMaxByKey(ticks, this, 'value');\n }\n\n if (opts.reverse) {\n ticks.reverse();\n\n this.start = this.max;\n this.end = this.min;\n } else {\n this.start = this.min;\n this.end = this.max;\n }\n\n return ticks;\n }\n\n /**\n\t * @protected\n\t */\n configure() {\n const ticks = this.ticks;\n let start = this.min;\n let end = this.max;\n\n super.configure();\n\n if (this.options.offset && ticks.length) {\n const offset = (end - start) / Math.max(ticks.length - 1, 1) / 2;\n start -= offset;\n end += offset;\n }\n this._startValue = start;\n this._endValue = end;\n this._valueRange = end - start;\n }\n\n getLabelForValue(value) {\n return formatNumber(value, this.chart.options.locale, this.options.ticks.format);\n }\n}\n","import {isFinite} from '../helpers/helpers.core.js';\nimport LinearScaleBase from './scale.linearbase.js';\nimport Ticks from '../core/core.ticks.js';\nimport {toRadians} from '../helpers/index.js';\n\nexport default class LinearScale extends LinearScaleBase {\n\n static id = 'linear';\n\n /**\n * @type {any}\n */\n static defaults = {\n ticks: {\n callback: Ticks.formatters.numeric\n }\n };\n\n\n determineDataLimits() {\n const {min, max} = this.getMinMax(true);\n\n this.min = isFinite(min) ? min : 0;\n this.max = isFinite(max) ? max : 1;\n\n // Common base implementation to handle min, max, beginAtZero\n this.handleTickRangeOptions();\n }\n\n /**\n\t * Returns the maximum number of ticks based on the scale dimension\n\t * @protected\n \t */\n computeTickLimit() {\n const horizontal = this.isHorizontal();\n const length = horizontal ? this.width : this.height;\n const minRotation = toRadians(this.options.ticks.minRotation);\n const ratio = (horizontal ? Math.sin(minRotation) : Math.cos(minRotation)) || 0.001;\n const tickFont = this._resolveTickFontOptions(0);\n return Math.ceil(length / Math.min(40, tickFont.lineHeight / ratio));\n }\n\n // Utils\n getPixelForValue(value) {\n return value === null ? NaN : this.getPixelForDecimal((value - this._startValue) / this._valueRange);\n }\n\n getValueForPixel(pixel) {\n return this._startValue + this.getDecimalForPixel(pixel) * this._valueRange;\n }\n}\n","import {finiteOrDefault, isFinite} from '../helpers/helpers.core.js';\nimport {formatNumber} from '../helpers/helpers.intl.js';\nimport {_setMinAndMaxByKey, log10} from '../helpers/helpers.math.js';\nimport Scale from '../core/core.scale.js';\nimport LinearScaleBase from './scale.linearbase.js';\nimport Ticks from '../core/core.ticks.js';\n\nconst log10Floor = v => Math.floor(log10(v));\nconst changeExponent = (v, m) => Math.pow(10, log10Floor(v) + m);\n\nfunction isMajor(tickVal) {\n const remain = tickVal / (Math.pow(10, log10Floor(tickVal)));\n return remain === 1;\n}\n\nfunction steps(min, max, rangeExp) {\n const rangeStep = Math.pow(10, rangeExp);\n const start = Math.floor(min / rangeStep);\n const end = Math.ceil(max / rangeStep);\n return end - start;\n}\n\nfunction startExp(min, max) {\n const range = max - min;\n let rangeExp = log10Floor(range);\n while (steps(min, max, rangeExp) > 10) {\n rangeExp++;\n }\n while (steps(min, max, rangeExp) < 10) {\n rangeExp--;\n }\n return Math.min(rangeExp, log10Floor(min));\n}\n\n\n/**\n * Generate a set of logarithmic ticks\n * @param generationOptions the options used to generate the ticks\n * @param dataRange the range of the data\n * @returns {object[]} array of tick objects\n */\nfunction generateTicks(generationOptions, {min, max}) {\n min = finiteOrDefault(generationOptions.min, min);\n const ticks = [];\n const minExp = log10Floor(min);\n let exp = startExp(min, max);\n let precision = exp < 0 ? Math.pow(10, Math.abs(exp)) : 1;\n const stepSize = Math.pow(10, exp);\n const base = minExp > exp ? Math.pow(10, minExp) : 0;\n const start = Math.round((min - base) * precision) / precision;\n const offset = Math.floor((min - base) / stepSize / 10) * stepSize * 10;\n let significand = Math.floor((start - offset) / Math.pow(10, exp));\n let value = finiteOrDefault(generationOptions.min, Math.round((base + offset + significand * Math.pow(10, exp)) * precision) / precision);\n while (value < max) {\n ticks.push({value, major: isMajor(value), significand});\n if (significand >= 10) {\n significand = significand < 15 ? 15 : 20;\n } else {\n significand++;\n }\n if (significand >= 20) {\n exp++;\n significand = 2;\n precision = exp >= 0 ? 1 : precision;\n }\n value = Math.round((base + offset + significand * Math.pow(10, exp)) * precision) / precision;\n }\n const lastTick = finiteOrDefault(generationOptions.max, value);\n ticks.push({value: lastTick, major: isMajor(lastTick), significand});\n\n return ticks;\n}\n\nexport default class LogarithmicScale extends Scale {\n\n static id = 'logarithmic';\n\n /**\n * @type {any}\n */\n static defaults = {\n ticks: {\n callback: Ticks.formatters.logarithmic,\n major: {\n enabled: true\n }\n }\n };\n\n\n constructor(cfg) {\n super(cfg);\n\n /** @type {number} */\n this.start = undefined;\n /** @type {number} */\n this.end = undefined;\n /** @type {number} */\n this._startValue = undefined;\n this._valueRange = 0;\n }\n\n parse(raw, index) {\n const value = LinearScaleBase.prototype.parse.apply(this, [raw, index]);\n if (value === 0) {\n this._zero = true;\n return undefined;\n }\n return isFinite(value) && value > 0 ? value : null;\n }\n\n determineDataLimits() {\n const {min, max} = this.getMinMax(true);\n\n this.min = isFinite(min) ? Math.max(0, min) : null;\n this.max = isFinite(max) ? Math.max(0, max) : null;\n\n if (this.options.beginAtZero) {\n this._zero = true;\n }\n\n // if data has `0` in it or `beginAtZero` is true, min (non zero) value is at bottom\n // of scale, and it does not equal suggestedMin, lower the min bound by one exp.\n if (this._zero && this.min !== this._suggestedMin && !isFinite(this._userMin)) {\n this.min = min === changeExponent(this.min, 0) ? changeExponent(this.min, -1) : changeExponent(this.min, 0);\n }\n\n this.handleTickRangeOptions();\n }\n\n handleTickRangeOptions() {\n const {minDefined, maxDefined} = this.getUserBounds();\n let min = this.min;\n let max = this.max;\n\n const setMin = v => (min = minDefined ? min : v);\n const setMax = v => (max = maxDefined ? max : v);\n\n if (min === max) {\n if (min <= 0) { // includes null\n setMin(1);\n setMax(10);\n } else {\n setMin(changeExponent(min, -1));\n setMax(changeExponent(max, +1));\n }\n }\n if (min <= 0) {\n setMin(changeExponent(max, -1));\n }\n if (max <= 0) {\n\n setMax(changeExponent(min, +1));\n }\n\n this.min = min;\n this.max = max;\n }\n\n buildTicks() {\n const opts = this.options;\n\n const generationOptions = {\n min: this._userMin,\n max: this._userMax\n };\n const ticks = generateTicks(generationOptions, this);\n\n // At this point, we need to update our max and min given the tick values,\n // since we probably have expanded the range of the scale\n if (opts.bounds === 'ticks') {\n _setMinAndMaxByKey(ticks, this, 'value');\n }\n\n if (opts.reverse) {\n ticks.reverse();\n\n this.start = this.max;\n this.end = this.min;\n } else {\n this.start = this.min;\n this.end = this.max;\n }\n\n return ticks;\n }\n\n /**\n\t * @param {number} value\n\t * @return {string}\n\t */\n getLabelForValue(value) {\n return value === undefined\n ? '0'\n : formatNumber(value, this.chart.options.locale, this.options.ticks.format);\n }\n\n /**\n\t * @protected\n\t */\n configure() {\n const start = this.min;\n\n super.configure();\n\n this._startValue = log10(start);\n this._valueRange = log10(this.max) - log10(start);\n }\n\n getPixelForValue(value) {\n if (value === undefined || value === 0) {\n value = this.min;\n }\n if (value === null || isNaN(value)) {\n return NaN;\n }\n return this.getPixelForDecimal(value === this.min\n ? 0\n : (log10(value) - this._startValue) / this._valueRange);\n }\n\n getValueForPixel(pixel) {\n const decimal = this.getDecimalForPixel(pixel);\n return Math.pow(10, this._startValue + decimal * this._valueRange);\n }\n}\n","import defaults from '../core/core.defaults.js';\nimport {_longestText, addRoundedRectPath, renderText} from '../helpers/helpers.canvas.js';\nimport {HALF_PI, TAU, toDegrees, toRadians, _normalizeAngle, PI} from '../helpers/helpers.math.js';\nimport LinearScaleBase from './scale.linearbase.js';\nimport Ticks from '../core/core.ticks.js';\nimport {valueOrDefault, isArray, isFinite, callback as callCallback, isNullOrUndef} from '../helpers/helpers.core.js';\nimport {createContext, toFont, toPadding, toTRBLCorners} from '../helpers/helpers.options.js';\n\nfunction getTickBackdropHeight(opts) {\n const tickOpts = opts.ticks;\n\n if (tickOpts.display && opts.display) {\n const padding = toPadding(tickOpts.backdropPadding);\n return valueOrDefault(tickOpts.font && tickOpts.font.size, defaults.font.size) + padding.height;\n }\n return 0;\n}\n\nfunction measureLabelSize(ctx, font, label) {\n label = isArray(label) ? label : [label];\n return {\n w: _longestText(ctx, font.string, label),\n h: label.length * font.lineHeight\n };\n}\n\nfunction determineLimits(angle, pos, size, min, max) {\n if (angle === min || angle === max) {\n return {\n start: pos - (size / 2),\n end: pos + (size / 2)\n };\n } else if (angle < min || angle > max) {\n return {\n start: pos - size,\n end: pos\n };\n }\n\n return {\n start: pos,\n end: pos + size\n };\n}\n\n/**\n * Helper function to fit a radial linear scale with point labels\n */\nfunction fitWithPointLabels(scale) {\n\n // Right, this is really confusing and there is a lot of maths going on here\n // The gist of the problem is here: https://gist.github.com/nnnick/696cc9c55f4b0beb8fe9\n //\n // Reaction: https://dl.dropboxusercontent.com/u/34601363/toomuchscience.gif\n //\n // Solution:\n //\n // We assume the radius of the polygon is half the size of the canvas at first\n // at each index we check if the text overlaps.\n //\n // Where it does, we store that angle and that index.\n //\n // After finding the largest index and angle we calculate how much we need to remove\n // from the shape radius to move the point inwards by that x.\n //\n // We average the left and right distances to get the maximum shape radius that can fit in the box\n // along with labels.\n //\n // Once we have that, we can find the centre point for the chart, by taking the x text protrusion\n // on each side, removing that from the size, halving it and adding the left x protrusion width.\n //\n // This will mean we have a shape fitted to the canvas, as large as it can be with the labels\n // and position it in the most space efficient manner\n //\n // https://dl.dropboxusercontent.com/u/34601363/yeahscience.gif\n\n // Get maximum radius of the polygon. Either half the height (minus the text width) or half the width.\n // Use this to calculate the offset + change. - Make sure L/R protrusion is at least 0 to stop issues with centre points\n const orig = {\n l: scale.left + scale._padding.left,\n r: scale.right - scale._padding.right,\n t: scale.top + scale._padding.top,\n b: scale.bottom - scale._padding.bottom\n };\n const limits = Object.assign({}, orig);\n const labelSizes = [];\n const padding = [];\n const valueCount = scale._pointLabels.length;\n const pointLabelOpts = scale.options.pointLabels;\n const additionalAngle = pointLabelOpts.centerPointLabels ? PI / valueCount : 0;\n\n for (let i = 0; i < valueCount; i++) {\n const opts = pointLabelOpts.setContext(scale.getPointLabelContext(i));\n padding[i] = opts.padding;\n const pointPosition = scale.getPointPosition(i, scale.drawingArea + padding[i], additionalAngle);\n const plFont = toFont(opts.font);\n const textSize = measureLabelSize(scale.ctx, plFont, scale._pointLabels[i]);\n labelSizes[i] = textSize;\n\n const angleRadians = _normalizeAngle(scale.getIndexAngle(i) + additionalAngle);\n const angle = Math.round(toDegrees(angleRadians));\n const hLimits = determineLimits(angle, pointPosition.x, textSize.w, 0, 180);\n const vLimits = determineLimits(angle, pointPosition.y, textSize.h, 90, 270);\n updateLimits(limits, orig, angleRadians, hLimits, vLimits);\n }\n\n scale.setCenterPoint(\n orig.l - limits.l,\n limits.r - orig.r,\n orig.t - limits.t,\n limits.b - orig.b\n );\n\n // Now that text size is determined, compute the full positions\n scale._pointLabelItems = buildPointLabelItems(scale, labelSizes, padding);\n}\n\nfunction updateLimits(limits, orig, angle, hLimits, vLimits) {\n const sin = Math.abs(Math.sin(angle));\n const cos = Math.abs(Math.cos(angle));\n let x = 0;\n let y = 0;\n if (hLimits.start < orig.l) {\n x = (orig.l - hLimits.start) / sin;\n limits.l = Math.min(limits.l, orig.l - x);\n } else if (hLimits.end > orig.r) {\n x = (hLimits.end - orig.r) / sin;\n limits.r = Math.max(limits.r, orig.r + x);\n }\n if (vLimits.start < orig.t) {\n y = (orig.t - vLimits.start) / cos;\n limits.t = Math.min(limits.t, orig.t - y);\n } else if (vLimits.end > orig.b) {\n y = (vLimits.end - orig.b) / cos;\n limits.b = Math.max(limits.b, orig.b + y);\n }\n}\n\nfunction buildPointLabelItems(scale, labelSizes, padding) {\n const items = [];\n const valueCount = scale._pointLabels.length;\n const opts = scale.options;\n const extra = getTickBackdropHeight(opts) / 2;\n const outerDistance = scale.drawingArea;\n const additionalAngle = opts.pointLabels.centerPointLabels ? PI / valueCount : 0;\n\n for (let i = 0; i < valueCount; i++) {\n const pointLabelPosition = scale.getPointPosition(i, outerDistance + extra + padding[i], additionalAngle);\n const angle = Math.round(toDegrees(_normalizeAngle(pointLabelPosition.angle + HALF_PI)));\n const size = labelSizes[i];\n const y = yForAngle(pointLabelPosition.y, size.h, angle);\n const textAlign = getTextAlignForAngle(angle);\n const left = leftForTextAlign(pointLabelPosition.x, size.w, textAlign);\n\n items.push({\n // Text position\n x: pointLabelPosition.x,\n y,\n\n // Text rendering data\n textAlign,\n\n // Bounding box\n left,\n top: y,\n right: left + size.w,\n bottom: y + size.h\n });\n }\n return items;\n}\n\nfunction getTextAlignForAngle(angle) {\n if (angle === 0 || angle === 180) {\n return 'center';\n } else if (angle < 180) {\n return 'left';\n }\n\n return 'right';\n}\n\nfunction leftForTextAlign(x, w, align) {\n if (align === 'right') {\n x -= w;\n } else if (align === 'center') {\n x -= (w / 2);\n }\n return x;\n}\n\nfunction yForAngle(y, h, angle) {\n if (angle === 90 || angle === 270) {\n y -= (h / 2);\n } else if (angle > 270 || angle < 90) {\n y -= h;\n }\n return y;\n}\n\nfunction drawPointLabels(scale, labelCount) {\n const {ctx, options: {pointLabels}} = scale;\n\n for (let i = labelCount - 1; i >= 0; i--) {\n const optsAtIndex = pointLabels.setContext(scale.getPointLabelContext(i));\n const plFont = toFont(optsAtIndex.font);\n const {x, y, textAlign, left, top, right, bottom} = scale._pointLabelItems[i];\n const {backdropColor} = optsAtIndex;\n\n if (!isNullOrUndef(backdropColor)) {\n const borderRadius = toTRBLCorners(optsAtIndex.borderRadius);\n const padding = toPadding(optsAtIndex.backdropPadding);\n ctx.fillStyle = backdropColor;\n\n const backdropLeft = left - padding.left;\n const backdropTop = top - padding.top;\n const backdropWidth = right - left + padding.width;\n const backdropHeight = bottom - top + padding.height;\n\n if (Object.values(borderRadius).some(v => v !== 0)) {\n ctx.beginPath();\n addRoundedRectPath(ctx, {\n x: backdropLeft,\n y: backdropTop,\n w: backdropWidth,\n h: backdropHeight,\n radius: borderRadius,\n });\n ctx.fill();\n } else {\n ctx.fillRect(backdropLeft, backdropTop, backdropWidth, backdropHeight);\n }\n }\n\n renderText(\n ctx,\n scale._pointLabels[i],\n x,\n y + (plFont.lineHeight / 2),\n plFont,\n {\n color: optsAtIndex.color,\n textAlign: textAlign,\n textBaseline: 'middle'\n }\n );\n }\n}\n\nfunction pathRadiusLine(scale, radius, circular, labelCount) {\n const {ctx} = scale;\n if (circular) {\n // Draw circular arcs between the points\n ctx.arc(scale.xCenter, scale.yCenter, radius, 0, TAU);\n } else {\n // Draw straight lines connecting each index\n let pointPosition = scale.getPointPosition(0, radius);\n ctx.moveTo(pointPosition.x, pointPosition.y);\n\n for (let i = 1; i < labelCount; i++) {\n pointPosition = scale.getPointPosition(i, radius);\n ctx.lineTo(pointPosition.x, pointPosition.y);\n }\n }\n}\n\nfunction drawRadiusLine(scale, gridLineOpts, radius, labelCount, borderOpts) {\n const ctx = scale.ctx;\n const circular = gridLineOpts.circular;\n\n const {color, lineWidth} = gridLineOpts;\n\n if ((!circular && !labelCount) || !color || !lineWidth || radius < 0) {\n return;\n }\n\n ctx.save();\n ctx.strokeStyle = color;\n ctx.lineWidth = lineWidth;\n ctx.setLineDash(borderOpts.dash);\n ctx.lineDashOffset = borderOpts.dashOffset;\n\n ctx.beginPath();\n pathRadiusLine(scale, radius, circular, labelCount);\n ctx.closePath();\n ctx.stroke();\n ctx.restore();\n}\n\nfunction createPointLabelContext(parent, index, label) {\n return createContext(parent, {\n label,\n index,\n type: 'pointLabel'\n });\n}\n\nexport default class RadialLinearScale extends LinearScaleBase {\n\n static id = 'radialLinear';\n\n /**\n * @type {any}\n */\n static defaults = {\n display: true,\n\n // Boolean - Whether to animate scaling the chart from the centre\n animate: true,\n position: 'chartArea',\n\n angleLines: {\n display: true,\n lineWidth: 1,\n borderDash: [],\n borderDashOffset: 0.0\n },\n\n grid: {\n circular: false\n },\n\n startAngle: 0,\n\n // label settings\n ticks: {\n // Boolean - Show a backdrop to the scale label\n showLabelBackdrop: true,\n\n callback: Ticks.formatters.numeric\n },\n\n pointLabels: {\n backdropColor: undefined,\n\n // Number - The backdrop padding above & below the label in pixels\n backdropPadding: 2,\n\n // Boolean - if true, show point labels\n display: true,\n\n // Number - Point label font size in pixels\n font: {\n size: 10\n },\n\n // Function - Used to convert point labels\n callback(label) {\n return label;\n },\n\n // Number - Additionl padding between scale and pointLabel\n padding: 5,\n\n // Boolean - if true, center point labels to slices in polar chart\n centerPointLabels: false\n }\n };\n\n static defaultRoutes = {\n 'angleLines.color': 'borderColor',\n 'pointLabels.color': 'color',\n 'ticks.color': 'color'\n };\n\n static descriptors = {\n angleLines: {\n _fallback: 'grid'\n }\n };\n\n constructor(cfg) {\n super(cfg);\n\n /** @type {number} */\n this.xCenter = undefined;\n /** @type {number} */\n this.yCenter = undefined;\n /** @type {number} */\n this.drawingArea = undefined;\n /** @type {string[]} */\n this._pointLabels = [];\n this._pointLabelItems = [];\n }\n\n setDimensions() {\n // Set the unconstrained dimension before label rotation\n const padding = this._padding = toPadding(getTickBackdropHeight(this.options) / 2);\n const w = this.width = this.maxWidth - padding.width;\n const h = this.height = this.maxHeight - padding.height;\n this.xCenter = Math.floor(this.left + w / 2 + padding.left);\n this.yCenter = Math.floor(this.top + h / 2 + padding.top);\n this.drawingArea = Math.floor(Math.min(w, h) / 2);\n }\n\n determineDataLimits() {\n const {min, max} = this.getMinMax(false);\n\n this.min = isFinite(min) && !isNaN(min) ? min : 0;\n this.max = isFinite(max) && !isNaN(max) ? max : 0;\n\n // Common base implementation to handle min, max, beginAtZero\n this.handleTickRangeOptions();\n }\n\n /**\n\t * Returns the maximum number of ticks based on the scale dimension\n\t * @protected\n\t */\n computeTickLimit() {\n return Math.ceil(this.drawingArea / getTickBackdropHeight(this.options));\n }\n\n generateTickLabels(ticks) {\n LinearScaleBase.prototype.generateTickLabels.call(this, ticks);\n\n // Point labels\n this._pointLabels = this.getLabels()\n .map((value, index) => {\n const label = callCallback(this.options.pointLabels.callback, [value, index], this);\n return label || label === 0 ? label : '';\n })\n .filter((v, i) => this.chart.getDataVisibility(i));\n }\n\n fit() {\n const opts = this.options;\n\n if (opts.display && opts.pointLabels.display) {\n fitWithPointLabels(this);\n } else {\n this.setCenterPoint(0, 0, 0, 0);\n }\n }\n\n setCenterPoint(leftMovement, rightMovement, topMovement, bottomMovement) {\n this.xCenter += Math.floor((leftMovement - rightMovement) / 2);\n this.yCenter += Math.floor((topMovement - bottomMovement) / 2);\n this.drawingArea -= Math.min(this.drawingArea / 2, Math.max(leftMovement, rightMovement, topMovement, bottomMovement));\n }\n\n getIndexAngle(index) {\n const angleMultiplier = TAU / (this._pointLabels.length || 1);\n const startAngle = this.options.startAngle || 0;\n\n return _normalizeAngle(index * angleMultiplier + toRadians(startAngle));\n }\n\n getDistanceFromCenterForValue(value) {\n if (isNullOrUndef(value)) {\n return NaN;\n }\n\n // Take into account half font size + the yPadding of the top value\n const scalingFactor = this.drawingArea / (this.max - this.min);\n if (this.options.reverse) {\n return (this.max - value) * scalingFactor;\n }\n return (value - this.min) * scalingFactor;\n }\n\n getValueForDistanceFromCenter(distance) {\n if (isNullOrUndef(distance)) {\n return NaN;\n }\n\n const scaledDistance = distance / (this.drawingArea / (this.max - this.min));\n return this.options.reverse ? this.max - scaledDistance : this.min + scaledDistance;\n }\n\n getPointLabelContext(index) {\n const pointLabels = this._pointLabels || [];\n\n if (index >= 0 && index < pointLabels.length) {\n const pointLabel = pointLabels[index];\n return createPointLabelContext(this.getContext(), index, pointLabel);\n }\n }\n\n getPointPosition(index, distanceFromCenter, additionalAngle = 0) {\n const angle = this.getIndexAngle(index) - HALF_PI + additionalAngle;\n return {\n x: Math.cos(angle) * distanceFromCenter + this.xCenter,\n y: Math.sin(angle) * distanceFromCenter + this.yCenter,\n angle\n };\n }\n\n getPointPositionForValue(index, value) {\n return this.getPointPosition(index, this.getDistanceFromCenterForValue(value));\n }\n\n getBasePosition(index) {\n return this.getPointPositionForValue(index || 0, this.getBaseValue());\n }\n\n getPointLabelPosition(index) {\n const {left, top, right, bottom} = this._pointLabelItems[index];\n return {\n left,\n top,\n right,\n bottom,\n };\n }\n\n /**\n\t * @protected\n\t */\n drawBackground() {\n const {backgroundColor, grid: {circular}} = this.options;\n if (backgroundColor) {\n const ctx = this.ctx;\n ctx.save();\n ctx.beginPath();\n pathRadiusLine(this, this.getDistanceFromCenterForValue(this._endValue), circular, this._pointLabels.length);\n ctx.closePath();\n ctx.fillStyle = backgroundColor;\n ctx.fill();\n ctx.restore();\n }\n }\n\n /**\n\t * @protected\n\t */\n drawGrid() {\n const ctx = this.ctx;\n const opts = this.options;\n const {angleLines, grid, border} = opts;\n const labelCount = this._pointLabels.length;\n\n let i, offset, position;\n\n if (opts.pointLabels.display) {\n drawPointLabels(this, labelCount);\n }\n\n if (grid.display) {\n this.ticks.forEach((tick, index) => {\n if (index !== 0) {\n offset = this.getDistanceFromCenterForValue(tick.value);\n const context = this.getContext(index);\n const optsAtIndex = grid.setContext(context);\n const optsAtIndexBorder = border.setContext(context);\n\n drawRadiusLine(this, optsAtIndex, offset, labelCount, optsAtIndexBorder);\n }\n });\n }\n\n if (angleLines.display) {\n ctx.save();\n\n for (i = labelCount - 1; i >= 0; i--) {\n const optsAtIndex = angleLines.setContext(this.getPointLabelContext(i));\n const {color, lineWidth} = optsAtIndex;\n\n if (!lineWidth || !color) {\n continue;\n }\n\n ctx.lineWidth = lineWidth;\n ctx.strokeStyle = color;\n\n ctx.setLineDash(optsAtIndex.borderDash);\n ctx.lineDashOffset = optsAtIndex.borderDashOffset;\n\n offset = this.getDistanceFromCenterForValue(opts.ticks.reverse ? this.min : this.max);\n position = this.getPointPosition(i, offset);\n ctx.beginPath();\n ctx.moveTo(this.xCenter, this.yCenter);\n ctx.lineTo(position.x, position.y);\n ctx.stroke();\n }\n\n ctx.restore();\n }\n }\n\n /**\n\t * @protected\n\t */\n drawBorder() {}\n\n /**\n\t * @protected\n\t */\n drawLabels() {\n const ctx = this.ctx;\n const opts = this.options;\n const tickOpts = opts.ticks;\n\n if (!tickOpts.display) {\n return;\n }\n\n const startAngle = this.getIndexAngle(0);\n let offset, width;\n\n ctx.save();\n ctx.translate(this.xCenter, this.yCenter);\n ctx.rotate(startAngle);\n ctx.textAlign = 'center';\n ctx.textBaseline = 'middle';\n\n this.ticks.forEach((tick, index) => {\n if (index === 0 && !opts.reverse) {\n return;\n }\n\n const optsAtIndex = tickOpts.setContext(this.getContext(index));\n const tickFont = toFont(optsAtIndex.font);\n offset = this.getDistanceFromCenterForValue(this.ticks[index].value);\n\n if (optsAtIndex.showLabelBackdrop) {\n ctx.font = tickFont.string;\n width = ctx.measureText(tick.label).width;\n ctx.fillStyle = optsAtIndex.backdropColor;\n\n const padding = toPadding(optsAtIndex.backdropPadding);\n ctx.fillRect(\n -width / 2 - padding.left,\n -offset - tickFont.size / 2 - padding.top,\n width + padding.width,\n tickFont.size + padding.height\n );\n }\n\n renderText(ctx, tick.label, 0, -offset, tickFont, {\n color: optsAtIndex.color,\n });\n });\n\n ctx.restore();\n }\n\n /**\n\t * @protected\n\t */\n drawTitle() {}\n}\n","import adapters from '../core/core.adapters.js';\nimport {callback as call, isFinite, isNullOrUndef, mergeIf, valueOrDefault} from '../helpers/helpers.core.js';\nimport {toRadians, isNumber, _limitValue} from '../helpers/helpers.math.js';\nimport Scale from '../core/core.scale.js';\nimport {_arrayUnique, _filterBetween, _lookup} from '../helpers/helpers.collection.js';\n\n/**\n * @typedef { import('../core/core.adapters.js').TimeUnit } Unit\n * @typedef {{common: boolean, size: number, steps?: number}} Interval\n * @typedef { import('../core/core.adapters.js').DateAdapter } DateAdapter\n */\n\n/**\n * @type {Object}\n */\nconst INTERVALS = {\n millisecond: {common: true, size: 1, steps: 1000},\n second: {common: true, size: 1000, steps: 60},\n minute: {common: true, size: 60000, steps: 60},\n hour: {common: true, size: 3600000, steps: 24},\n day: {common: true, size: 86400000, steps: 30},\n week: {common: false, size: 604800000, steps: 4},\n month: {common: true, size: 2.628e9, steps: 12},\n quarter: {common: false, size: 7.884e9, steps: 4},\n year: {common: true, size: 3.154e10}\n};\n\n/**\n * @type {Unit[]}\n */\nconst UNITS = /** @type Unit[] */ /* #__PURE__ */ (Object.keys(INTERVALS));\n\n/**\n * @param {number} a\n * @param {number} b\n */\nfunction sorter(a, b) {\n return a - b;\n}\n\n/**\n * @param {TimeScale} scale\n * @param {*} input\n * @return {number}\n */\nfunction parse(scale, input) {\n if (isNullOrUndef(input)) {\n return null;\n }\n\n const adapter = scale._adapter;\n const {parser, round, isoWeekday} = scale._parseOpts;\n let value = input;\n\n if (typeof parser === 'function') {\n value = parser(value);\n }\n\n // Only parse if its not a timestamp already\n if (!isFinite(value)) {\n value = typeof parser === 'string'\n ? adapter.parse(value, /** @type {Unit} */ (parser))\n : adapter.parse(value);\n }\n\n if (value === null) {\n return null;\n }\n\n if (round) {\n value = round === 'week' && (isNumber(isoWeekday) || isoWeekday === true)\n ? adapter.startOf(value, 'isoWeek', isoWeekday)\n : adapter.startOf(value, round);\n }\n\n return +value;\n}\n\n/**\n * Figures out what unit results in an appropriate number of auto-generated ticks\n * @param {Unit} minUnit\n * @param {number} min\n * @param {number} max\n * @param {number} capacity\n * @return {object}\n */\nfunction determineUnitForAutoTicks(minUnit, min, max, capacity) {\n const ilen = UNITS.length;\n\n for (let i = UNITS.indexOf(minUnit); i < ilen - 1; ++i) {\n const interval = INTERVALS[UNITS[i]];\n const factor = interval.steps ? interval.steps : Number.MAX_SAFE_INTEGER;\n\n if (interval.common && Math.ceil((max - min) / (factor * interval.size)) <= capacity) {\n return UNITS[i];\n }\n }\n\n return UNITS[ilen - 1];\n}\n\n/**\n * Figures out what unit to format a set of ticks with\n * @param {TimeScale} scale\n * @param {number} numTicks\n * @param {Unit} minUnit\n * @param {number} min\n * @param {number} max\n * @return {Unit}\n */\nfunction determineUnitForFormatting(scale, numTicks, minUnit, min, max) {\n for (let i = UNITS.length - 1; i >= UNITS.indexOf(minUnit); i--) {\n const unit = UNITS[i];\n if (INTERVALS[unit].common && scale._adapter.diff(max, min, unit) >= numTicks - 1) {\n return unit;\n }\n }\n\n return UNITS[minUnit ? UNITS.indexOf(minUnit) : 0];\n}\n\n/**\n * @param {Unit} unit\n * @return {object}\n */\nfunction determineMajorUnit(unit) {\n for (let i = UNITS.indexOf(unit) + 1, ilen = UNITS.length; i < ilen; ++i) {\n if (INTERVALS[UNITS[i]].common) {\n return UNITS[i];\n }\n }\n}\n\n/**\n * @param {object} ticks\n * @param {number} time\n * @param {number[]} [timestamps] - if defined, snap to these timestamps\n */\nfunction addTick(ticks, time, timestamps) {\n if (!timestamps) {\n ticks[time] = true;\n } else if (timestamps.length) {\n const {lo, hi} = _lookup(timestamps, time);\n const timestamp = timestamps[lo] >= time ? timestamps[lo] : timestamps[hi];\n ticks[timestamp] = true;\n }\n}\n\n/**\n * @param {TimeScale} scale\n * @param {object[]} ticks\n * @param {object} map\n * @param {Unit} majorUnit\n * @return {object[]}\n */\nfunction setMajorTicks(scale, ticks, map, majorUnit) {\n const adapter = scale._adapter;\n const first = +adapter.startOf(ticks[0].value, majorUnit);\n const last = ticks[ticks.length - 1].value;\n let major, index;\n\n for (major = first; major <= last; major = +adapter.add(major, 1, majorUnit)) {\n index = map[major];\n if (index >= 0) {\n ticks[index].major = true;\n }\n }\n return ticks;\n}\n\n/**\n * @param {TimeScale} scale\n * @param {number[]} values\n * @param {Unit|undefined} [majorUnit]\n * @return {object[]}\n */\nfunction ticksFromTimestamps(scale, values, majorUnit) {\n const ticks = [];\n /** @type {Object} */\n const map = {};\n const ilen = values.length;\n let i, value;\n\n for (i = 0; i < ilen; ++i) {\n value = values[i];\n map[value] = i;\n\n ticks.push({\n value,\n major: false\n });\n }\n\n // We set the major ticks separately from the above loop because calling startOf for every tick\n // is expensive when there is a large number of ticks\n return (ilen === 0 || !majorUnit) ? ticks : setMajorTicks(scale, ticks, map, majorUnit);\n}\n\nexport default class TimeScale extends Scale {\n\n static id = 'time';\n\n /**\n * @type {any}\n */\n static defaults = {\n /**\n * Scale boundary strategy (bypassed by min/max time options)\n * - `data`: make sure data are fully visible, ticks outside are removed\n * - `ticks`: make sure ticks are fully visible, data outside are truncated\n * @see https://github.com/chartjs/Chart.js/pull/4556\n * @since 2.7.0\n */\n bounds: 'data',\n\n adapters: {},\n time: {\n parser: false, // false == a pattern string from or a custom callback that converts its argument to a timestamp\n unit: false, // false == automatic or override with week, month, year, etc.\n round: false, // none, or override with week, month, year, etc.\n isoWeekday: false, // override week start day\n minUnit: 'millisecond',\n displayFormats: {}\n },\n ticks: {\n /**\n * Ticks generation input values:\n * - 'auto': generates \"optimal\" ticks based on scale size and time options.\n * - 'data': generates ticks from data (including labels from data {t|x|y} objects).\n * - 'labels': generates ticks from user given `data.labels` values ONLY.\n * @see https://github.com/chartjs/Chart.js/pull/4507\n * @since 2.7.0\n */\n source: 'auto',\n\n callback: false,\n\n major: {\n enabled: false\n }\n }\n };\n\n /**\n\t * @param {object} props\n\t */\n constructor(props) {\n super(props);\n\n /** @type {{data: number[], labels: number[], all: number[]}} */\n this._cache = {\n data: [],\n labels: [],\n all: []\n };\n\n /** @type {Unit} */\n this._unit = 'day';\n /** @type {Unit=} */\n this._majorUnit = undefined;\n this._offsets = {};\n this._normalized = false;\n this._parseOpts = undefined;\n }\n\n init(scaleOpts, opts = {}) {\n const time = scaleOpts.time || (scaleOpts.time = {});\n /** @type {DateAdapter} */\n const adapter = this._adapter = new adapters._date(scaleOpts.adapters.date);\n\n adapter.init(opts);\n\n // Backward compatibility: before introducing adapter, `displayFormats` was\n // supposed to contain *all* unit/string pairs but this can't be resolved\n // when loading the scale (adapters are loaded afterward), so let's populate\n // missing formats on update\n mergeIf(time.displayFormats, adapter.formats());\n\n this._parseOpts = {\n parser: time.parser,\n round: time.round,\n isoWeekday: time.isoWeekday\n };\n\n super.init(scaleOpts);\n\n this._normalized = opts.normalized;\n }\n\n /**\n\t * @param {*} raw\n\t * @param {number?} [index]\n\t * @return {number}\n\t */\n parse(raw, index) { // eslint-disable-line no-unused-vars\n if (raw === undefined) {\n return null;\n }\n return parse(this, raw);\n }\n\n beforeLayout() {\n super.beforeLayout();\n this._cache = {\n data: [],\n labels: [],\n all: []\n };\n }\n\n determineDataLimits() {\n const options = this.options;\n const adapter = this._adapter;\n const unit = options.time.unit || 'day';\n // eslint-disable-next-line prefer-const\n let {min, max, minDefined, maxDefined} = this.getUserBounds();\n\n /**\n\t\t * @param {object} bounds\n\t\t */\n function _applyBounds(bounds) {\n if (!minDefined && !isNaN(bounds.min)) {\n min = Math.min(min, bounds.min);\n }\n if (!maxDefined && !isNaN(bounds.max)) {\n max = Math.max(max, bounds.max);\n }\n }\n\n // If we have user provided `min` and `max` labels / data bounds can be ignored\n if (!minDefined || !maxDefined) {\n // Labels are always considered, when user did not force bounds\n _applyBounds(this._getLabelBounds());\n\n // If `bounds` is `'ticks'` and `ticks.source` is `'labels'`,\n // data bounds are ignored (and don't need to be determined)\n if (options.bounds !== 'ticks' || options.ticks.source !== 'labels') {\n _applyBounds(this.getMinMax(false));\n }\n }\n\n min = isFinite(min) && !isNaN(min) ? min : +adapter.startOf(Date.now(), unit);\n max = isFinite(max) && !isNaN(max) ? max : +adapter.endOf(Date.now(), unit) + 1;\n\n // Make sure that max is strictly higher than min (required by the timeseries lookup table)\n this.min = Math.min(min, max - 1);\n this.max = Math.max(min + 1, max);\n }\n\n /**\n\t * @private\n\t */\n _getLabelBounds() {\n const arr = this.getLabelTimestamps();\n let min = Number.POSITIVE_INFINITY;\n let max = Number.NEGATIVE_INFINITY;\n\n if (arr.length) {\n min = arr[0];\n max = arr[arr.length - 1];\n }\n return {min, max};\n }\n\n /**\n\t * @return {object[]}\n\t */\n buildTicks() {\n const options = this.options;\n const timeOpts = options.time;\n const tickOpts = options.ticks;\n const timestamps = tickOpts.source === 'labels' ? this.getLabelTimestamps() : this._generate();\n\n if (options.bounds === 'ticks' && timestamps.length) {\n this.min = this._userMin || timestamps[0];\n this.max = this._userMax || timestamps[timestamps.length - 1];\n }\n\n const min = this.min;\n const max = this.max;\n\n const ticks = _filterBetween(timestamps, min, max);\n\n // PRIVATE\n // determineUnitForFormatting relies on the number of ticks so we don't use it when\n // autoSkip is enabled because we don't yet know what the final number of ticks will be\n this._unit = timeOpts.unit || (tickOpts.autoSkip\n ? determineUnitForAutoTicks(timeOpts.minUnit, this.min, this.max, this._getLabelCapacity(min))\n : determineUnitForFormatting(this, ticks.length, timeOpts.minUnit, this.min, this.max));\n this._majorUnit = !tickOpts.major.enabled || this._unit === 'year' ? undefined\n : determineMajorUnit(this._unit);\n this.initOffsets(timestamps);\n\n if (options.reverse) {\n ticks.reverse();\n }\n\n return ticksFromTimestamps(this, ticks, this._majorUnit);\n }\n\n afterAutoSkip() {\n // Offsets for bar charts need to be handled with the auto skipped\n // ticks. Once ticks have been skipped, we re-compute the offsets.\n if (this.options.offsetAfterAutoskip) {\n this.initOffsets(this.ticks.map(tick => +tick.value));\n }\n }\n\n /**\n\t * Returns the start and end offsets from edges in the form of {start, end}\n\t * where each value is a relative width to the scale and ranges between 0 and 1.\n\t * They add extra margins on the both sides by scaling down the original scale.\n\t * Offsets are added when the `offset` option is true.\n\t * @param {number[]} timestamps\n\t * @protected\n\t */\n initOffsets(timestamps = []) {\n let start = 0;\n let end = 0;\n let first, last;\n\n if (this.options.offset && timestamps.length) {\n first = this.getDecimalForValue(timestamps[0]);\n if (timestamps.length === 1) {\n start = 1 - first;\n } else {\n start = (this.getDecimalForValue(timestamps[1]) - first) / 2;\n }\n last = this.getDecimalForValue(timestamps[timestamps.length - 1]);\n if (timestamps.length === 1) {\n end = last;\n } else {\n end = (last - this.getDecimalForValue(timestamps[timestamps.length - 2])) / 2;\n }\n }\n const limit = timestamps.length < 3 ? 0.5 : 0.25;\n start = _limitValue(start, 0, limit);\n end = _limitValue(end, 0, limit);\n\n this._offsets = {start, end, factor: 1 / (start + 1 + end)};\n }\n\n /**\n\t * Generates a maximum of `capacity` timestamps between min and max, rounded to the\n\t * `minor` unit using the given scale time `options`.\n\t * Important: this method can return ticks outside the min and max range, it's the\n\t * responsibility of the calling code to clamp values if needed.\n\t * @private\n\t */\n _generate() {\n const adapter = this._adapter;\n const min = this.min;\n const max = this.max;\n const options = this.options;\n const timeOpts = options.time;\n // @ts-ignore\n const minor = timeOpts.unit || determineUnitForAutoTicks(timeOpts.minUnit, min, max, this._getLabelCapacity(min));\n const stepSize = valueOrDefault(options.ticks.stepSize, 1);\n const weekday = minor === 'week' ? timeOpts.isoWeekday : false;\n const hasWeekday = isNumber(weekday) || weekday === true;\n const ticks = {};\n let first = min;\n let time, count;\n\n // For 'week' unit, handle the first day of week option\n if (hasWeekday) {\n first = +adapter.startOf(first, 'isoWeek', weekday);\n }\n\n // Align first ticks on unit\n first = +adapter.startOf(first, hasWeekday ? 'day' : minor);\n\n // Prevent browser from freezing in case user options request millions of milliseconds\n if (adapter.diff(max, min, minor) > 100000 * stepSize) {\n throw new Error(min + ' and ' + max + ' are too far apart with stepSize of ' + stepSize + ' ' + minor);\n }\n\n const timestamps = options.ticks.source === 'data' && this.getDataTimestamps();\n for (time = first, count = 0; time < max; time = +adapter.add(time, stepSize, minor), count++) {\n addTick(ticks, time, timestamps);\n }\n\n if (time === max || options.bounds === 'ticks' || count === 1) {\n addTick(ticks, time, timestamps);\n }\n\n // @ts-ignore\n return Object.keys(ticks).sort((a, b) => a - b).map(x => +x);\n }\n\n /**\n\t * @param {number} value\n\t * @return {string}\n\t */\n getLabelForValue(value) {\n const adapter = this._adapter;\n const timeOpts = this.options.time;\n\n if (timeOpts.tooltipFormat) {\n return adapter.format(value, timeOpts.tooltipFormat);\n }\n return adapter.format(value, timeOpts.displayFormats.datetime);\n }\n\n /**\n\t * Function to format an individual tick mark\n\t * @param {number} time\n\t * @param {number} index\n\t * @param {object[]} ticks\n\t * @param {string|undefined} [format]\n\t * @return {string}\n\t * @private\n\t */\n _tickFormatFunction(time, index, ticks, format) {\n const options = this.options;\n const formatter = options.ticks.callback;\n\n if (formatter) {\n return call(formatter, [time, index, ticks], this);\n }\n\n const formats = options.time.displayFormats;\n const unit = this._unit;\n const majorUnit = this._majorUnit;\n const minorFormat = unit && formats[unit];\n const majorFormat = majorUnit && formats[majorUnit];\n const tick = ticks[index];\n const major = majorUnit && majorFormat && tick && tick.major;\n\n return this._adapter.format(time, format || (major ? majorFormat : minorFormat));\n }\n\n /**\n\t * @param {object[]} ticks\n\t */\n generateTickLabels(ticks) {\n let i, ilen, tick;\n\n for (i = 0, ilen = ticks.length; i < ilen; ++i) {\n tick = ticks[i];\n tick.label = this._tickFormatFunction(tick.value, i, ticks);\n }\n }\n\n /**\n\t * @param {number} value - Milliseconds since epoch (1 January 1970 00:00:00 UTC)\n\t * @return {number}\n\t */\n getDecimalForValue(value) {\n return value === null ? NaN : (value - this.min) / (this.max - this.min);\n }\n\n /**\n\t * @param {number} value - Milliseconds since epoch (1 January 1970 00:00:00 UTC)\n\t * @return {number}\n\t */\n getPixelForValue(value) {\n const offsets = this._offsets;\n const pos = this.getDecimalForValue(value);\n return this.getPixelForDecimal((offsets.start + pos) * offsets.factor);\n }\n\n /**\n\t * @param {number} pixel\n\t * @return {number}\n\t */\n getValueForPixel(pixel) {\n const offsets = this._offsets;\n const pos = this.getDecimalForPixel(pixel) / offsets.factor - offsets.end;\n return this.min + pos * (this.max - this.min);\n }\n\n /**\n\t * @param {string} label\n\t * @return {{w:number, h:number}}\n\t * @private\n\t */\n _getLabelSize(label) {\n const ticksOpts = this.options.ticks;\n const tickLabelWidth = this.ctx.measureText(label).width;\n const angle = toRadians(this.isHorizontal() ? ticksOpts.maxRotation : ticksOpts.minRotation);\n const cosRotation = Math.cos(angle);\n const sinRotation = Math.sin(angle);\n const tickFontSize = this._resolveTickFontOptions(0).size;\n\n return {\n w: (tickLabelWidth * cosRotation) + (tickFontSize * sinRotation),\n h: (tickLabelWidth * sinRotation) + (tickFontSize * cosRotation)\n };\n }\n\n /**\n\t * @param {number} exampleTime\n\t * @return {number}\n\t * @private\n\t */\n _getLabelCapacity(exampleTime) {\n const timeOpts = this.options.time;\n const displayFormats = timeOpts.displayFormats;\n\n // pick the longest format (milliseconds) for guestimation\n const format = displayFormats[timeOpts.unit] || displayFormats.millisecond;\n const exampleLabel = this._tickFormatFunction(exampleTime, 0, ticksFromTimestamps(this, [exampleTime], this._majorUnit), format);\n const size = this._getLabelSize(exampleLabel);\n // subtract 1 - if offset then there's one less label than tick\n // if not offset then one half label padding is added to each end leaving room for one less label\n const capacity = Math.floor(this.isHorizontal() ? this.width / size.w : this.height / size.h) - 1;\n return capacity > 0 ? capacity : 1;\n }\n\n /**\n\t * @protected\n\t */\n getDataTimestamps() {\n let timestamps = this._cache.data || [];\n let i, ilen;\n\n if (timestamps.length) {\n return timestamps;\n }\n\n const metas = this.getMatchingVisibleMetas();\n\n if (this._normalized && metas.length) {\n return (this._cache.data = metas[0].controller.getAllParsedValues(this));\n }\n\n for (i = 0, ilen = metas.length; i < ilen; ++i) {\n timestamps = timestamps.concat(metas[i].controller.getAllParsedValues(this));\n }\n\n return (this._cache.data = this.normalize(timestamps));\n }\n\n /**\n\t * @protected\n\t */\n getLabelTimestamps() {\n const timestamps = this._cache.labels || [];\n let i, ilen;\n\n if (timestamps.length) {\n return timestamps;\n }\n\n const labels = this.getLabels();\n for (i = 0, ilen = labels.length; i < ilen; ++i) {\n timestamps.push(parse(this, labels[i]));\n }\n\n return (this._cache.labels = this._normalized ? timestamps : this.normalize(timestamps));\n }\n\n /**\n\t * @param {number[]} values\n\t * @protected\n\t */\n normalize(values) {\n // It seems to be somewhat faster to do sorting first\n return _arrayUnique(values.sort(sorter));\n }\n}\n","import TimeScale from './scale.time.js';\nimport {_lookupByKey} from '../helpers/helpers.collection.js';\n\n/**\n * Linearly interpolates the given source `val` using the table. If value is out of bounds, values\n * at edges are used for the interpolation.\n * @param {object} table\n * @param {number} val\n * @param {boolean} [reverse] lookup time based on position instead of vice versa\n * @return {object}\n */\nfunction interpolate(table, val, reverse) {\n let lo = 0;\n let hi = table.length - 1;\n let prevSource, nextSource, prevTarget, nextTarget;\n if (reverse) {\n if (val >= table[lo].pos && val <= table[hi].pos) {\n ({lo, hi} = _lookupByKey(table, 'pos', val));\n }\n ({pos: prevSource, time: prevTarget} = table[lo]);\n ({pos: nextSource, time: nextTarget} = table[hi]);\n } else {\n if (val >= table[lo].time && val <= table[hi].time) {\n ({lo, hi} = _lookupByKey(table, 'time', val));\n }\n ({time: prevSource, pos: prevTarget} = table[lo]);\n ({time: nextSource, pos: nextTarget} = table[hi]);\n }\n\n const span = nextSource - prevSource;\n return span ? prevTarget + (nextTarget - prevTarget) * (val - prevSource) / span : prevTarget;\n}\n\nclass TimeSeriesScale extends TimeScale {\n\n static id = 'timeseries';\n\n /**\n * @type {any}\n */\n static defaults = TimeScale.defaults;\n\n /**\n\t * @param {object} props\n\t */\n constructor(props) {\n super(props);\n\n /** @type {object[]} */\n this._table = [];\n /** @type {number} */\n this._minPos = undefined;\n /** @type {number} */\n this._tableRange = undefined;\n }\n\n /**\n\t * @protected\n\t */\n initOffsets() {\n const timestamps = this._getTimestampsForTable();\n const table = this._table = this.buildLookupTable(timestamps);\n this._minPos = interpolate(table, this.min);\n this._tableRange = interpolate(table, this.max) - this._minPos;\n super.initOffsets(timestamps);\n }\n\n /**\n\t * Returns an array of {time, pos} objects used to interpolate a specific `time` or position\n\t * (`pos`) on the scale, by searching entries before and after the requested value. `pos` is\n\t * a decimal between 0 and 1: 0 being the start of the scale (left or top) and 1 the other\n\t * extremity (left + width or top + height). Note that it would be more optimized to directly\n\t * store pre-computed pixels, but the scale dimensions are not guaranteed at the time we need\n\t * to create the lookup table. The table ALWAYS contains at least two items: min and max.\n\t * @param {number[]} timestamps\n\t * @return {object[]}\n\t * @protected\n\t */\n buildLookupTable(timestamps) {\n const {min, max} = this;\n const items = [];\n const table = [];\n let i, ilen, prev, curr, next;\n\n for (i = 0, ilen = timestamps.length; i < ilen; ++i) {\n curr = timestamps[i];\n if (curr >= min && curr <= max) {\n items.push(curr);\n }\n }\n\n if (items.length < 2) {\n // In case there is less that 2 timestamps between min and max, the scale is defined by min and max\n return [\n {time: min, pos: 0},\n {time: max, pos: 1}\n ];\n }\n\n for (i = 0, ilen = items.length; i < ilen; ++i) {\n next = items[i + 1];\n prev = items[i - 1];\n curr = items[i];\n\n // only add points that breaks the scale linearity\n if (Math.round((next + prev) / 2) !== curr) {\n table.push({time: curr, pos: i / (ilen - 1)});\n }\n }\n return table;\n }\n\n /**\n\t * Returns all timestamps\n\t * @return {number[]}\n\t * @private\n\t */\n _getTimestampsForTable() {\n let timestamps = this._cache.all || [];\n\n if (timestamps.length) {\n return timestamps;\n }\n\n const data = this.getDataTimestamps();\n const label = this.getLabelTimestamps();\n if (data.length && label.length) {\n // If combining labels and data (data might not contain all labels),\n // we need to recheck uniqueness and sort\n timestamps = this.normalize(data.concat(label));\n } else {\n timestamps = data.length ? data : label;\n }\n timestamps = this._cache.all = timestamps;\n\n return timestamps;\n }\n\n /**\n\t * @param {number} value - Milliseconds since epoch (1 January 1970 00:00:00 UTC)\n\t * @return {number}\n\t */\n getDecimalForValue(value) {\n return (interpolate(this._table, value) - this._minPos) / this._tableRange;\n }\n\n /**\n\t * @param {number} pixel\n\t * @return {number}\n\t */\n getValueForPixel(pixel) {\n const offsets = this._offsets;\n const decimal = this.getDecimalForPixel(pixel) / offsets.factor - offsets.end;\n return interpolate(this._table, decimal * this._tableRange + this._minPos, true);\n }\n}\n\nexport default TimeSeriesScale;\n","import {DoughnutController, PolarAreaController} from '../index.js';\nimport type {Chart, ChartDataset} from '../types.js';\n\nexport interface ColorsPluginOptions {\n enabled?: boolean;\n forceOverride?: boolean;\n}\n\ninterface ColorsDescriptor {\n backgroundColor?: unknown;\n borderColor?: unknown;\n}\n\nconst BORDER_COLORS = [\n 'rgb(54, 162, 235)', // blue\n 'rgb(255, 99, 132)', // red\n 'rgb(255, 159, 64)', // orange\n 'rgb(255, 205, 86)', // yellow\n 'rgb(75, 192, 192)', // green\n 'rgb(153, 102, 255)', // purple\n 'rgb(201, 203, 207)' // grey\n];\n\n// Border colors with 50% transparency\nconst BACKGROUND_COLORS = /* #__PURE__ */ BORDER_COLORS.map(color => color.replace('rgb(', 'rgba(').replace(')', ', 0.5)'));\n\nfunction getBorderColor(i: number) {\n return BORDER_COLORS[i % BORDER_COLORS.length];\n}\n\nfunction getBackgroundColor(i: number) {\n return BACKGROUND_COLORS[i % BACKGROUND_COLORS.length];\n}\n\nfunction colorizeDefaultDataset(dataset: ChartDataset, i: number) {\n dataset.borderColor = getBorderColor(i);\n dataset.backgroundColor = getBackgroundColor(i);\n\n return ++i;\n}\n\nfunction colorizeDoughnutDataset(dataset: ChartDataset, i: number) {\n dataset.backgroundColor = dataset.data.map(() => getBorderColor(i++));\n\n return i;\n}\n\nfunction colorizePolarAreaDataset(dataset: ChartDataset, i: number) {\n dataset.backgroundColor = dataset.data.map(() => getBackgroundColor(i++));\n\n return i;\n}\n\nfunction getColorizer(chart: Chart) {\n let i = 0;\n\n return (dataset: ChartDataset, datasetIndex: number) => {\n const controller = chart.getDatasetMeta(datasetIndex).controller;\n\n if (controller instanceof DoughnutController) {\n i = colorizeDoughnutDataset(dataset, i);\n } else if (controller instanceof PolarAreaController) {\n i = colorizePolarAreaDataset(dataset, i);\n } else if (controller) {\n i = colorizeDefaultDataset(dataset, i);\n }\n };\n}\n\nfunction containsColorsDefinitions(\n descriptors: ColorsDescriptor[] | Record\n) {\n let k: number | string;\n\n for (k in descriptors) {\n if (descriptors[k].borderColor || descriptors[k].backgroundColor) {\n return true;\n }\n }\n\n return false;\n}\n\nexport default {\n id: 'colors',\n\n defaults: {\n enabled: true,\n forceOverride: false\n } as ColorsPluginOptions,\n\n beforeLayout(chart: Chart, _args, options: ColorsPluginOptions) {\n if (!options.enabled) {\n return;\n }\n\n const {\n options: {elements},\n data: {datasets}\n } = chart.config;\n\n if (!options.forceOverride && (containsColorsDefinitions(datasets) || elements && containsColorsDefinitions(elements))) {\n return;\n }\n\n const colorizer = getColorizer(chart);\n\n datasets.forEach(colorizer);\n }\n};\n","import {_limitValue, _lookupByKey, isNullOrUndef, resolve} from '../helpers/index.js';\n\nfunction lttbDecimation(data, start, count, availableWidth, options) {\n /**\n * Implementation of the Largest Triangle Three Buckets algorithm.\n *\n * This implementation is based on the original implementation by Sveinn Steinarsson\n * in https://github.com/sveinn-steinarsson/flot-downsample/blob/master/jquery.flot.downsample.js\n *\n * The original implementation is MIT licensed.\n */\n const samples = options.samples || availableWidth;\n // There are less points than the threshold, returning the whole array\n if (samples >= count) {\n return data.slice(start, start + count);\n }\n\n const decimated = [];\n\n const bucketWidth = (count - 2) / (samples - 2);\n let sampledIndex = 0;\n const endIndex = start + count - 1;\n // Starting from offset\n let a = start;\n let i, maxAreaPoint, maxArea, area, nextA;\n\n decimated[sampledIndex++] = data[a];\n\n for (i = 0; i < samples - 2; i++) {\n let avgX = 0;\n let avgY = 0;\n let j;\n\n // Adding offset\n const avgRangeStart = Math.floor((i + 1) * bucketWidth) + 1 + start;\n const avgRangeEnd = Math.min(Math.floor((i + 2) * bucketWidth) + 1, count) + start;\n const avgRangeLength = avgRangeEnd - avgRangeStart;\n\n for (j = avgRangeStart; j < avgRangeEnd; j++) {\n avgX += data[j].x;\n avgY += data[j].y;\n }\n\n avgX /= avgRangeLength;\n avgY /= avgRangeLength;\n\n // Adding offset\n const rangeOffs = Math.floor(i * bucketWidth) + 1 + start;\n const rangeTo = Math.min(Math.floor((i + 1) * bucketWidth) + 1, count) + start;\n const {x: pointAx, y: pointAy} = data[a];\n\n // Note that this is changed from the original algorithm which initializes these\n // values to 1. The reason for this change is that if the area is small, nextA\n // would never be set and thus a crash would occur in the next loop as `a` would become\n // `undefined`. Since the area is always positive, but could be 0 in the case of a flat trace,\n // initializing with a negative number is the correct solution.\n maxArea = area = -1;\n\n for (j = rangeOffs; j < rangeTo; j++) {\n area = 0.5 * Math.abs(\n (pointAx - avgX) * (data[j].y - pointAy) -\n (pointAx - data[j].x) * (avgY - pointAy)\n );\n\n if (area > maxArea) {\n maxArea = area;\n maxAreaPoint = data[j];\n nextA = j;\n }\n }\n\n decimated[sampledIndex++] = maxAreaPoint;\n a = nextA;\n }\n\n // Include the last point\n decimated[sampledIndex++] = data[endIndex];\n\n return decimated;\n}\n\nfunction minMaxDecimation(data, start, count, availableWidth) {\n let avgX = 0;\n let countX = 0;\n let i, point, x, y, prevX, minIndex, maxIndex, startIndex, minY, maxY;\n const decimated = [];\n const endIndex = start + count - 1;\n\n const xMin = data[start].x;\n const xMax = data[endIndex].x;\n const dx = xMax - xMin;\n\n for (i = start; i < start + count; ++i) {\n point = data[i];\n x = (point.x - xMin) / dx * availableWidth;\n y = point.y;\n const truncX = x | 0;\n\n if (truncX === prevX) {\n // Determine `minY` / `maxY` and `avgX` while we stay within same x-position\n if (y < minY) {\n minY = y;\n minIndex = i;\n } else if (y > maxY) {\n maxY = y;\n maxIndex = i;\n }\n // For first point in group, countX is `0`, so average will be `x` / 1.\n // Use point.x here because we're computing the average data `x` value\n avgX = (countX * avgX + point.x) / ++countX;\n } else {\n // Push up to 4 points, 3 for the last interval and the first point for this interval\n const lastIndex = i - 1;\n\n if (!isNullOrUndef(minIndex) && !isNullOrUndef(maxIndex)) {\n // The interval is defined by 4 points: start, min, max, end.\n // The starting point is already considered at this point, so we need to determine which\n // of the other points to add. We need to sort these points to ensure the decimated data\n // is still sorted and then ensure there are no duplicates.\n const intermediateIndex1 = Math.min(minIndex, maxIndex);\n const intermediateIndex2 = Math.max(minIndex, maxIndex);\n\n if (intermediateIndex1 !== startIndex && intermediateIndex1 !== lastIndex) {\n decimated.push({\n ...data[intermediateIndex1],\n x: avgX,\n });\n }\n if (intermediateIndex2 !== startIndex && intermediateIndex2 !== lastIndex) {\n decimated.push({\n ...data[intermediateIndex2],\n x: avgX\n });\n }\n }\n\n // lastIndex === startIndex will occur when a range has only 1 point which could\n // happen with very uneven data\n if (i > 0 && lastIndex !== startIndex) {\n // Last point in the previous interval\n decimated.push(data[lastIndex]);\n }\n\n // Start of the new interval\n decimated.push(point);\n prevX = truncX;\n countX = 0;\n minY = maxY = y;\n minIndex = maxIndex = startIndex = i;\n }\n }\n\n return decimated;\n}\n\nfunction cleanDecimatedDataset(dataset) {\n if (dataset._decimated) {\n const data = dataset._data;\n delete dataset._decimated;\n delete dataset._data;\n Object.defineProperty(dataset, 'data', {value: data});\n }\n}\n\nfunction cleanDecimatedData(chart) {\n chart.data.datasets.forEach((dataset) => {\n cleanDecimatedDataset(dataset);\n });\n}\n\nfunction getStartAndCountOfVisiblePointsSimplified(meta, points) {\n const pointCount = points.length;\n\n let start = 0;\n let count;\n\n const {iScale} = meta;\n const {min, max, minDefined, maxDefined} = iScale.getUserBounds();\n\n if (minDefined) {\n start = _limitValue(_lookupByKey(points, iScale.axis, min).lo, 0, pointCount - 1);\n }\n if (maxDefined) {\n count = _limitValue(_lookupByKey(points, iScale.axis, max).hi + 1, start, pointCount) - start;\n } else {\n count = pointCount - start;\n }\n\n return {start, count};\n}\n\nexport default {\n id: 'decimation',\n\n defaults: {\n algorithm: 'min-max',\n enabled: false,\n },\n\n beforeElementsUpdate: (chart, args, options) => {\n if (!options.enabled) {\n // The decimation plugin may have been previously enabled. Need to remove old `dataset._data` handlers\n cleanDecimatedData(chart);\n return;\n }\n\n // Assume the entire chart is available to show a few more points than needed\n const availableWidth = chart.width;\n\n chart.data.datasets.forEach((dataset, datasetIndex) => {\n const {_data, indexAxis} = dataset;\n const meta = chart.getDatasetMeta(datasetIndex);\n const data = _data || dataset.data;\n\n if (resolve([indexAxis, chart.options.indexAxis]) === 'y') {\n // Decimation is only supported for lines that have an X indexAxis\n return;\n }\n\n if (!meta.controller.supportsDecimation) {\n // Only line datasets are supported\n return;\n }\n\n const xAxis = chart.scales[meta.xAxisID];\n if (xAxis.type !== 'linear' && xAxis.type !== 'time') {\n // Only linear interpolation is supported\n return;\n }\n\n if (chart.options.parsing) {\n // Plugin only supports data that does not need parsing\n return;\n }\n\n let {start, count} = getStartAndCountOfVisiblePointsSimplified(meta, data);\n const threshold = options.threshold || 4 * availableWidth;\n if (count <= threshold) {\n // No decimation is required until we are above this threshold\n cleanDecimatedDataset(dataset);\n return;\n }\n\n if (isNullOrUndef(_data)) {\n // First time we are seeing this dataset\n // We override the 'data' property with a setter that stores the\n // raw data in _data, but reads the decimated data from _decimated\n dataset._data = data;\n delete dataset.data;\n Object.defineProperty(dataset, 'data', {\n configurable: true,\n enumerable: true,\n get: function() {\n return this._decimated;\n },\n set: function(d) {\n this._data = d;\n }\n });\n }\n\n // Point the chart to the decimated data\n let decimated;\n switch (options.algorithm) {\n case 'lttb':\n decimated = lttbDecimation(data, start, count, availableWidth, options);\n break;\n case 'min-max':\n decimated = minMaxDecimation(data, start, count, availableWidth);\n break;\n default:\n throw new Error(`Unsupported decimation algorithm '${options.algorithm}'`);\n }\n\n dataset._decimated = decimated;\n });\n },\n\n destroy(chart) {\n cleanDecimatedData(chart);\n }\n};\n","import {_boundSegment, _boundSegments, _normalizeAngle} from '../../helpers/index.js';\n\nexport function _segments(line, target, property) {\n const segments = line.segments;\n const points = line.points;\n const tpoints = target.points;\n const parts = [];\n\n for (const segment of segments) {\n let {start, end} = segment;\n end = _findSegmentEnd(start, end, points);\n\n const bounds = _getBounds(property, points[start], points[end], segment.loop);\n\n if (!target.segments) {\n // Special case for boundary not supporting `segments` (simpleArc)\n // Bounds are provided as `target` for partial circle, or undefined for full circle\n parts.push({\n source: segment,\n target: bounds,\n start: points[start],\n end: points[end]\n });\n continue;\n }\n\n // Get all segments from `target` that intersect the bounds of current segment of `line`\n const targetSegments = _boundSegments(target, bounds);\n\n for (const tgt of targetSegments) {\n const subBounds = _getBounds(property, tpoints[tgt.start], tpoints[tgt.end], tgt.loop);\n const fillSources = _boundSegment(segment, points, subBounds);\n\n for (const fillSource of fillSources) {\n parts.push({\n source: fillSource,\n target: tgt,\n start: {\n [property]: _getEdge(bounds, subBounds, 'start', Math.max)\n },\n end: {\n [property]: _getEdge(bounds, subBounds, 'end', Math.min)\n }\n });\n }\n }\n }\n return parts;\n}\n\nexport function _getBounds(property, first, last, loop) {\n if (loop) {\n return;\n }\n let start = first[property];\n let end = last[property];\n\n if (property === 'angle') {\n start = _normalizeAngle(start);\n end = _normalizeAngle(end);\n }\n return {property, start, end};\n}\n\nexport function _pointsFromSegments(boundary, line) {\n const {x = null, y = null} = boundary || {};\n const linePoints = line.points;\n const points = [];\n line.segments.forEach(({start, end}) => {\n end = _findSegmentEnd(start, end, linePoints);\n const first = linePoints[start];\n const last = linePoints[end];\n if (y !== null) {\n points.push({x: first.x, y});\n points.push({x: last.x, y});\n } else if (x !== null) {\n points.push({x, y: first.y});\n points.push({x, y: last.y});\n }\n });\n return points;\n}\n\nexport function _findSegmentEnd(start, end, points) {\n for (;end > start; end--) {\n const point = points[end];\n if (!isNaN(point.x) && !isNaN(point.y)) {\n break;\n }\n }\n return end;\n}\n\nfunction _getEdge(a, b, prop, fn) {\n if (a && b) {\n return fn(a[prop], b[prop]);\n }\n return a ? a[prop] : b ? b[prop] : 0;\n}\n","/**\n * @typedef { import('../../core/core.controller.js').default } Chart\n * @typedef { import('../../core/core.scale.js').default } Scale\n * @typedef { import('../../elements/element.point.js').default } PointElement\n */\n\nimport {LineElement} from '../../elements/index.js';\nimport {isArray} from '../../helpers/index.js';\nimport {_pointsFromSegments} from './filler.segment.js';\n\n/**\n * @param {PointElement[] | { x: number; y: number; }} boundary\n * @param {LineElement} line\n * @return {LineElement?}\n */\nexport function _createBoundaryLine(boundary, line) {\n let points = [];\n let _loop = false;\n\n if (isArray(boundary)) {\n _loop = true;\n // @ts-ignore\n points = boundary;\n } else {\n points = _pointsFromSegments(boundary, line);\n }\n\n return points.length ? new LineElement({\n points,\n options: {tension: 0},\n _loop,\n _fullLoop: _loop\n }) : null;\n}\n\nexport function _shouldApplyFill(source) {\n return source && source.fill !== false;\n}\n","import {isObject, isFinite, valueOrDefault} from '../../helpers/helpers.core.js';\n\n/**\n * @typedef { import('../../core/core.scale.js').default } Scale\n * @typedef { import('../../elements/element.line.js').default } LineElement\n * @typedef { import('../../types/index.js').FillTarget } FillTarget\n * @typedef { import('../../types/index.js').ComplexFillTarget } ComplexFillTarget\n */\n\nexport function _resolveTarget(sources, index, propagate) {\n const source = sources[index];\n let fill = source.fill;\n const visited = [index];\n let target;\n\n if (!propagate) {\n return fill;\n }\n\n while (fill !== false && visited.indexOf(fill) === -1) {\n if (!isFinite(fill)) {\n return fill;\n }\n\n target = sources[fill];\n if (!target) {\n return false;\n }\n\n if (target.visible) {\n return fill;\n }\n\n visited.push(fill);\n fill = target.fill;\n }\n\n return false;\n}\n\n/**\n * @param {LineElement} line\n * @param {number} index\n * @param {number} count\n */\nexport function _decodeFill(line, index, count) {\n /** @type {string | {value: number}} */\n const fill = parseFillOption(line);\n\n if (isObject(fill)) {\n return isNaN(fill.value) ? false : fill;\n }\n\n let target = parseFloat(fill);\n\n if (isFinite(target) && Math.floor(target) === target) {\n return decodeTargetIndex(fill[0], index, target, count);\n }\n\n return ['origin', 'start', 'end', 'stack', 'shape'].indexOf(fill) >= 0 && fill;\n}\n\nfunction decodeTargetIndex(firstCh, index, target, count) {\n if (firstCh === '-' || firstCh === '+') {\n target = index + target;\n }\n\n if (target === index || target < 0 || target >= count) {\n return false;\n }\n\n return target;\n}\n\n/**\n * @param {FillTarget | ComplexFillTarget} fill\n * @param {Scale} scale\n * @returns {number | null}\n */\nexport function _getTargetPixel(fill, scale) {\n let pixel = null;\n if (fill === 'start') {\n pixel = scale.bottom;\n } else if (fill === 'end') {\n pixel = scale.top;\n } else if (isObject(fill)) {\n // @ts-ignore\n pixel = scale.getPixelForValue(fill.value);\n } else if (scale.getBasePixel) {\n pixel = scale.getBasePixel();\n }\n return pixel;\n}\n\n/**\n * @param {FillTarget | ComplexFillTarget} fill\n * @param {Scale} scale\n * @param {number} startValue\n * @returns {number | undefined}\n */\nexport function _getTargetValue(fill, scale, startValue) {\n let value;\n\n if (fill === 'start') {\n value = startValue;\n } else if (fill === 'end') {\n value = scale.options.reverse ? scale.min : scale.max;\n } else if (isObject(fill)) {\n // @ts-ignore\n value = fill.value;\n } else {\n value = scale.getBaseValue();\n }\n return value;\n}\n\n/**\n * @param {LineElement} line\n */\nfunction parseFillOption(line) {\n const options = line.options;\n const fillOption = options.fill;\n let fill = valueOrDefault(fillOption && fillOption.target, fillOption);\n\n if (fill === undefined) {\n fill = !!options.backgroundColor;\n }\n\n if (fill === false || fill === null) {\n return false;\n }\n\n if (fill === true) {\n return 'origin';\n }\n return fill;\n}\n","/**\n * @typedef { import('../../core/core.controller.js').default } Chart\n * @typedef { import('../../core/core.scale.js').default } Scale\n * @typedef { import('../../elements/element.point.js').default } PointElement\n */\n\nimport {LineElement} from '../../elements/index.js';\nimport {_isBetween} from '../../helpers/index.js';\nimport {_createBoundaryLine} from './filler.helper.js';\n\n/**\n * @param {{ chart: Chart; scale: Scale; index: number; line: LineElement; }} source\n * @return {LineElement}\n */\nexport function _buildStackLine(source) {\n const {scale, index, line} = source;\n const points = [];\n const segments = line.segments;\n const sourcePoints = line.points;\n const linesBelow = getLinesBelow(scale, index);\n linesBelow.push(_createBoundaryLine({x: null, y: scale.bottom}, line));\n\n for (let i = 0; i < segments.length; i++) {\n const segment = segments[i];\n for (let j = segment.start; j <= segment.end; j++) {\n addPointsBelow(points, sourcePoints[j], linesBelow);\n }\n }\n return new LineElement({points, options: {}});\n}\n\n/**\n * @param {Scale} scale\n * @param {number} index\n * @return {LineElement[]}\n */\nfunction getLinesBelow(scale, index) {\n const below = [];\n const metas = scale.getMatchingVisibleMetas('line');\n\n for (let i = 0; i < metas.length; i++) {\n const meta = metas[i];\n if (meta.index === index) {\n break;\n }\n if (!meta.hidden) {\n below.unshift(meta.dataset);\n }\n }\n return below;\n}\n\n/**\n * @param {PointElement[]} points\n * @param {PointElement} sourcePoint\n * @param {LineElement[]} linesBelow\n */\nfunction addPointsBelow(points, sourcePoint, linesBelow) {\n const postponed = [];\n for (let j = 0; j < linesBelow.length; j++) {\n const line = linesBelow[j];\n const {first, last, point} = findPoint(line, sourcePoint, 'x');\n\n if (!point || (first && last)) {\n continue;\n }\n if (first) {\n // First point of an segment -> need to add another point before this,\n // from next line below.\n postponed.unshift(point);\n } else {\n points.push(point);\n if (!last) {\n // In the middle of an segment, no need to add more points.\n break;\n }\n }\n }\n points.push(...postponed);\n}\n\n/**\n * @param {LineElement} line\n * @param {PointElement} sourcePoint\n * @param {string} property\n * @returns {{point?: PointElement, first?: boolean, last?: boolean}}\n */\nfunction findPoint(line, sourcePoint, property) {\n const point = line.interpolate(sourcePoint, property);\n if (!point) {\n return {};\n }\n\n const pointValue = point[property];\n const segments = line.segments;\n const linePoints = line.points;\n let first = false;\n let last = false;\n for (let i = 0; i < segments.length; i++) {\n const segment = segments[i];\n const firstValue = linePoints[segment.start][property];\n const lastValue = linePoints[segment.end][property];\n if (_isBetween(pointValue, firstValue, lastValue)) {\n first = pointValue === firstValue;\n last = pointValue === lastValue;\n break;\n }\n }\n return {first, last, point};\n}\n","import {TAU} from '../../helpers/index.js';\n\n// TODO: use elements.ArcElement instead\nexport class simpleArc {\n constructor(opts) {\n this.x = opts.x;\n this.y = opts.y;\n this.radius = opts.radius;\n }\n\n pathSegment(ctx, bounds, opts) {\n const {x, y, radius} = this;\n bounds = bounds || {start: 0, end: TAU};\n ctx.arc(x, y, radius, bounds.end, bounds.start, true);\n return !opts.bounds;\n }\n\n interpolate(point) {\n const {x, y, radius} = this;\n const angle = point.angle;\n return {\n x: x + Math.cos(angle) * radius,\n y: y + Math.sin(angle) * radius,\n angle\n };\n }\n}\n","import {isFinite} from '../../helpers/index.js';\nimport {_createBoundaryLine} from './filler.helper.js';\nimport {_getTargetPixel, _getTargetValue} from './filler.options.js';\nimport {_buildStackLine} from './filler.target.stack.js';\nimport {simpleArc} from './simpleArc.js';\n\n/**\n * @typedef { import('../../core/core.controller.js').default } Chart\n * @typedef { import('../../core/core.scale.js').default } Scale\n * @typedef { import('../../elements/element.point.js').default } PointElement\n */\n\nexport function _getTarget(source) {\n const {chart, fill, line} = source;\n\n if (isFinite(fill)) {\n return getLineByIndex(chart, fill);\n }\n\n if (fill === 'stack') {\n return _buildStackLine(source);\n }\n\n if (fill === 'shape') {\n return true;\n }\n\n const boundary = computeBoundary(source);\n\n if (boundary instanceof simpleArc) {\n return boundary;\n }\n\n return _createBoundaryLine(boundary, line);\n}\n\n/**\n * @param {Chart} chart\n * @param {number} index\n */\nfunction getLineByIndex(chart, index) {\n const meta = chart.getDatasetMeta(index);\n const visible = meta && chart.isDatasetVisible(index);\n return visible ? meta.dataset : null;\n}\n\nfunction computeBoundary(source) {\n const scale = source.scale || {};\n\n if (scale.getPointPositionForValue) {\n return computeCircularBoundary(source);\n }\n return computeLinearBoundary(source);\n}\n\n\nfunction computeLinearBoundary(source) {\n const {scale = {}, fill} = source;\n const pixel = _getTargetPixel(fill, scale);\n\n if (isFinite(pixel)) {\n const horizontal = scale.isHorizontal();\n\n return {\n x: horizontal ? pixel : null,\n y: horizontal ? null : pixel\n };\n }\n\n return null;\n}\n\nfunction computeCircularBoundary(source) {\n const {scale, fill} = source;\n const options = scale.options;\n const length = scale.getLabels().length;\n const start = options.reverse ? scale.max : scale.min;\n const value = _getTargetValue(fill, scale, start);\n const target = [];\n\n if (options.grid.circular) {\n const center = scale.getPointPositionForValue(0, start);\n return new simpleArc({\n x: center.x,\n y: center.y,\n radius: scale.getDistanceFromCenterForValue(value)\n });\n }\n\n for (let i = 0; i < length; ++i) {\n target.push(scale.getPointPositionForValue(i, value));\n }\n return target;\n}\n\n","import {clipArea, unclipArea} from '../../helpers/index.js';\nimport {_findSegmentEnd, _getBounds, _segments} from './filler.segment.js';\nimport {_getTarget} from './filler.target.js';\n\nexport function _drawfill(ctx, source, area) {\n const target = _getTarget(source);\n const {line, scale, axis} = source;\n const lineOpts = line.options;\n const fillOption = lineOpts.fill;\n const color = lineOpts.backgroundColor;\n const {above = color, below = color} = fillOption || {};\n if (target && line.points.length) {\n clipArea(ctx, area);\n doFill(ctx, {line, target, above, below, area, scale, axis});\n unclipArea(ctx);\n }\n}\n\nfunction doFill(ctx, cfg) {\n const {line, target, above, below, area, scale} = cfg;\n const property = line._loop ? 'angle' : cfg.axis;\n\n ctx.save();\n\n if (property === 'x' && below !== above) {\n clipVertical(ctx, target, area.top);\n fill(ctx, {line, target, color: above, scale, property});\n ctx.restore();\n ctx.save();\n clipVertical(ctx, target, area.bottom);\n }\n fill(ctx, {line, target, color: below, scale, property});\n\n ctx.restore();\n}\n\nfunction clipVertical(ctx, target, clipY) {\n const {segments, points} = target;\n let first = true;\n let lineLoop = false;\n\n ctx.beginPath();\n for (const segment of segments) {\n const {start, end} = segment;\n const firstPoint = points[start];\n const lastPoint = points[_findSegmentEnd(start, end, points)];\n if (first) {\n ctx.moveTo(firstPoint.x, firstPoint.y);\n first = false;\n } else {\n ctx.lineTo(firstPoint.x, clipY);\n ctx.lineTo(firstPoint.x, firstPoint.y);\n }\n lineLoop = !!target.pathSegment(ctx, segment, {move: lineLoop});\n if (lineLoop) {\n ctx.closePath();\n } else {\n ctx.lineTo(lastPoint.x, clipY);\n }\n }\n\n ctx.lineTo(target.first().x, clipY);\n ctx.closePath();\n ctx.clip();\n}\n\nfunction fill(ctx, cfg) {\n const {line, target, property, color, scale} = cfg;\n const segments = _segments(line, target, property);\n\n for (const {source: src, target: tgt, start, end} of segments) {\n const {style: {backgroundColor = color} = {}} = src;\n const notShape = target !== true;\n\n ctx.save();\n ctx.fillStyle = backgroundColor;\n\n clipBounds(ctx, scale, notShape && _getBounds(property, start, end));\n\n ctx.beginPath();\n\n const lineLoop = !!line.pathSegment(ctx, src);\n\n let loop;\n if (notShape) {\n if (lineLoop) {\n ctx.closePath();\n } else {\n interpolatedLineTo(ctx, target, end, property);\n }\n\n const targetLoop = !!target.pathSegment(ctx, tgt, {move: lineLoop, reverse: true});\n loop = lineLoop && targetLoop;\n if (!loop) {\n interpolatedLineTo(ctx, target, start, property);\n }\n }\n\n ctx.closePath();\n ctx.fill(loop ? 'evenodd' : 'nonzero');\n\n ctx.restore();\n }\n}\n\nfunction clipBounds(ctx, scale, bounds) {\n const {top, bottom} = scale.chart.chartArea;\n const {property, start, end} = bounds || {};\n if (property === 'x') {\n ctx.beginPath();\n ctx.rect(start, top, end - start, bottom - top);\n ctx.clip();\n }\n}\n\nfunction interpolatedLineTo(ctx, target, point, property) {\n const interpolatedPoint = target.interpolate(point, property);\n if (interpolatedPoint) {\n ctx.lineTo(interpolatedPoint.x, interpolatedPoint.y);\n }\n}\n\n","/**\n * Plugin based on discussion from the following Chart.js issues:\n * @see https://github.com/chartjs/Chart.js/issues/2380#issuecomment-279961569\n * @see https://github.com/chartjs/Chart.js/issues/2440#issuecomment-256461897\n */\n\nimport LineElement from '../../elements/element.line.js';\nimport {_drawfill} from './filler.drawing.js';\nimport {_shouldApplyFill} from './filler.helper.js';\nimport {_decodeFill, _resolveTarget} from './filler.options.js';\n\nexport default {\n id: 'filler',\n\n afterDatasetsUpdate(chart, _args, options) {\n const count = (chart.data.datasets || []).length;\n const sources = [];\n let meta, i, line, source;\n\n for (i = 0; i < count; ++i) {\n meta = chart.getDatasetMeta(i);\n line = meta.dataset;\n source = null;\n\n if (line && line.options && line instanceof LineElement) {\n source = {\n visible: chart.isDatasetVisible(i),\n index: i,\n fill: _decodeFill(line, i, count),\n chart,\n axis: meta.controller.options.indexAxis,\n scale: meta.vScale,\n line,\n };\n }\n\n meta.$filler = source;\n sources.push(source);\n }\n\n for (i = 0; i < count; ++i) {\n source = sources[i];\n if (!source || source.fill === false) {\n continue;\n }\n\n source.fill = _resolveTarget(sources, i, options.propagate);\n }\n },\n\n beforeDraw(chart, _args, options) {\n const draw = options.drawTime === 'beforeDraw';\n const metasets = chart.getSortedVisibleDatasetMetas();\n const area = chart.chartArea;\n for (let i = metasets.length - 1; i >= 0; --i) {\n const source = metasets[i].$filler;\n if (!source) {\n continue;\n }\n\n source.line.updateControlPoints(area, source.axis);\n if (draw && source.fill) {\n _drawfill(chart.ctx, source, area);\n }\n }\n },\n\n beforeDatasetsDraw(chart, _args, options) {\n if (options.drawTime !== 'beforeDatasetsDraw') {\n return;\n }\n\n const metasets = chart.getSortedVisibleDatasetMetas();\n for (let i = metasets.length - 1; i >= 0; --i) {\n const source = metasets[i].$filler;\n\n if (_shouldApplyFill(source)) {\n _drawfill(chart.ctx, source, chart.chartArea);\n }\n }\n },\n\n beforeDatasetDraw(chart, args, options) {\n const source = args.meta.$filler;\n\n if (!_shouldApplyFill(source) || options.drawTime !== 'beforeDatasetDraw') {\n return;\n }\n\n _drawfill(chart.ctx, source, chart.chartArea);\n },\n\n defaults: {\n propagate: true,\n drawTime: 'beforeDatasetDraw'\n }\n};\n","import defaults from '../core/core.defaults.js';\nimport Element from '../core/core.element.js';\nimport layouts from '../core/core.layouts.js';\nimport {addRoundedRectPath, drawPointLegend, renderText} from '../helpers/helpers.canvas.js';\nimport {\n _isBetween,\n callback as call,\n clipArea,\n getRtlAdapter,\n overrideTextDirection,\n restoreTextDirection,\n toFont,\n toPadding,\n unclipArea,\n valueOrDefault,\n} from '../helpers/index.js';\nimport {_alignStartEnd, _textX, _toLeftRightCenter} from '../helpers/helpers.extras.js';\nimport {toTRBLCorners} from '../helpers/helpers.options.js';\n\n/**\n * @typedef { import('../types/index.js').ChartEvent } ChartEvent\n */\n\nconst getBoxSize = (labelOpts, fontSize) => {\n let {boxHeight = fontSize, boxWidth = fontSize} = labelOpts;\n\n if (labelOpts.usePointStyle) {\n boxHeight = Math.min(boxHeight, fontSize);\n boxWidth = labelOpts.pointStyleWidth || Math.min(boxWidth, fontSize);\n }\n\n return {\n boxWidth,\n boxHeight,\n itemHeight: Math.max(fontSize, boxHeight)\n };\n};\n\nconst itemsEqual = (a, b) => a !== null && b !== null && a.datasetIndex === b.datasetIndex && a.index === b.index;\n\nexport class Legend extends Element {\n\n /**\n\t * @param {{ ctx: any; options: any; chart: any; }} config\n\t */\n constructor(config) {\n super();\n\n this._added = false;\n\n // Contains hit boxes for each dataset (in dataset order)\n this.legendHitBoxes = [];\n\n /**\n \t\t * @private\n \t\t */\n this._hoveredItem = null;\n\n // Are we in doughnut mode which has a different data type\n this.doughnutMode = false;\n\n this.chart = config.chart;\n this.options = config.options;\n this.ctx = config.ctx;\n this.legendItems = undefined;\n this.columnSizes = undefined;\n this.lineWidths = undefined;\n this.maxHeight = undefined;\n this.maxWidth = undefined;\n this.top = undefined;\n this.bottom = undefined;\n this.left = undefined;\n this.right = undefined;\n this.height = undefined;\n this.width = undefined;\n this._margins = undefined;\n this.position = undefined;\n this.weight = undefined;\n this.fullSize = undefined;\n }\n\n update(maxWidth, maxHeight, margins) {\n this.maxWidth = maxWidth;\n this.maxHeight = maxHeight;\n this._margins = margins;\n\n this.setDimensions();\n this.buildLabels();\n this.fit();\n }\n\n setDimensions() {\n if (this.isHorizontal()) {\n this.width = this.maxWidth;\n this.left = this._margins.left;\n this.right = this.width;\n } else {\n this.height = this.maxHeight;\n this.top = this._margins.top;\n this.bottom = this.height;\n }\n }\n\n buildLabels() {\n const labelOpts = this.options.labels || {};\n let legendItems = call(labelOpts.generateLabels, [this.chart], this) || [];\n\n if (labelOpts.filter) {\n legendItems = legendItems.filter((item) => labelOpts.filter(item, this.chart.data));\n }\n\n if (labelOpts.sort) {\n legendItems = legendItems.sort((a, b) => labelOpts.sort(a, b, this.chart.data));\n }\n\n if (this.options.reverse) {\n legendItems.reverse();\n }\n\n this.legendItems = legendItems;\n }\n\n fit() {\n const {options, ctx} = this;\n\n // The legend may not be displayed for a variety of reasons including\n // the fact that the defaults got set to `false`.\n // When the legend is not displayed, there are no guarantees that the options\n // are correctly formatted so we need to bail out as early as possible.\n if (!options.display) {\n this.width = this.height = 0;\n return;\n }\n\n const labelOpts = options.labels;\n const labelFont = toFont(labelOpts.font);\n const fontSize = labelFont.size;\n const titleHeight = this._computeTitleHeight();\n const {boxWidth, itemHeight} = getBoxSize(labelOpts, fontSize);\n\n let width, height;\n\n ctx.font = labelFont.string;\n\n if (this.isHorizontal()) {\n width = this.maxWidth; // fill all the width\n height = this._fitRows(titleHeight, fontSize, boxWidth, itemHeight) + 10;\n } else {\n height = this.maxHeight; // fill all the height\n width = this._fitCols(titleHeight, labelFont, boxWidth, itemHeight) + 10;\n }\n\n this.width = Math.min(width, options.maxWidth || this.maxWidth);\n this.height = Math.min(height, options.maxHeight || this.maxHeight);\n }\n\n /**\n\t * @private\n\t */\n _fitRows(titleHeight, fontSize, boxWidth, itemHeight) {\n const {ctx, maxWidth, options: {labels: {padding}}} = this;\n const hitboxes = this.legendHitBoxes = [];\n // Width of each line of legend boxes. Labels wrap onto multiple lines when there are too many to fit on one\n const lineWidths = this.lineWidths = [0];\n const lineHeight = itemHeight + padding;\n let totalHeight = titleHeight;\n\n ctx.textAlign = 'left';\n ctx.textBaseline = 'middle';\n\n let row = -1;\n let top = -lineHeight;\n this.legendItems.forEach((legendItem, i) => {\n const itemWidth = boxWidth + (fontSize / 2) + ctx.measureText(legendItem.text).width;\n\n if (i === 0 || lineWidths[lineWidths.length - 1] + itemWidth + 2 * padding > maxWidth) {\n totalHeight += lineHeight;\n lineWidths[lineWidths.length - (i > 0 ? 0 : 1)] = 0;\n top += lineHeight;\n row++;\n }\n\n hitboxes[i] = {left: 0, top, row, width: itemWidth, height: itemHeight};\n\n lineWidths[lineWidths.length - 1] += itemWidth + padding;\n });\n\n return totalHeight;\n }\n\n _fitCols(titleHeight, labelFont, boxWidth, _itemHeight) {\n const {ctx, maxHeight, options: {labels: {padding}}} = this;\n const hitboxes = this.legendHitBoxes = [];\n const columnSizes = this.columnSizes = [];\n const heightLimit = maxHeight - titleHeight;\n\n let totalWidth = padding;\n let currentColWidth = 0;\n let currentColHeight = 0;\n\n let left = 0;\n let col = 0;\n\n this.legendItems.forEach((legendItem, i) => {\n const {itemWidth, itemHeight} = calculateItemSize(boxWidth, labelFont, ctx, legendItem, _itemHeight);\n\n // If too tall, go to new column\n if (i > 0 && currentColHeight + itemHeight + 2 * padding > heightLimit) {\n totalWidth += currentColWidth + padding;\n columnSizes.push({width: currentColWidth, height: currentColHeight}); // previous column size\n left += currentColWidth + padding;\n col++;\n currentColWidth = currentColHeight = 0;\n }\n\n // Store the hitbox width and height here. Final position will be updated in `draw`\n hitboxes[i] = {left, top: currentColHeight, col, width: itemWidth, height: itemHeight};\n\n // Get max width\n currentColWidth = Math.max(currentColWidth, itemWidth);\n currentColHeight += itemHeight + padding;\n });\n\n totalWidth += currentColWidth;\n columnSizes.push({width: currentColWidth, height: currentColHeight}); // previous column size\n\n return totalWidth;\n }\n\n adjustHitBoxes() {\n if (!this.options.display) {\n return;\n }\n const titleHeight = this._computeTitleHeight();\n const {legendHitBoxes: hitboxes, options: {align, labels: {padding}, rtl}} = this;\n const rtlHelper = getRtlAdapter(rtl, this.left, this.width);\n if (this.isHorizontal()) {\n let row = 0;\n let left = _alignStartEnd(align, this.left + padding, this.right - this.lineWidths[row]);\n for (const hitbox of hitboxes) {\n if (row !== hitbox.row) {\n row = hitbox.row;\n left = _alignStartEnd(align, this.left + padding, this.right - this.lineWidths[row]);\n }\n hitbox.top += this.top + titleHeight + padding;\n hitbox.left = rtlHelper.leftForLtr(rtlHelper.x(left), hitbox.width);\n left += hitbox.width + padding;\n }\n } else {\n let col = 0;\n let top = _alignStartEnd(align, this.top + titleHeight + padding, this.bottom - this.columnSizes[col].height);\n for (const hitbox of hitboxes) {\n if (hitbox.col !== col) {\n col = hitbox.col;\n top = _alignStartEnd(align, this.top + titleHeight + padding, this.bottom - this.columnSizes[col].height);\n }\n hitbox.top = top;\n hitbox.left += this.left + padding;\n hitbox.left = rtlHelper.leftForLtr(rtlHelper.x(hitbox.left), hitbox.width);\n top += hitbox.height + padding;\n }\n }\n }\n\n isHorizontal() {\n return this.options.position === 'top' || this.options.position === 'bottom';\n }\n\n draw() {\n if (this.options.display) {\n const ctx = this.ctx;\n clipArea(ctx, this);\n\n this._draw();\n\n unclipArea(ctx);\n }\n }\n\n /**\n\t * @private\n\t */\n _draw() {\n const {options: opts, columnSizes, lineWidths, ctx} = this;\n const {align, labels: labelOpts} = opts;\n const defaultColor = defaults.color;\n const rtlHelper = getRtlAdapter(opts.rtl, this.left, this.width);\n const labelFont = toFont(labelOpts.font);\n const {padding} = labelOpts;\n const fontSize = labelFont.size;\n const halfFontSize = fontSize / 2;\n let cursor;\n\n this.drawTitle();\n\n // Canvas setup\n ctx.textAlign = rtlHelper.textAlign('left');\n ctx.textBaseline = 'middle';\n ctx.lineWidth = 0.5;\n ctx.font = labelFont.string;\n\n const {boxWidth, boxHeight, itemHeight} = getBoxSize(labelOpts, fontSize);\n\n // current position\n const drawLegendBox = function(x, y, legendItem) {\n if (isNaN(boxWidth) || boxWidth <= 0 || isNaN(boxHeight) || boxHeight < 0) {\n return;\n }\n\n // Set the ctx for the box\n ctx.save();\n\n const lineWidth = valueOrDefault(legendItem.lineWidth, 1);\n ctx.fillStyle = valueOrDefault(legendItem.fillStyle, defaultColor);\n ctx.lineCap = valueOrDefault(legendItem.lineCap, 'butt');\n ctx.lineDashOffset = valueOrDefault(legendItem.lineDashOffset, 0);\n ctx.lineJoin = valueOrDefault(legendItem.lineJoin, 'miter');\n ctx.lineWidth = lineWidth;\n ctx.strokeStyle = valueOrDefault(legendItem.strokeStyle, defaultColor);\n\n ctx.setLineDash(valueOrDefault(legendItem.lineDash, []));\n\n if (labelOpts.usePointStyle) {\n // Recalculate x and y for drawPoint() because its expecting\n // x and y to be center of figure (instead of top left)\n const drawOptions = {\n radius: boxHeight * Math.SQRT2 / 2,\n pointStyle: legendItem.pointStyle,\n rotation: legendItem.rotation,\n borderWidth: lineWidth\n };\n const centerX = rtlHelper.xPlus(x, boxWidth / 2);\n const centerY = y + halfFontSize;\n\n // Draw pointStyle as legend symbol\n drawPointLegend(ctx, drawOptions, centerX, centerY, labelOpts.pointStyleWidth && boxWidth);\n } else {\n // Draw box as legend symbol\n // Adjust position when boxHeight < fontSize (want it centered)\n const yBoxTop = y + Math.max((fontSize - boxHeight) / 2, 0);\n const xBoxLeft = rtlHelper.leftForLtr(x, boxWidth);\n const borderRadius = toTRBLCorners(legendItem.borderRadius);\n\n ctx.beginPath();\n\n if (Object.values(borderRadius).some(v => v !== 0)) {\n addRoundedRectPath(ctx, {\n x: xBoxLeft,\n y: yBoxTop,\n w: boxWidth,\n h: boxHeight,\n radius: borderRadius,\n });\n } else {\n ctx.rect(xBoxLeft, yBoxTop, boxWidth, boxHeight);\n }\n\n ctx.fill();\n if (lineWidth !== 0) {\n ctx.stroke();\n }\n }\n\n ctx.restore();\n };\n\n const fillText = function(x, y, legendItem) {\n renderText(ctx, legendItem.text, x, y + (itemHeight / 2), labelFont, {\n strikethrough: legendItem.hidden,\n textAlign: rtlHelper.textAlign(legendItem.textAlign)\n });\n };\n\n // Horizontal\n const isHorizontal = this.isHorizontal();\n const titleHeight = this._computeTitleHeight();\n if (isHorizontal) {\n cursor = {\n x: _alignStartEnd(align, this.left + padding, this.right - lineWidths[0]),\n y: this.top + padding + titleHeight,\n line: 0\n };\n } else {\n cursor = {\n x: this.left + padding,\n y: _alignStartEnd(align, this.top + titleHeight + padding, this.bottom - columnSizes[0].height),\n line: 0\n };\n }\n\n overrideTextDirection(this.ctx, opts.textDirection);\n\n const lineHeight = itemHeight + padding;\n this.legendItems.forEach((legendItem, i) => {\n ctx.strokeStyle = legendItem.fontColor; // for strikethrough effect\n ctx.fillStyle = legendItem.fontColor; // render in correct colour\n\n const textWidth = ctx.measureText(legendItem.text).width;\n const textAlign = rtlHelper.textAlign(legendItem.textAlign || (legendItem.textAlign = labelOpts.textAlign));\n const width = boxWidth + halfFontSize + textWidth;\n let x = cursor.x;\n let y = cursor.y;\n\n rtlHelper.setWidth(this.width);\n\n if (isHorizontal) {\n if (i > 0 && x + width + padding > this.right) {\n y = cursor.y += lineHeight;\n cursor.line++;\n x = cursor.x = _alignStartEnd(align, this.left + padding, this.right - lineWidths[cursor.line]);\n }\n } else if (i > 0 && y + lineHeight > this.bottom) {\n x = cursor.x = x + columnSizes[cursor.line].width + padding;\n cursor.line++;\n y = cursor.y = _alignStartEnd(align, this.top + titleHeight + padding, this.bottom - columnSizes[cursor.line].height);\n }\n\n const realX = rtlHelper.x(x);\n\n drawLegendBox(realX, y, legendItem);\n\n x = _textX(textAlign, x + boxWidth + halfFontSize, isHorizontal ? x + width : this.right, opts.rtl);\n\n // Fill the actual label\n fillText(rtlHelper.x(x), y, legendItem);\n\n if (isHorizontal) {\n cursor.x += width + padding;\n } else if (typeof legendItem.text !== 'string') {\n const fontLineHeight = labelFont.lineHeight;\n cursor.y += calculateLegendItemHeight(legendItem, fontLineHeight);\n } else {\n cursor.y += lineHeight;\n }\n });\n\n restoreTextDirection(this.ctx, opts.textDirection);\n }\n\n /**\n\t * @protected\n\t */\n drawTitle() {\n const opts = this.options;\n const titleOpts = opts.title;\n const titleFont = toFont(titleOpts.font);\n const titlePadding = toPadding(titleOpts.padding);\n\n if (!titleOpts.display) {\n return;\n }\n\n const rtlHelper = getRtlAdapter(opts.rtl, this.left, this.width);\n const ctx = this.ctx;\n const position = titleOpts.position;\n const halfFontSize = titleFont.size / 2;\n const topPaddingPlusHalfFontSize = titlePadding.top + halfFontSize;\n let y;\n\n // These defaults are used when the legend is vertical.\n // When horizontal, they are computed below.\n let left = this.left;\n let maxWidth = this.width;\n\n if (this.isHorizontal()) {\n // Move left / right so that the title is above the legend lines\n maxWidth = Math.max(...this.lineWidths);\n y = this.top + topPaddingPlusHalfFontSize;\n left = _alignStartEnd(opts.align, left, this.right - maxWidth);\n } else {\n // Move down so that the title is above the legend stack in every alignment\n const maxHeight = this.columnSizes.reduce((acc, size) => Math.max(acc, size.height), 0);\n y = topPaddingPlusHalfFontSize + _alignStartEnd(opts.align, this.top, this.bottom - maxHeight - opts.labels.padding - this._computeTitleHeight());\n }\n\n // Now that we know the left edge of the inner legend box, compute the correct\n // X coordinate from the title alignment\n const x = _alignStartEnd(position, left, left + maxWidth);\n\n // Canvas setup\n ctx.textAlign = rtlHelper.textAlign(_toLeftRightCenter(position));\n ctx.textBaseline = 'middle';\n ctx.strokeStyle = titleOpts.color;\n ctx.fillStyle = titleOpts.color;\n ctx.font = titleFont.string;\n\n renderText(ctx, titleOpts.text, x, y, titleFont);\n }\n\n /**\n\t * @private\n\t */\n _computeTitleHeight() {\n const titleOpts = this.options.title;\n const titleFont = toFont(titleOpts.font);\n const titlePadding = toPadding(titleOpts.padding);\n return titleOpts.display ? titleFont.lineHeight + titlePadding.height : 0;\n }\n\n /**\n\t * @private\n\t */\n _getLegendItemAt(x, y) {\n let i, hitBox, lh;\n\n if (_isBetween(x, this.left, this.right)\n && _isBetween(y, this.top, this.bottom)) {\n // See if we are touching one of the dataset boxes\n lh = this.legendHitBoxes;\n for (i = 0; i < lh.length; ++i) {\n hitBox = lh[i];\n\n if (_isBetween(x, hitBox.left, hitBox.left + hitBox.width)\n && _isBetween(y, hitBox.top, hitBox.top + hitBox.height)) {\n // Touching an element\n return this.legendItems[i];\n }\n }\n }\n\n return null;\n }\n\n /**\n\t * Handle an event\n\t * @param {ChartEvent} e - The event to handle\n\t */\n handleEvent(e) {\n const opts = this.options;\n if (!isListened(e.type, opts)) {\n return;\n }\n\n // Chart event already has relative position in it\n const hoveredItem = this._getLegendItemAt(e.x, e.y);\n\n if (e.type === 'mousemove' || e.type === 'mouseout') {\n const previous = this._hoveredItem;\n const sameItem = itemsEqual(previous, hoveredItem);\n if (previous && !sameItem) {\n call(opts.onLeave, [e, previous, this], this);\n }\n\n this._hoveredItem = hoveredItem;\n\n if (hoveredItem && !sameItem) {\n call(opts.onHover, [e, hoveredItem, this], this);\n }\n } else if (hoveredItem) {\n call(opts.onClick, [e, hoveredItem, this], this);\n }\n }\n}\n\nfunction calculateItemSize(boxWidth, labelFont, ctx, legendItem, _itemHeight) {\n const itemWidth = calculateItemWidth(legendItem, boxWidth, labelFont, ctx);\n const itemHeight = calculateItemHeight(_itemHeight, legendItem, labelFont.lineHeight);\n return {itemWidth, itemHeight};\n}\n\nfunction calculateItemWidth(legendItem, boxWidth, labelFont, ctx) {\n let legendItemText = legendItem.text;\n if (legendItemText && typeof legendItemText !== 'string') {\n legendItemText = legendItemText.reduce((a, b) => a.length > b.length ? a : b);\n }\n return boxWidth + (labelFont.size / 2) + ctx.measureText(legendItemText).width;\n}\n\nfunction calculateItemHeight(_itemHeight, legendItem, fontLineHeight) {\n let itemHeight = _itemHeight;\n if (typeof legendItem.text !== 'string') {\n itemHeight = calculateLegendItemHeight(legendItem, fontLineHeight);\n }\n return itemHeight;\n}\n\nfunction calculateLegendItemHeight(legendItem, fontLineHeight) {\n const labelHeight = legendItem.text ? legendItem.text.length + 0.5 : 0;\n return fontLineHeight * labelHeight;\n}\n\nfunction isListened(type, opts) {\n if ((type === 'mousemove' || type === 'mouseout') && (opts.onHover || opts.onLeave)) {\n return true;\n }\n if (opts.onClick && (type === 'click' || type === 'mouseup')) {\n return true;\n }\n return false;\n}\n\nexport default {\n id: 'legend',\n\n /**\n\t * For tests\n\t * @private\n\t */\n _element: Legend,\n\n start(chart, _args, options) {\n const legend = chart.legend = new Legend({ctx: chart.ctx, options, chart});\n layouts.configure(chart, legend, options);\n layouts.addBox(chart, legend);\n },\n\n stop(chart) {\n layouts.removeBox(chart, chart.legend);\n delete chart.legend;\n },\n\n // During the beforeUpdate step, the layout configuration needs to run\n // This ensures that if the legend position changes (via an option update)\n // the layout system respects the change. See https://github.com/chartjs/Chart.js/issues/7527\n beforeUpdate(chart, _args, options) {\n const legend = chart.legend;\n layouts.configure(chart, legend, options);\n legend.options = options;\n },\n\n // The labels need to be built after datasets are updated to ensure that colors\n // and other styling are correct. See https://github.com/chartjs/Chart.js/issues/6968\n afterUpdate(chart) {\n const legend = chart.legend;\n legend.buildLabels();\n legend.adjustHitBoxes();\n },\n\n\n afterEvent(chart, args) {\n if (!args.replay) {\n chart.legend.handleEvent(args.event);\n }\n },\n\n defaults: {\n display: true,\n position: 'top',\n align: 'center',\n fullSize: true,\n reverse: false,\n weight: 1000,\n\n // a callback that will handle\n onClick(e, legendItem, legend) {\n const index = legendItem.datasetIndex;\n const ci = legend.chart;\n if (ci.isDatasetVisible(index)) {\n ci.hide(index);\n legendItem.hidden = true;\n } else {\n ci.show(index);\n legendItem.hidden = false;\n }\n },\n\n onHover: null,\n onLeave: null,\n\n labels: {\n color: (ctx) => ctx.chart.options.color,\n boxWidth: 40,\n padding: 10,\n // Generates labels shown in the legend\n // Valid properties to return:\n // text : text to display\n // fillStyle : fill of coloured box\n // strokeStyle: stroke of coloured box\n // hidden : if this legend item refers to a hidden item\n // lineCap : cap style for line\n // lineDash\n // lineDashOffset :\n // lineJoin :\n // lineWidth :\n generateLabels(chart) {\n const datasets = chart.data.datasets;\n const {labels: {usePointStyle, pointStyle, textAlign, color, useBorderRadius, borderRadius}} = chart.legend.options;\n\n return chart._getSortedDatasetMetas().map((meta) => {\n const style = meta.controller.getStyle(usePointStyle ? 0 : undefined);\n const borderWidth = toPadding(style.borderWidth);\n\n return {\n text: datasets[meta.index].label,\n fillStyle: style.backgroundColor,\n fontColor: color,\n hidden: !meta.visible,\n lineCap: style.borderCapStyle,\n lineDash: style.borderDash,\n lineDashOffset: style.borderDashOffset,\n lineJoin: style.borderJoinStyle,\n lineWidth: (borderWidth.width + borderWidth.height) / 4,\n strokeStyle: style.borderColor,\n pointStyle: pointStyle || style.pointStyle,\n rotation: style.rotation,\n textAlign: textAlign || style.textAlign,\n borderRadius: useBorderRadius && (borderRadius || style.borderRadius),\n\n // Below is extra data used for toggling the datasets\n datasetIndex: meta.index\n };\n }, this);\n }\n },\n\n title: {\n color: (ctx) => ctx.chart.options.color,\n display: false,\n position: 'center',\n text: '',\n }\n },\n\n descriptors: {\n _scriptable: (name) => !name.startsWith('on'),\n labels: {\n _scriptable: (name) => !['generateLabels', 'filter', 'sort'].includes(name),\n }\n },\n};\n","import Element from '../core/core.element.js';\nimport layouts from '../core/core.layouts.js';\nimport {PI, isArray, toPadding, toFont} from '../helpers/index.js';\nimport {_toLeftRightCenter, _alignStartEnd} from '../helpers/helpers.extras.js';\nimport {renderText} from '../helpers/helpers.canvas.js';\n\nexport class Title extends Element {\n /**\n\t * @param {{ ctx: any; options: any; chart: any; }} config\n\t */\n constructor(config) {\n super();\n\n this.chart = config.chart;\n this.options = config.options;\n this.ctx = config.ctx;\n this._padding = undefined;\n this.top = undefined;\n this.bottom = undefined;\n this.left = undefined;\n this.right = undefined;\n this.width = undefined;\n this.height = undefined;\n this.position = undefined;\n this.weight = undefined;\n this.fullSize = undefined;\n }\n\n update(maxWidth, maxHeight) {\n const opts = this.options;\n\n this.left = 0;\n this.top = 0;\n\n if (!opts.display) {\n this.width = this.height = this.right = this.bottom = 0;\n return;\n }\n\n this.width = this.right = maxWidth;\n this.height = this.bottom = maxHeight;\n\n const lineCount = isArray(opts.text) ? opts.text.length : 1;\n this._padding = toPadding(opts.padding);\n const textSize = lineCount * toFont(opts.font).lineHeight + this._padding.height;\n\n if (this.isHorizontal()) {\n this.height = textSize;\n } else {\n this.width = textSize;\n }\n }\n\n isHorizontal() {\n const pos = this.options.position;\n return pos === 'top' || pos === 'bottom';\n }\n\n _drawArgs(offset) {\n const {top, left, bottom, right, options} = this;\n const align = options.align;\n let rotation = 0;\n let maxWidth, titleX, titleY;\n\n if (this.isHorizontal()) {\n titleX = _alignStartEnd(align, left, right);\n titleY = top + offset;\n maxWidth = right - left;\n } else {\n if (options.position === 'left') {\n titleX = left + offset;\n titleY = _alignStartEnd(align, bottom, top);\n rotation = PI * -0.5;\n } else {\n titleX = right - offset;\n titleY = _alignStartEnd(align, top, bottom);\n rotation = PI * 0.5;\n }\n maxWidth = bottom - top;\n }\n return {titleX, titleY, maxWidth, rotation};\n }\n\n draw() {\n const ctx = this.ctx;\n const opts = this.options;\n\n if (!opts.display) {\n return;\n }\n\n const fontOpts = toFont(opts.font);\n const lineHeight = fontOpts.lineHeight;\n const offset = lineHeight / 2 + this._padding.top;\n const {titleX, titleY, maxWidth, rotation} = this._drawArgs(offset);\n\n renderText(ctx, opts.text, 0, 0, fontOpts, {\n color: opts.color,\n maxWidth,\n rotation,\n textAlign: _toLeftRightCenter(opts.align),\n textBaseline: 'middle',\n translation: [titleX, titleY],\n });\n }\n}\n\nfunction createTitle(chart, titleOpts) {\n const title = new Title({\n ctx: chart.ctx,\n options: titleOpts,\n chart\n });\n\n layouts.configure(chart, title, titleOpts);\n layouts.addBox(chart, title);\n chart.titleBlock = title;\n}\n\nexport default {\n id: 'title',\n\n /**\n\t * For tests\n\t * @private\n\t */\n _element: Title,\n\n start(chart, _args, options) {\n createTitle(chart, options);\n },\n\n stop(chart) {\n const titleBlock = chart.titleBlock;\n layouts.removeBox(chart, titleBlock);\n delete chart.titleBlock;\n },\n\n beforeUpdate(chart, _args, options) {\n const title = chart.titleBlock;\n layouts.configure(chart, title, options);\n title.options = options;\n },\n\n defaults: {\n align: 'center',\n display: false,\n font: {\n weight: 'bold',\n },\n fullSize: true,\n padding: 10,\n position: 'top',\n text: '',\n weight: 2000 // by default greater than legend (1000) to be above\n },\n\n defaultRoutes: {\n color: 'color'\n },\n\n descriptors: {\n _scriptable: true,\n _indexable: false,\n },\n};\n","import {Title} from './plugin.title.js';\nimport layouts from '../core/core.layouts.js';\n\nconst map = new WeakMap();\n\nexport default {\n id: 'subtitle',\n\n start(chart, _args, options) {\n const title = new Title({\n ctx: chart.ctx,\n options,\n chart\n });\n\n layouts.configure(chart, title, options);\n layouts.addBox(chart, title);\n map.set(chart, title);\n },\n\n stop(chart) {\n layouts.removeBox(chart, map.get(chart));\n map.delete(chart);\n },\n\n beforeUpdate(chart, _args, options) {\n const title = map.get(chart);\n layouts.configure(chart, title, options);\n title.options = options;\n },\n\n defaults: {\n align: 'center',\n display: false,\n font: {\n weight: 'normal',\n },\n fullSize: true,\n padding: 0,\n position: 'top',\n text: '',\n weight: 1500 // by default greater than legend (1000) and smaller than title (2000)\n },\n\n defaultRoutes: {\n color: 'color'\n },\n\n descriptors: {\n _scriptable: true,\n _indexable: false,\n },\n};\n","import Animations from '../core/core.animations.js';\nimport Element from '../core/core.element.js';\nimport {addRoundedRectPath} from '../helpers/helpers.canvas.js';\nimport {each, noop, isNullOrUndef, isArray, _elementsEqual, isObject} from '../helpers/helpers.core.js';\nimport {toFont, toPadding, toTRBLCorners} from '../helpers/helpers.options.js';\nimport {getRtlAdapter, overrideTextDirection, restoreTextDirection} from '../helpers/helpers.rtl.js';\nimport {distanceBetweenPoints, _limitValue} from '../helpers/helpers.math.js';\nimport {createContext, drawPoint} from '../helpers/index.js';\n\n/**\n * @typedef { import('../platform/platform.base.js').Chart } Chart\n * @typedef { import('../types/index.js').ChartEvent } ChartEvent\n * @typedef { import('../types/index.js').ActiveElement } ActiveElement\n * @typedef { import('../core/core.interaction.js').InteractionItem } InteractionItem\n */\n\nconst positioners = {\n /**\n\t * Average mode places the tooltip at the average position of the elements shown\n\t */\n average(items) {\n if (!items.length) {\n return false;\n }\n\n let i, len;\n let x = 0;\n let y = 0;\n let count = 0;\n\n for (i = 0, len = items.length; i < len; ++i) {\n const el = items[i].element;\n if (el && el.hasValue()) {\n const pos = el.tooltipPosition();\n x += pos.x;\n y += pos.y;\n ++count;\n }\n }\n\n return {\n x: x / count,\n y: y / count\n };\n },\n\n /**\n\t * Gets the tooltip position nearest of the item nearest to the event position\n\t */\n nearest(items, eventPosition) {\n if (!items.length) {\n return false;\n }\n\n let x = eventPosition.x;\n let y = eventPosition.y;\n let minDistance = Number.POSITIVE_INFINITY;\n let i, len, nearestElement;\n\n for (i = 0, len = items.length; i < len; ++i) {\n const el = items[i].element;\n if (el && el.hasValue()) {\n const center = el.getCenterPoint();\n const d = distanceBetweenPoints(eventPosition, center);\n\n if (d < minDistance) {\n minDistance = d;\n nearestElement = el;\n }\n }\n }\n\n if (nearestElement) {\n const tp = nearestElement.tooltipPosition();\n x = tp.x;\n y = tp.y;\n }\n\n return {\n x,\n y\n };\n }\n};\n\n// Helper to push or concat based on if the 2nd parameter is an array or not\nfunction pushOrConcat(base, toPush) {\n if (toPush) {\n if (isArray(toPush)) {\n // base = base.concat(toPush);\n Array.prototype.push.apply(base, toPush);\n } else {\n base.push(toPush);\n }\n }\n\n return base;\n}\n\n/**\n * Returns array of strings split by newline\n * @param {*} str - The value to split by newline.\n * @returns {string|string[]} value if newline present - Returned from String split() method\n * @function\n */\nfunction splitNewlines(str) {\n if ((typeof str === 'string' || str instanceof String) && str.indexOf('\\n') > -1) {\n return str.split('\\n');\n }\n return str;\n}\n\n\n/**\n * Private helper to create a tooltip item model\n * @param {Chart} chart\n * @param {ActiveElement} item - {element, index, datasetIndex} to create the tooltip item for\n * @return new tooltip item\n */\nfunction createTooltipItem(chart, item) {\n const {element, datasetIndex, index} = item;\n const controller = chart.getDatasetMeta(datasetIndex).controller;\n const {label, value} = controller.getLabelAndValue(index);\n\n return {\n chart,\n label,\n parsed: controller.getParsed(index),\n raw: chart.data.datasets[datasetIndex].data[index],\n formattedValue: value,\n dataset: controller.getDataset(),\n dataIndex: index,\n datasetIndex,\n element\n };\n}\n\n/**\n * Get the size of the tooltip\n */\nfunction getTooltipSize(tooltip, options) {\n const ctx = tooltip.chart.ctx;\n const {body, footer, title} = tooltip;\n const {boxWidth, boxHeight} = options;\n const bodyFont = toFont(options.bodyFont);\n const titleFont = toFont(options.titleFont);\n const footerFont = toFont(options.footerFont);\n const titleLineCount = title.length;\n const footerLineCount = footer.length;\n const bodyLineItemCount = body.length;\n\n const padding = toPadding(options.padding);\n let height = padding.height;\n let width = 0;\n\n // Count of all lines in the body\n let combinedBodyLength = body.reduce((count, bodyItem) => count + bodyItem.before.length + bodyItem.lines.length + bodyItem.after.length, 0);\n combinedBodyLength += tooltip.beforeBody.length + tooltip.afterBody.length;\n\n if (titleLineCount) {\n height += titleLineCount * titleFont.lineHeight\n\t\t\t+ (titleLineCount - 1) * options.titleSpacing\n\t\t\t+ options.titleMarginBottom;\n }\n if (combinedBodyLength) {\n // Body lines may include some extra height depending on boxHeight\n const bodyLineHeight = options.displayColors ? Math.max(boxHeight, bodyFont.lineHeight) : bodyFont.lineHeight;\n height += bodyLineItemCount * bodyLineHeight\n\t\t\t+ (combinedBodyLength - bodyLineItemCount) * bodyFont.lineHeight\n\t\t\t+ (combinedBodyLength - 1) * options.bodySpacing;\n }\n if (footerLineCount) {\n height += options.footerMarginTop\n\t\t\t+ footerLineCount * footerFont.lineHeight\n\t\t\t+ (footerLineCount - 1) * options.footerSpacing;\n }\n\n // Title width\n let widthPadding = 0;\n const maxLineWidth = function(line) {\n width = Math.max(width, ctx.measureText(line).width + widthPadding);\n };\n\n ctx.save();\n\n ctx.font = titleFont.string;\n each(tooltip.title, maxLineWidth);\n\n // Body width\n ctx.font = bodyFont.string;\n each(tooltip.beforeBody.concat(tooltip.afterBody), maxLineWidth);\n\n // Body lines may include some extra width due to the color box\n widthPadding = options.displayColors ? (boxWidth + 2 + options.boxPadding) : 0;\n each(body, (bodyItem) => {\n each(bodyItem.before, maxLineWidth);\n each(bodyItem.lines, maxLineWidth);\n each(bodyItem.after, maxLineWidth);\n });\n\n // Reset back to 0\n widthPadding = 0;\n\n // Footer width\n ctx.font = footerFont.string;\n each(tooltip.footer, maxLineWidth);\n\n ctx.restore();\n\n // Add padding\n width += padding.width;\n\n return {width, height};\n}\n\nfunction determineYAlign(chart, size) {\n const {y, height} = size;\n\n if (y < height / 2) {\n return 'top';\n } else if (y > (chart.height - height / 2)) {\n return 'bottom';\n }\n return 'center';\n}\n\nfunction doesNotFitWithAlign(xAlign, chart, options, size) {\n const {x, width} = size;\n const caret = options.caretSize + options.caretPadding;\n if (xAlign === 'left' && x + width + caret > chart.width) {\n return true;\n }\n\n if (xAlign === 'right' && x - width - caret < 0) {\n return true;\n }\n}\n\nfunction determineXAlign(chart, options, size, yAlign) {\n const {x, width} = size;\n const {width: chartWidth, chartArea: {left, right}} = chart;\n let xAlign = 'center';\n\n if (yAlign === 'center') {\n xAlign = x <= (left + right) / 2 ? 'left' : 'right';\n } else if (x <= width / 2) {\n xAlign = 'left';\n } else if (x >= chartWidth - width / 2) {\n xAlign = 'right';\n }\n\n if (doesNotFitWithAlign(xAlign, chart, options, size)) {\n xAlign = 'center';\n }\n\n return xAlign;\n}\n\n/**\n * Helper to get the alignment of a tooltip given the size\n */\nfunction determineAlignment(chart, options, size) {\n const yAlign = size.yAlign || options.yAlign || determineYAlign(chart, size);\n\n return {\n xAlign: size.xAlign || options.xAlign || determineXAlign(chart, options, size, yAlign),\n yAlign\n };\n}\n\nfunction alignX(size, xAlign) {\n let {x, width} = size;\n if (xAlign === 'right') {\n x -= width;\n } else if (xAlign === 'center') {\n x -= (width / 2);\n }\n return x;\n}\n\nfunction alignY(size, yAlign, paddingAndSize) {\n // eslint-disable-next-line prefer-const\n let {y, height} = size;\n if (yAlign === 'top') {\n y += paddingAndSize;\n } else if (yAlign === 'bottom') {\n y -= height + paddingAndSize;\n } else {\n y -= (height / 2);\n }\n return y;\n}\n\n/**\n * Helper to get the location a tooltip needs to be placed at given the initial position (via the vm) and the size and alignment\n */\nfunction getBackgroundPoint(options, size, alignment, chart) {\n const {caretSize, caretPadding, cornerRadius} = options;\n const {xAlign, yAlign} = alignment;\n const paddingAndSize = caretSize + caretPadding;\n const {topLeft, topRight, bottomLeft, bottomRight} = toTRBLCorners(cornerRadius);\n\n let x = alignX(size, xAlign);\n const y = alignY(size, yAlign, paddingAndSize);\n\n if (yAlign === 'center') {\n if (xAlign === 'left') {\n x += paddingAndSize;\n } else if (xAlign === 'right') {\n x -= paddingAndSize;\n }\n } else if (xAlign === 'left') {\n x -= Math.max(topLeft, bottomLeft) + caretSize;\n } else if (xAlign === 'right') {\n x += Math.max(topRight, bottomRight) + caretSize;\n }\n\n return {\n x: _limitValue(x, 0, chart.width - size.width),\n y: _limitValue(y, 0, chart.height - size.height)\n };\n}\n\nfunction getAlignedX(tooltip, align, options) {\n const padding = toPadding(options.padding);\n\n return align === 'center'\n ? tooltip.x + tooltip.width / 2\n : align === 'right'\n ? tooltip.x + tooltip.width - padding.right\n : tooltip.x + padding.left;\n}\n\n/**\n * Helper to build before and after body lines\n */\nfunction getBeforeAfterBodyLines(callback) {\n return pushOrConcat([], splitNewlines(callback));\n}\n\nfunction createTooltipContext(parent, tooltip, tooltipItems) {\n return createContext(parent, {\n tooltip,\n tooltipItems,\n type: 'tooltip'\n });\n}\n\nfunction overrideCallbacks(callbacks, context) {\n const override = context && context.dataset && context.dataset.tooltip && context.dataset.tooltip.callbacks;\n return override ? callbacks.override(override) : callbacks;\n}\n\nconst defaultCallbacks = {\n // Args are: (tooltipItems, data)\n beforeTitle: noop,\n title(tooltipItems) {\n if (tooltipItems.length > 0) {\n const item = tooltipItems[0];\n const labels = item.chart.data.labels;\n const labelCount = labels ? labels.length : 0;\n\n if (this && this.options && this.options.mode === 'dataset') {\n return item.dataset.label || '';\n } else if (item.label) {\n return item.label;\n } else if (labelCount > 0 && item.dataIndex < labelCount) {\n return labels[item.dataIndex];\n }\n }\n\n return '';\n },\n afterTitle: noop,\n\n // Args are: (tooltipItems, data)\n beforeBody: noop,\n\n // Args are: (tooltipItem, data)\n beforeLabel: noop,\n label(tooltipItem) {\n if (this && this.options && this.options.mode === 'dataset') {\n return tooltipItem.label + ': ' + tooltipItem.formattedValue || tooltipItem.formattedValue;\n }\n\n let label = tooltipItem.dataset.label || '';\n\n if (label) {\n label += ': ';\n }\n const value = tooltipItem.formattedValue;\n if (!isNullOrUndef(value)) {\n label += value;\n }\n return label;\n },\n labelColor(tooltipItem) {\n const meta = tooltipItem.chart.getDatasetMeta(tooltipItem.datasetIndex);\n const options = meta.controller.getStyle(tooltipItem.dataIndex);\n return {\n borderColor: options.borderColor,\n backgroundColor: options.backgroundColor,\n borderWidth: options.borderWidth,\n borderDash: options.borderDash,\n borderDashOffset: options.borderDashOffset,\n borderRadius: 0,\n };\n },\n labelTextColor() {\n return this.options.bodyColor;\n },\n labelPointStyle(tooltipItem) {\n const meta = tooltipItem.chart.getDatasetMeta(tooltipItem.datasetIndex);\n const options = meta.controller.getStyle(tooltipItem.dataIndex);\n return {\n pointStyle: options.pointStyle,\n rotation: options.rotation,\n };\n },\n afterLabel: noop,\n\n // Args are: (tooltipItems, data)\n afterBody: noop,\n\n // Args are: (tooltipItems, data)\n beforeFooter: noop,\n footer: noop,\n afterFooter: noop\n};\n\n/**\n * Invoke callback from object with context and arguments.\n * If callback returns `undefined`, then will be invoked default callback.\n * @param {Record} callbacks\n * @param {keyof typeof defaultCallbacks} name\n * @param {*} ctx\n * @param {*} arg\n * @returns {any}\n */\nfunction invokeCallbackWithFallback(callbacks, name, ctx, arg) {\n const result = callbacks[name].call(ctx, arg);\n\n if (typeof result === 'undefined') {\n return defaultCallbacks[name].call(ctx, arg);\n }\n\n return result;\n}\n\nexport class Tooltip extends Element {\n\n /**\n * @namespace Chart.Tooltip.positioners\n */\n static positioners = positioners;\n\n constructor(config) {\n super();\n\n this.opacity = 0;\n this._active = [];\n this._eventPosition = undefined;\n this._size = undefined;\n this._cachedAnimations = undefined;\n this._tooltipItems = [];\n this.$animations = undefined;\n this.$context = undefined;\n this.chart = config.chart;\n this.options = config.options;\n this.dataPoints = undefined;\n this.title = undefined;\n this.beforeBody = undefined;\n this.body = undefined;\n this.afterBody = undefined;\n this.footer = undefined;\n this.xAlign = undefined;\n this.yAlign = undefined;\n this.x = undefined;\n this.y = undefined;\n this.height = undefined;\n this.width = undefined;\n this.caretX = undefined;\n this.caretY = undefined;\n // TODO: V4, make this private, rename to `_labelStyles`, and combine with `labelPointStyles`\n // and `labelTextColors` to create a single variable\n this.labelColors = undefined;\n this.labelPointStyles = undefined;\n this.labelTextColors = undefined;\n }\n\n initialize(options) {\n this.options = options;\n this._cachedAnimations = undefined;\n this.$context = undefined;\n }\n\n /**\n\t * @private\n\t */\n _resolveAnimations() {\n const cached = this._cachedAnimations;\n\n if (cached) {\n return cached;\n }\n\n const chart = this.chart;\n const options = this.options.setContext(this.getContext());\n const opts = options.enabled && chart.options.animation && options.animations;\n const animations = new Animations(this.chart, opts);\n if (opts._cacheable) {\n this._cachedAnimations = Object.freeze(animations);\n }\n\n return animations;\n }\n\n /**\n\t * @protected\n\t */\n getContext() {\n return this.$context ||\n\t\t\t(this.$context = createTooltipContext(this.chart.getContext(), this, this._tooltipItems));\n }\n\n getTitle(context, options) {\n const {callbacks} = options;\n\n const beforeTitle = invokeCallbackWithFallback(callbacks, 'beforeTitle', this, context);\n const title = invokeCallbackWithFallback(callbacks, 'title', this, context);\n const afterTitle = invokeCallbackWithFallback(callbacks, 'afterTitle', this, context);\n\n let lines = [];\n lines = pushOrConcat(lines, splitNewlines(beforeTitle));\n lines = pushOrConcat(lines, splitNewlines(title));\n lines = pushOrConcat(lines, splitNewlines(afterTitle));\n\n return lines;\n }\n\n getBeforeBody(tooltipItems, options) {\n return getBeforeAfterBodyLines(\n invokeCallbackWithFallback(options.callbacks, 'beforeBody', this, tooltipItems)\n );\n }\n\n getBody(tooltipItems, options) {\n const {callbacks} = options;\n const bodyItems = [];\n\n each(tooltipItems, (context) => {\n const bodyItem = {\n before: [],\n lines: [],\n after: []\n };\n const scoped = overrideCallbacks(callbacks, context);\n pushOrConcat(bodyItem.before, splitNewlines(invokeCallbackWithFallback(scoped, 'beforeLabel', this, context)));\n pushOrConcat(bodyItem.lines, invokeCallbackWithFallback(scoped, 'label', this, context));\n pushOrConcat(bodyItem.after, splitNewlines(invokeCallbackWithFallback(scoped, 'afterLabel', this, context)));\n\n bodyItems.push(bodyItem);\n });\n\n return bodyItems;\n }\n\n getAfterBody(tooltipItems, options) {\n return getBeforeAfterBodyLines(\n invokeCallbackWithFallback(options.callbacks, 'afterBody', this, tooltipItems)\n );\n }\n\n // Get the footer and beforeFooter and afterFooter lines\n getFooter(tooltipItems, options) {\n const {callbacks} = options;\n\n const beforeFooter = invokeCallbackWithFallback(callbacks, 'beforeFooter', this, tooltipItems);\n const footer = invokeCallbackWithFallback(callbacks, 'footer', this, tooltipItems);\n const afterFooter = invokeCallbackWithFallback(callbacks, 'afterFooter', this, tooltipItems);\n\n let lines = [];\n lines = pushOrConcat(lines, splitNewlines(beforeFooter));\n lines = pushOrConcat(lines, splitNewlines(footer));\n lines = pushOrConcat(lines, splitNewlines(afterFooter));\n\n return lines;\n }\n\n /**\n\t * @private\n\t */\n _createItems(options) {\n const active = this._active;\n const data = this.chart.data;\n const labelColors = [];\n const labelPointStyles = [];\n const labelTextColors = [];\n let tooltipItems = [];\n let i, len;\n\n for (i = 0, len = active.length; i < len; ++i) {\n tooltipItems.push(createTooltipItem(this.chart, active[i]));\n }\n\n // If the user provided a filter function, use it to modify the tooltip items\n if (options.filter) {\n tooltipItems = tooltipItems.filter((element, index, array) => options.filter(element, index, array, data));\n }\n\n // If the user provided a sorting function, use it to modify the tooltip items\n if (options.itemSort) {\n tooltipItems = tooltipItems.sort((a, b) => options.itemSort(a, b, data));\n }\n\n // Determine colors for boxes\n each(tooltipItems, (context) => {\n const scoped = overrideCallbacks(options.callbacks, context);\n labelColors.push(invokeCallbackWithFallback(scoped, 'labelColor', this, context));\n labelPointStyles.push(invokeCallbackWithFallback(scoped, 'labelPointStyle', this, context));\n labelTextColors.push(invokeCallbackWithFallback(scoped, 'labelTextColor', this, context));\n });\n\n this.labelColors = labelColors;\n this.labelPointStyles = labelPointStyles;\n this.labelTextColors = labelTextColors;\n this.dataPoints = tooltipItems;\n return tooltipItems;\n }\n\n update(changed, replay) {\n const options = this.options.setContext(this.getContext());\n const active = this._active;\n let properties;\n let tooltipItems = [];\n\n if (!active.length) {\n if (this.opacity !== 0) {\n properties = {\n opacity: 0\n };\n }\n } else {\n const position = positioners[options.position].call(this, active, this._eventPosition);\n tooltipItems = this._createItems(options);\n\n this.title = this.getTitle(tooltipItems, options);\n this.beforeBody = this.getBeforeBody(tooltipItems, options);\n this.body = this.getBody(tooltipItems, options);\n this.afterBody = this.getAfterBody(tooltipItems, options);\n this.footer = this.getFooter(tooltipItems, options);\n\n const size = this._size = getTooltipSize(this, options);\n const positionAndSize = Object.assign({}, position, size);\n const alignment = determineAlignment(this.chart, options, positionAndSize);\n const backgroundPoint = getBackgroundPoint(options, positionAndSize, alignment, this.chart);\n\n this.xAlign = alignment.xAlign;\n this.yAlign = alignment.yAlign;\n\n properties = {\n opacity: 1,\n x: backgroundPoint.x,\n y: backgroundPoint.y,\n width: size.width,\n height: size.height,\n caretX: position.x,\n caretY: position.y\n };\n }\n\n this._tooltipItems = tooltipItems;\n this.$context = undefined;\n\n if (properties) {\n this._resolveAnimations().update(this, properties);\n }\n\n if (changed && options.external) {\n options.external.call(this, {chart: this.chart, tooltip: this, replay});\n }\n }\n\n drawCaret(tooltipPoint, ctx, size, options) {\n const caretPosition = this.getCaretPosition(tooltipPoint, size, options);\n\n ctx.lineTo(caretPosition.x1, caretPosition.y1);\n ctx.lineTo(caretPosition.x2, caretPosition.y2);\n ctx.lineTo(caretPosition.x3, caretPosition.y3);\n }\n\n getCaretPosition(tooltipPoint, size, options) {\n const {xAlign, yAlign} = this;\n const {caretSize, cornerRadius} = options;\n const {topLeft, topRight, bottomLeft, bottomRight} = toTRBLCorners(cornerRadius);\n const {x: ptX, y: ptY} = tooltipPoint;\n const {width, height} = size;\n let x1, x2, x3, y1, y2, y3;\n\n if (yAlign === 'center') {\n y2 = ptY + (height / 2);\n\n if (xAlign === 'left') {\n x1 = ptX;\n x2 = x1 - caretSize;\n\n // Left draws bottom -> top, this y1 is on the bottom\n y1 = y2 + caretSize;\n y3 = y2 - caretSize;\n } else {\n x1 = ptX + width;\n x2 = x1 + caretSize;\n\n // Right draws top -> bottom, thus y1 is on the top\n y1 = y2 - caretSize;\n y3 = y2 + caretSize;\n }\n\n x3 = x1;\n } else {\n if (xAlign === 'left') {\n x2 = ptX + Math.max(topLeft, bottomLeft) + (caretSize);\n } else if (xAlign === 'right') {\n x2 = ptX + width - Math.max(topRight, bottomRight) - caretSize;\n } else {\n x2 = this.caretX;\n }\n\n if (yAlign === 'top') {\n y1 = ptY;\n y2 = y1 - caretSize;\n\n // Top draws left -> right, thus x1 is on the left\n x1 = x2 - caretSize;\n x3 = x2 + caretSize;\n } else {\n y1 = ptY + height;\n y2 = y1 + caretSize;\n\n // Bottom draws right -> left, thus x1 is on the right\n x1 = x2 + caretSize;\n x3 = x2 - caretSize;\n }\n y3 = y1;\n }\n return {x1, x2, x3, y1, y2, y3};\n }\n\n drawTitle(pt, ctx, options) {\n const title = this.title;\n const length = title.length;\n let titleFont, titleSpacing, i;\n\n if (length) {\n const rtlHelper = getRtlAdapter(options.rtl, this.x, this.width);\n\n pt.x = getAlignedX(this, options.titleAlign, options);\n\n ctx.textAlign = rtlHelper.textAlign(options.titleAlign);\n ctx.textBaseline = 'middle';\n\n titleFont = toFont(options.titleFont);\n titleSpacing = options.titleSpacing;\n\n ctx.fillStyle = options.titleColor;\n ctx.font = titleFont.string;\n\n for (i = 0; i < length; ++i) {\n ctx.fillText(title[i], rtlHelper.x(pt.x), pt.y + titleFont.lineHeight / 2);\n pt.y += titleFont.lineHeight + titleSpacing; // Line Height and spacing\n\n if (i + 1 === length) {\n pt.y += options.titleMarginBottom - titleSpacing; // If Last, add margin, remove spacing\n }\n }\n }\n }\n\n /**\n\t * @private\n\t */\n _drawColorBox(ctx, pt, i, rtlHelper, options) {\n const labelColors = this.labelColors[i];\n const labelPointStyle = this.labelPointStyles[i];\n const {boxHeight, boxWidth, boxPadding} = options;\n const bodyFont = toFont(options.bodyFont);\n const colorX = getAlignedX(this, 'left', options);\n const rtlColorX = rtlHelper.x(colorX);\n const yOffSet = boxHeight < bodyFont.lineHeight ? (bodyFont.lineHeight - boxHeight) / 2 : 0;\n const colorY = pt.y + yOffSet;\n\n if (options.usePointStyle) {\n const drawOptions = {\n radius: Math.min(boxWidth, boxHeight) / 2, // fit the circle in the box\n pointStyle: labelPointStyle.pointStyle,\n rotation: labelPointStyle.rotation,\n borderWidth: 1\n };\n // Recalculate x and y for drawPoint() because its expecting\n // x and y to be center of figure (instead of top left)\n const centerX = rtlHelper.leftForLtr(rtlColorX, boxWidth) + boxWidth / 2;\n const centerY = colorY + boxHeight / 2;\n\n // Fill the point with white so that colours merge nicely if the opacity is < 1\n ctx.strokeStyle = options.multiKeyBackground;\n ctx.fillStyle = options.multiKeyBackground;\n drawPoint(ctx, drawOptions, centerX, centerY);\n\n // Draw the point\n ctx.strokeStyle = labelColors.borderColor;\n ctx.fillStyle = labelColors.backgroundColor;\n drawPoint(ctx, drawOptions, centerX, centerY);\n } else {\n // Border\n ctx.lineWidth = isObject(labelColors.borderWidth) ? Math.max(...Object.values(labelColors.borderWidth)) : (labelColors.borderWidth || 1); // TODO, v4 remove fallback\n ctx.strokeStyle = labelColors.borderColor;\n ctx.setLineDash(labelColors.borderDash || []);\n ctx.lineDashOffset = labelColors.borderDashOffset || 0;\n\n // Fill a white rect so that colours merge nicely if the opacity is < 1\n const outerX = rtlHelper.leftForLtr(rtlColorX, boxWidth - boxPadding);\n const innerX = rtlHelper.leftForLtr(rtlHelper.xPlus(rtlColorX, 1), boxWidth - boxPadding - 2);\n const borderRadius = toTRBLCorners(labelColors.borderRadius);\n\n if (Object.values(borderRadius).some(v => v !== 0)) {\n ctx.beginPath();\n ctx.fillStyle = options.multiKeyBackground;\n addRoundedRectPath(ctx, {\n x: outerX,\n y: colorY,\n w: boxWidth,\n h: boxHeight,\n radius: borderRadius,\n });\n ctx.fill();\n ctx.stroke();\n\n // Inner square\n ctx.fillStyle = labelColors.backgroundColor;\n ctx.beginPath();\n addRoundedRectPath(ctx, {\n x: innerX,\n y: colorY + 1,\n w: boxWidth - 2,\n h: boxHeight - 2,\n radius: borderRadius,\n });\n ctx.fill();\n } else {\n // Normal rect\n ctx.fillStyle = options.multiKeyBackground;\n ctx.fillRect(outerX, colorY, boxWidth, boxHeight);\n ctx.strokeRect(outerX, colorY, boxWidth, boxHeight);\n // Inner square\n ctx.fillStyle = labelColors.backgroundColor;\n ctx.fillRect(innerX, colorY + 1, boxWidth - 2, boxHeight - 2);\n }\n }\n\n // restore fillStyle\n ctx.fillStyle = this.labelTextColors[i];\n }\n\n drawBody(pt, ctx, options) {\n const {body} = this;\n const {bodySpacing, bodyAlign, displayColors, boxHeight, boxWidth, boxPadding} = options;\n const bodyFont = toFont(options.bodyFont);\n let bodyLineHeight = bodyFont.lineHeight;\n let xLinePadding = 0;\n\n const rtlHelper = getRtlAdapter(options.rtl, this.x, this.width);\n\n const fillLineOfText = function(line) {\n ctx.fillText(line, rtlHelper.x(pt.x + xLinePadding), pt.y + bodyLineHeight / 2);\n pt.y += bodyLineHeight + bodySpacing;\n };\n\n const bodyAlignForCalculation = rtlHelper.textAlign(bodyAlign);\n let bodyItem, textColor, lines, i, j, ilen, jlen;\n\n ctx.textAlign = bodyAlign;\n ctx.textBaseline = 'middle';\n ctx.font = bodyFont.string;\n\n pt.x = getAlignedX(this, bodyAlignForCalculation, options);\n\n // Before body lines\n ctx.fillStyle = options.bodyColor;\n each(this.beforeBody, fillLineOfText);\n\n xLinePadding = displayColors && bodyAlignForCalculation !== 'right'\n ? bodyAlign === 'center' ? (boxWidth / 2 + boxPadding) : (boxWidth + 2 + boxPadding)\n : 0;\n\n // Draw body lines now\n for (i = 0, ilen = body.length; i < ilen; ++i) {\n bodyItem = body[i];\n textColor = this.labelTextColors[i];\n\n ctx.fillStyle = textColor;\n each(bodyItem.before, fillLineOfText);\n\n lines = bodyItem.lines;\n // Draw Legend-like boxes if needed\n if (displayColors && lines.length) {\n this._drawColorBox(ctx, pt, i, rtlHelper, options);\n bodyLineHeight = Math.max(bodyFont.lineHeight, boxHeight);\n }\n\n for (j = 0, jlen = lines.length; j < jlen; ++j) {\n fillLineOfText(lines[j]);\n // Reset for any lines that don't include colorbox\n bodyLineHeight = bodyFont.lineHeight;\n }\n\n each(bodyItem.after, fillLineOfText);\n }\n\n // Reset back to 0 for after body\n xLinePadding = 0;\n bodyLineHeight = bodyFont.lineHeight;\n\n // After body lines\n each(this.afterBody, fillLineOfText);\n pt.y -= bodySpacing; // Remove last body spacing\n }\n\n drawFooter(pt, ctx, options) {\n const footer = this.footer;\n const length = footer.length;\n let footerFont, i;\n\n if (length) {\n const rtlHelper = getRtlAdapter(options.rtl, this.x, this.width);\n\n pt.x = getAlignedX(this, options.footerAlign, options);\n pt.y += options.footerMarginTop;\n\n ctx.textAlign = rtlHelper.textAlign(options.footerAlign);\n ctx.textBaseline = 'middle';\n\n footerFont = toFont(options.footerFont);\n\n ctx.fillStyle = options.footerColor;\n ctx.font = footerFont.string;\n\n for (i = 0; i < length; ++i) {\n ctx.fillText(footer[i], rtlHelper.x(pt.x), pt.y + footerFont.lineHeight / 2);\n pt.y += footerFont.lineHeight + options.footerSpacing;\n }\n }\n }\n\n drawBackground(pt, ctx, tooltipSize, options) {\n const {xAlign, yAlign} = this;\n const {x, y} = pt;\n const {width, height} = tooltipSize;\n const {topLeft, topRight, bottomLeft, bottomRight} = toTRBLCorners(options.cornerRadius);\n\n ctx.fillStyle = options.backgroundColor;\n ctx.strokeStyle = options.borderColor;\n ctx.lineWidth = options.borderWidth;\n\n ctx.beginPath();\n ctx.moveTo(x + topLeft, y);\n if (yAlign === 'top') {\n this.drawCaret(pt, ctx, tooltipSize, options);\n }\n ctx.lineTo(x + width - topRight, y);\n ctx.quadraticCurveTo(x + width, y, x + width, y + topRight);\n if (yAlign === 'center' && xAlign === 'right') {\n this.drawCaret(pt, ctx, tooltipSize, options);\n }\n ctx.lineTo(x + width, y + height - bottomRight);\n ctx.quadraticCurveTo(x + width, y + height, x + width - bottomRight, y + height);\n if (yAlign === 'bottom') {\n this.drawCaret(pt, ctx, tooltipSize, options);\n }\n ctx.lineTo(x + bottomLeft, y + height);\n ctx.quadraticCurveTo(x, y + height, x, y + height - bottomLeft);\n if (yAlign === 'center' && xAlign === 'left') {\n this.drawCaret(pt, ctx, tooltipSize, options);\n }\n ctx.lineTo(x, y + topLeft);\n ctx.quadraticCurveTo(x, y, x + topLeft, y);\n ctx.closePath();\n\n ctx.fill();\n\n if (options.borderWidth > 0) {\n ctx.stroke();\n }\n }\n\n /**\n\t * Update x/y animation targets when _active elements are animating too\n\t * @private\n\t */\n _updateAnimationTarget(options) {\n const chart = this.chart;\n const anims = this.$animations;\n const animX = anims && anims.x;\n const animY = anims && anims.y;\n if (animX || animY) {\n const position = positioners[options.position].call(this, this._active, this._eventPosition);\n if (!position) {\n return;\n }\n const size = this._size = getTooltipSize(this, options);\n const positionAndSize = Object.assign({}, position, this._size);\n const alignment = determineAlignment(chart, options, positionAndSize);\n const point = getBackgroundPoint(options, positionAndSize, alignment, chart);\n if (animX._to !== point.x || animY._to !== point.y) {\n this.xAlign = alignment.xAlign;\n this.yAlign = alignment.yAlign;\n this.width = size.width;\n this.height = size.height;\n this.caretX = position.x;\n this.caretY = position.y;\n this._resolveAnimations().update(this, point);\n }\n }\n }\n\n /**\n * Determine if the tooltip will draw anything\n * @returns {boolean} True if the tooltip will render\n */\n _willRender() {\n return !!this.opacity;\n }\n\n draw(ctx) {\n const options = this.options.setContext(this.getContext());\n let opacity = this.opacity;\n\n if (!opacity) {\n return;\n }\n\n this._updateAnimationTarget(options);\n\n const tooltipSize = {\n width: this.width,\n height: this.height\n };\n const pt = {\n x: this.x,\n y: this.y\n };\n\n // IE11/Edge does not like very small opacities, so snap to 0\n opacity = Math.abs(opacity) < 1e-3 ? 0 : opacity;\n\n const padding = toPadding(options.padding);\n\n // Truthy/falsey value for empty tooltip\n const hasTooltipContent = this.title.length || this.beforeBody.length || this.body.length || this.afterBody.length || this.footer.length;\n\n if (options.enabled && hasTooltipContent) {\n ctx.save();\n ctx.globalAlpha = opacity;\n\n // Draw Background\n this.drawBackground(pt, ctx, tooltipSize, options);\n\n overrideTextDirection(ctx, options.textDirection);\n\n pt.y += padding.top;\n\n // Titles\n this.drawTitle(pt, ctx, options);\n\n // Body\n this.drawBody(pt, ctx, options);\n\n // Footer\n this.drawFooter(pt, ctx, options);\n\n restoreTextDirection(ctx, options.textDirection);\n\n ctx.restore();\n }\n }\n\n /**\n\t * Get active elements in the tooltip\n\t * @returns {Array} Array of elements that are active in the tooltip\n\t */\n getActiveElements() {\n return this._active || [];\n }\n\n /**\n\t * Set active elements in the tooltip\n\t * @param {array} activeElements Array of active datasetIndex/index pairs.\n\t * @param {object} eventPosition Synthetic event position used in positioning\n\t */\n setActiveElements(activeElements, eventPosition) {\n const lastActive = this._active;\n const active = activeElements.map(({datasetIndex, index}) => {\n const meta = this.chart.getDatasetMeta(datasetIndex);\n\n if (!meta) {\n throw new Error('Cannot find a dataset at index ' + datasetIndex);\n }\n\n return {\n datasetIndex,\n element: meta.data[index],\n index,\n };\n });\n const changed = !_elementsEqual(lastActive, active);\n const positionChanged = this._positionChanged(active, eventPosition);\n\n if (changed || positionChanged) {\n this._active = active;\n this._eventPosition = eventPosition;\n this._ignoreReplayEvents = true;\n this.update(true);\n }\n }\n\n /**\n\t * Handle an event\n\t * @param {ChartEvent} e - The event to handle\n\t * @param {boolean} [replay] - This is a replayed event (from update)\n\t * @param {boolean} [inChartArea] - The event is inside chartArea\n\t * @returns {boolean} true if the tooltip changed\n\t */\n handleEvent(e, replay, inChartArea = true) {\n if (replay && this._ignoreReplayEvents) {\n return false;\n }\n this._ignoreReplayEvents = false;\n\n const options = this.options;\n const lastActive = this._active || [];\n const active = this._getActiveElements(e, lastActive, replay, inChartArea);\n\n // When there are multiple items shown, but the tooltip position is nearest mode\n // an update may need to be made because our position may have changed even though\n // the items are the same as before.\n const positionChanged = this._positionChanged(active, e);\n\n // Remember Last Actives\n const changed = replay || !_elementsEqual(active, lastActive) || positionChanged;\n\n // Only handle target event on tooltip change\n if (changed) {\n this._active = active;\n\n if (options.enabled || options.external) {\n this._eventPosition = {\n x: e.x,\n y: e.y\n };\n\n this.update(true, replay);\n }\n }\n\n return changed;\n }\n\n /**\n\t * Helper for determining the active elements for event\n\t * @param {ChartEvent} e - The event to handle\n\t * @param {InteractionItem[]} lastActive - Previously active elements\n\t * @param {boolean} [replay] - This is a replayed event (from update)\n\t * @param {boolean} [inChartArea] - The event is inside chartArea\n\t * @returns {InteractionItem[]} - Active elements\n\t * @private\n\t */\n _getActiveElements(e, lastActive, replay, inChartArea) {\n const options = this.options;\n\n if (e.type === 'mouseout') {\n return [];\n }\n\n if (!inChartArea) {\n // Let user control the active elements outside chartArea. Eg. using Legend.\n return lastActive;\n }\n\n // Find Active Elements for tooltips\n const active = this.chart.getElementsAtEventForMode(e, options.mode, options, replay);\n\n if (options.reverse) {\n active.reverse();\n }\n\n return active;\n }\n\n /**\n\t * Determine if the active elements + event combination changes the\n\t * tooltip position\n\t * @param {array} active - Active elements\n\t * @param {ChartEvent} e - Event that triggered the position change\n\t * @returns {boolean} True if the position has changed\n\t */\n _positionChanged(active, e) {\n const {caretX, caretY, options} = this;\n const position = positioners[options.position].call(this, active, e);\n return position !== false && (caretX !== position.x || caretY !== position.y);\n }\n}\n\nexport default {\n id: 'tooltip',\n _element: Tooltip,\n positioners,\n\n afterInit(chart, _args, options) {\n if (options) {\n chart.tooltip = new Tooltip({chart, options});\n }\n },\n\n beforeUpdate(chart, _args, options) {\n if (chart.tooltip) {\n chart.tooltip.initialize(options);\n }\n },\n\n reset(chart, _args, options) {\n if (chart.tooltip) {\n chart.tooltip.initialize(options);\n }\n },\n\n afterDraw(chart) {\n const tooltip = chart.tooltip;\n\n if (tooltip && tooltip._willRender()) {\n const args = {\n tooltip\n };\n\n if (chart.notifyPlugins('beforeTooltipDraw', {...args, cancelable: true}) === false) {\n return;\n }\n\n tooltip.draw(chart.ctx);\n\n chart.notifyPlugins('afterTooltipDraw', args);\n }\n },\n\n afterEvent(chart, args) {\n if (chart.tooltip) {\n // If the event is replayed from `update`, we should evaluate with the final positions.\n const useFinalPosition = args.replay;\n if (chart.tooltip.handleEvent(args.event, useFinalPosition, args.inChartArea)) {\n // notify chart about the change, so it will render\n args.changed = true;\n }\n }\n },\n\n defaults: {\n enabled: true,\n external: null,\n position: 'average',\n backgroundColor: 'rgba(0,0,0,0.8)',\n titleColor: '#fff',\n titleFont: {\n weight: 'bold',\n },\n titleSpacing: 2,\n titleMarginBottom: 6,\n titleAlign: 'left',\n bodyColor: '#fff',\n bodySpacing: 2,\n bodyFont: {\n },\n bodyAlign: 'left',\n footerColor: '#fff',\n footerSpacing: 2,\n footerMarginTop: 6,\n footerFont: {\n weight: 'bold',\n },\n footerAlign: 'left',\n padding: 6,\n caretPadding: 2,\n caretSize: 5,\n cornerRadius: 6,\n boxHeight: (ctx, opts) => opts.bodyFont.size,\n boxWidth: (ctx, opts) => opts.bodyFont.size,\n multiKeyBackground: '#fff',\n displayColors: true,\n boxPadding: 0,\n borderColor: 'rgba(0,0,0,0)',\n borderWidth: 0,\n animation: {\n duration: 400,\n easing: 'easeOutQuart',\n },\n animations: {\n numbers: {\n type: 'number',\n properties: ['x', 'y', 'width', 'height', 'caretX', 'caretY'],\n },\n opacity: {\n easing: 'linear',\n duration: 200\n }\n },\n callbacks: defaultCallbacks\n },\n\n defaultRoutes: {\n bodyFont: 'font',\n footerFont: 'font',\n titleFont: 'font'\n },\n\n descriptors: {\n _scriptable: (name) => name !== 'filter' && name !== 'itemSort' && name !== 'external',\n _indexable: false,\n callbacks: {\n _scriptable: false,\n _indexable: false,\n },\n animation: {\n _fallback: false\n },\n animations: {\n _fallback: 'animation'\n }\n },\n\n // Resolve additionally from `interaction` options and defaults.\n additionalOptionScopes: ['interaction']\n};\n","// eslint-disable-next-line @typescript-eslint/ban-ts-comment\n// @ts-nocheck\n\n/**\n * @namespace Chart\n */\nimport Chart from './core/core.controller.js';\n\nimport * as helpers from './helpers/index.js';\nimport _adapters from './core/core.adapters.js';\nimport Animation from './core/core.animation.js';\nimport animator from './core/core.animator.js';\nimport Animations from './core/core.animations.js';\nimport * as controllers from './controllers/index.js';\nimport DatasetController from './core/core.datasetController.js';\nimport Element from './core/core.element.js';\nimport * as elements from './elements/index.js';\nimport Interaction from './core/core.interaction.js';\nimport layouts from './core/core.layouts.js';\nimport * as platforms from './platform/index.js';\nimport * as plugins from './plugins/index.js';\nimport registry from './core/core.registry.js';\nimport Scale from './core/core.scale.js';\nimport * as scales from './scales/index.js';\nimport Ticks from './core/core.ticks.js';\n\n// Register built-ins\nChart.register(controllers, scales, elements, plugins);\n\nChart.helpers = {...helpers};\nChart._adapters = _adapters;\nChart.Animation = Animation;\nChart.Animations = Animations;\nChart.animator = animator;\nChart.controllers = registry.controllers.items;\nChart.DatasetController = DatasetController;\nChart.Element = Element;\nChart.elements = elements;\nChart.Interaction = Interaction;\nChart.layouts = layouts;\nChart.platforms = platforms;\nChart.Scale = Scale;\nChart.Ticks = Ticks;\n\n// Compatibility with ESM extensions\nObject.assign(Chart, controllers, scales, elements, plugins, platforms);\nChart.Chart = Chart;\n\nif (typeof window !== 'undefined') {\n window.Chart = Chart;\n}\n\nexport default Chart;\n\n"],"names":["noop","uid","id","isNullOrUndef","value","isArray","Array","type","Object","prototype","toString","call","slice","isObject","isNumberFinite","Number","isFinite","finiteOrDefault","defaultValue","valueOrDefault","toPercentage","dimension","endsWith","parseFloat","toDimension","callback","fn","args","thisArg","apply","each","loopable","reverse","i","len","keys","length","_elementsEqual","a0","a1","ilen","v0","v1","datasetIndex","index","clone","source","map","target","create","klen","k","isValidKey","key","indexOf","_merger","options","tval","sval","merge","sources","merger","current","mergeIf","_mergerIf","hasOwnProperty","keyResolvers","v","x","o","y","_splitKey","parts","split","tmp","part","push","resolveObjectKey","obj","resolver","_getKeyResolver","_capitalize","str","charAt","toUpperCase","defined","isFunction","setsEqual","a","b","size","item","has","_isClickEvent","e","PI","Math","TAU","PITAU","INFINITY","POSITIVE_INFINITY","RAD_PER_DEG","HALF_PI","QUARTER_PI","TWO_THIRDS_PI","log10","sign","almostEquals","epsilon","abs","niceNum","range","roundedRange","round","niceRange","pow","floor","fraction","_factorize","result","sqrt","sort","pop","isNumber","n","isNaN","almostWhole","rounded","_setMinAndMaxByKey","array","property","min","max","toRadians","degrees","toDegrees","radians","_decimalPlaces","isFiniteNumber","p","getAngleFromPoint","centrePoint","anglePoint","distanceFromXCenter","distanceFromYCenter","radialDistanceFromCenter","angle","atan2","distance","distanceBetweenPoints","pt1","pt2","_angleDiff","_normalizeAngle","_angleBetween","start","end","sameAngleIsFullCircle","s","angleToStart","angleToEnd","startToAngle","endToAngle","_limitValue","_int16Range","_isBetween","_lookup","table","cmp","mid","hi","lo","_lookupByKey","last","ti","_rlookupByKey","_filterBetween","values","arrayEvents","listenArrayEvents","listener","_chartjs","listeners","defineProperty","configurable","enumerable","forEach","method","base","res","this","object","unlistenArrayEvents","stub","splice","_arrayUnique","items","set","Set","add","from","requestAnimFrame","window","requestAnimationFrame","throttled","argsToUse","ticking","debounce","delay","timeout","clearTimeout","setTimeout","_toLeftRightCenter","align","_alignStartEnd","_textX","left","right","rtl","_getStartAndCountOfVisiblePoints","meta","points","animationsDisabled","pointCount","count","_sorted","iScale","_parsed","axis","minDefined","maxDefined","getUserBounds","getPixelForValue","_scaleRangesChanged","xScale","yScale","_scaleRanges","newRanges","xmin","xmax","ymin","ymax","changed","assign","Animator","constructor","_request","_charts","Map","_running","_lastDate","undefined","_notify","chart","anims","date","callbacks","numSteps","duration","initial","currentStep","_refresh","_update","Date","now","remaining","running","draw","_active","_total","tick","_getAnims","charts","get","complete","progress","listen","event","cb","reduce","acc","cur","_duration","stop","cancel","remove","delete","animator","lim","l","h","p2b","n2b","b2n","n2p","map$1","A","B","C","D","E","F","c","d","f","hex","h1","h2","eq","hexString","r","g","isShort","alpha","HUE_RE","hsl2rgbn","hsv2rgbn","hwb2rgbn","w","rgb","rgb2hsl","hueValue","calln","hsl2rgb","hue","hueParse","m","exec","p1","p2","hwb2rgb","hsv2rgb","Z","Y","X","W","V","U","T","S","R","Q","P","O","N","M","L","K","G","H","I","J","names$1","OiceXe","antiquewEte","aqua","aquamarRe","azuY","beige","bisque","black","blanKedOmond","Xe","XeviTet","bPwn","burlywood","caMtXe","KartYuse","KocTate","cSO","cSnflowerXe","cSnsilk","crimson","cyan","xXe","xcyan","xgTMnPd","xWay","xgYF","xgYy","xkhaki","xmagFta","xTivegYF","xSange","xScEd","xYd","xsOmon","xsHgYF","xUXe","xUWay","xUgYy","xQe","xviTet","dAppRk","dApskyXe","dimWay","dimgYy","dodgerXe","fiYbrick","flSOwEte","foYstWAn","fuKsia","gaRsbSo","ghostwEte","gTd","gTMnPd","Way","gYF","gYFLw","gYy","honeyMw","hotpRk","RdianYd","Rdigo","ivSy","khaki","lavFMr","lavFMrXsh","lawngYF","NmoncEffon","ZXe","ZcSO","Zcyan","ZgTMnPdLw","ZWay","ZgYF","ZgYy","ZpRk","ZsOmon","ZsHgYF","ZskyXe","ZUWay","ZUgYy","ZstAlXe","ZLw","lime","limegYF","lRF","magFta","maPon","VaquamarRe","VXe","VScEd","VpurpN","VsHgYF","VUXe","VsprRggYF","VQe","VviTetYd","midnightXe","mRtcYam","mistyPse","moccasR","navajowEte","navy","Tdlace","Tive","TivedBb","Sange","SangeYd","ScEd","pOegTMnPd","pOegYF","pOeQe","pOeviTetYd","papayawEp","pHKpuff","peru","pRk","plum","powMrXe","purpN","YbeccapurpN","Yd","Psybrown","PyOXe","saddNbPwn","sOmon","sandybPwn","sHgYF","sHshell","siFna","silver","skyXe","UXe","UWay","UgYy","snow","sprRggYF","stAlXe","tan","teO","tEstN","tomato","Qe","viTet","JHt","wEte","wEtesmoke","Lw","LwgYF","names","nameParse","unpacked","tkeys","j","ok","nk","replace","parseInt","unpack","transparent","toLowerCase","RGB_RE","to","modHSL","ratio","proto","fromObject","input","functionParse","rgbParse","Color","ret","_rgb","_valid","valid","rgbString","hslString","mix","color","weight","c1","c2","w2","w1","interpolate","t","rgb1","rgb2","clearer","greyscale","val","opaquer","negate","lighten","darken","saturate","desaturate","rotate","deg","isPatternOrGradient","getHoverColor","numbers","colors","intlCache","formatNumber","num","locale","cacheKey","JSON","stringify","formatter","Intl","NumberFormat","getNumberFormat","format","formatters","numeric","tickValue","ticks","notation","delta","maxTick","calculateDelta","logDelta","numDecimal","minimumFractionDigits","maximumFractionDigits","logarithmic","remain","significand","includes","Ticks","overrides","descriptors","getScope","node","root","scope","Defaults","_descriptors","_appliers","animation","backgroundColor","borderColor","datasets","devicePixelRatio","context","platform","getDevicePixelRatio","elements","events","font","family","style","lineHeight","hover","hoverBackgroundColor","ctx","hoverBorderColor","hoverColor","indexAxis","interaction","mode","intersect","includeInvisible","maintainAspectRatio","onHover","onClick","parsing","plugins","responsive","scale","scales","showLine","drawActiveElementsOnTop","describe","override","route","name","targetScope","targetName","scopeObject","targetScopeObject","privateName","defineProperties","writable","local","appliers","defaults","_scriptable","startsWith","_indexable","_fallback","easing","loop","properties","active","resize","show","animations","visible","hide","autoPadding","padding","top","bottom","display","offset","beginAtZero","bounds","grace","grid","lineWidth","drawOnChartArea","drawTicks","tickLength","tickWidth","_ctx","tickColor","border","dash","dashOffset","width","title","text","minRotation","maxRotation","mirror","textStrokeWidth","textStrokeColor","autoSkip","autoSkipPadding","labelOffset","minor","major","crossAlign","showLabelBackdrop","backdropColor","backdropPadding","_isDomSupported","document","_getParentNode","domNode","parent","parentNode","host","parseMaxStyle","styleValue","parentProperty","valueInPixels","getComputedStyle","element","ownerDocument","defaultView","getStyle","el","getPropertyValue","positions","getPositionedStyle","styles","suffix","pos","height","getRelativePosition","canvas","currentDevicePixelRatio","borderBox","boxSizing","paddings","borders","box","touches","offsetX","offsetY","shadowRoot","useOffsetPos","rect","getBoundingClientRect","clientX","clientY","getCanvasPosition","xOffset","yOffset","round1","getMaximumSize","bbWidth","bbHeight","aspectRatio","margins","maxWidth","maxHeight","containerSize","container","containerStyle","containerBorder","containerPadding","clientWidth","clientHeight","getContainerSize","retinaScale","forceRatio","forceStyle","pixelRatio","deviceHeight","deviceWidth","setTransform","supportsEventListenerOptions","passiveSupported","passive","addEventListener","removeEventListener","readUsedSize","matches","match","toFontString","_measureText","data","gc","longest","string","textWidth","measureText","_longestText","arrayOfThings","cache","garbageCollect","save","jlen","thing","nestedThing","restore","gcLen","_alignPixel","pixel","halfWidth","clearCanvas","getContext","resetTransform","clearRect","drawPoint","drawPointLegend","cornerRadius","xOffsetW","yOffsetW","pointStyle","rotation","radius","rad","translate","drawImage","beginPath","ellipse","arc","closePath","moveTo","sin","cos","lineTo","SQRT1_2","fill","borderWidth","stroke","_isPointInArea","point","area","margin","clipArea","clip","unclipArea","_steppedLineTo","previous","flip","midpoint","_bezierCurveTo","bezierCurveTo","cp1x","cp2x","cp1y","cp2y","renderText","opts","lines","strokeWidth","strokeColor","line","translation","fillStyle","textAlign","textBaseline","setRenderOpts","backdrop","drawBackdrop","strokeStyle","strokeText","fillText","decorateText","strikethrough","underline","metrics","actualBoundingBoxLeft","actualBoundingBoxRight","actualBoundingBoxAscent","actualBoundingBoxDescent","yDecoration","decorationWidth","oldColor","fillRect","addRoundedRectPath","topLeft","bottomLeft","bottomRight","topRight","_createResolver","scopes","prefixes","rootScopes","fallback","getTarget","_resolve","Symbol","toStringTag","_cacheable","_scopes","_rootScopes","_getTarget","Proxy","deleteProperty","prop","_keys","_cached","proxy","prefix","readKey","needsSubResolver","createSubResolver","_resolveWithPrefixes","getOwnPropertyDescriptor","Reflect","getPrototypeOf","getKeysFromAllScopes","ownKeys","storage","_storage","_attachContext","subProxy","descriptorDefaults","_proxy","_context","_subProxy","_stack","setContext","receiver","isScriptable","Error","join","_resolveScriptable","isIndexable","arr","filter","_resolveArray","_resolveWithContext","allKeys","scriptable","indexable","_allKeys","resolve","resolveFallback","addScopes","parentScopes","parentFallback","allScopes","addScopesFromKey","subGetTarget","resolveKeysFromAllScopes","_parseObjectDataRadialScale","_parsing","parsed","parse","EPSILON","getPoint","skip","getValueAxis","splineCurve","firstPoint","middlePoint","afterPoint","next","d01","d12","s01","s12","fa","fb","splineCurveMonotone","valueAxis","pointsLen","deltaK","mK","pointBefore","pointCurrent","pointAfter","slopeDelta","alphaK","betaK","tauK","squaredMagnitude","monotoneAdjust","iPixel","vPixel","monotoneCompute","capControlPoint","pt","_updateBezierControlPoints","controlPoints","spanGaps","cubicInterpolationMode","prev","tension","capBezierPoints","inArea","inAreaPrev","inAreaNext","atEdge","elasticIn","elasticOut","effects","linear","easeInQuad","easeOutQuad","easeInOutQuad","easeInCubic","easeOutCubic","easeInOutCubic","easeInQuart","easeOutQuart","easeInOutQuart","easeInQuint","easeOutQuint","easeInOutQuint","easeInSine","easeOutSine","easeInOutSine","easeInExpo","easeOutExpo","easeInOutExpo","easeInCirc","easeOutCirc","easeInOutCirc","easeInElastic","easeOutElastic","easeInOutElastic","easeInBack","easeOutBack","easeInOutBack","easeInBounce","easeOutBounce","easeInOutBounce","_pointInLine","_steppedInterpolation","_bezierInterpolation","cp1","cp2","LINE_HEIGHT","FONT_STYLE","toLineHeight","_readValueToProps","props","objProps","read","toTRBL","toTRBLCorners","toPadding","toFont","console","warn","inputs","info","cacheable","_addGrace","minmax","change","keepZero","createContext","parentContext","getRtlAdapter","rectX","setWidth","xPlus","leftForLtr","itemWidth","getRightToLeftAdapter","_itemWidth","overrideTextDirection","direction","original","getPropertyPriority","setProperty","prevTextDirection","restoreTextDirection","propertyFn","between","compare","normalize","normalizeSegment","_boundSegment","segment","startBound","endBound","getSegment","prevValue","inside","subStart","shouldStart","shouldStop","_boundSegments","segments","sub","_computeSegments","segmentOptions","_loop","findStartAndEnd","splitByStyles","solidSegments","_fullLoop","chartContext","_chart","baseStyle","readStyle","_datasetIndex","prevStyle","addStyle","st","dir","p0","p0DataIndex","p1DataIndex","styleChanged","doSplitByStyles","borderCapStyle","borderDash","borderDashOffset","borderJoinStyle","pixelSize","fontStyle","fontFamily","binarySearch","metaset","controller","_cachedMeta","lookupMethod","_reversePixels","_sharedOptions","getRange","evaluateInteractionItems","position","handler","metasets","getSortedVisibleDatasetMetas","getIntersectItems","useFinalPosition","isPointInArea","chartArea","inRange","getNearestCartesianItems","distanceMetric","useX","useY","deltaX","deltaY","getDistanceMetricForAxis","minDistance","center","getCenterPoint","getNearestItems","startAngle","endAngle","getProps","getNearestRadialItems","getAxisItems","rangeMethod","intersectsItem","Interaction","modes","dataset","getDatasetMeta","nearest","STATIC_POSITIONS","filterByPosition","filterDynamicPositionByAxis","sortByWeight","setLayoutDims","layouts","params","stacks","wrap","stack","stackWeight","placed","buildStacks","vBoxMaxWidth","hBoxMaxHeight","layout","fullSize","factor","horizontal","availableWidth","availableHeight","getCombinedMax","maxPadding","updateMaxPadding","boxPadding","updateDims","getPadding","newWidth","outerWidth","newHeight","outerHeight","widthChanged","heightChanged","same","other","getMargins","marginForPositions","fitBoxes","boxes","refitBoxes","refit","update","setBoxDims","placeBoxes","userPadding","addBox","_layers","z","removeBox","layoutItem","configure","minPadding","layoutBoxes","isHorizontal","wrapBoxes","centerHorizontal","centerVertical","leftAndTop","concat","rightAndBottom","vertical","buildLayoutBoxes","verticalBoxes","horizontalBoxes","beforeLayout","visibleVerticalBoxCount","total","freeze","updatePos","handleMaxPadding","BasePlatform","acquireContext","releaseContext","isAttached","updateConfig","config","BasicPlatform","EVENT_TYPES","touchstart","touchmove","touchend","pointerenter","pointerdown","pointermove","pointerup","pointerleave","pointerout","isNullOrEmpty","eventListenerOptions","removeListener","nodeListContains","nodeList","contains","createAttachObserver","observer","MutationObserver","entries","trigger","entry","addedNodes","removedNodes","observe","childList","subtree","createDetachObserver","drpListeningCharts","oldDevicePixelRatio","onWindowResize","dpr","createResizeObserver","ResizeObserver","contentRect","listenDevicePixelRatioChanges","releaseObserver","disconnect","unlistenDevicePixelRatioChanges","createProxyAndListen","native","fromNativeEvent","addListener","DomPlatform","renderHeight","getAttribute","renderWidth","displayWidth","displayHeight","initCanvas","EXPANDO_KEY","removeAttribute","setAttribute","proxies","$proxies","attach","detach","isConnected","_detectPlatform","OffscreenCanvas","interpolators","boolean","c0","helpersColor","number","Animation","cfg","currentValue","_fn","_easing","_start","_target","_prop","_from","_to","_promises","elapsed","wait","promises","Promise","rej","resolved","Animations","_properties","animationOptions","animatedProps","getOwnPropertyNames","option","_animateOptions","newOptions","$shared","$animations","resolveTargetOptions","_createAnimations","anim","all","awaitAll","then","scaleClip","allowedOverflow","getSortedDatasetIndices","filterVisible","_getSortedDatasetMetas","applyStack","dsIndex","singleMode","otherValue","isStacked","stacked","getOrCreateStack","stackKey","indexValue","subStack","getLastIndexInStack","vScale","positive","getMatchingVisibleMetas","updateStacks","_stacks","iAxis","vAxis","indexScale","valueScale","getStackKey","_top","_bottom","_visualValues","getFirstScaleId","shift","clearStacks","isDirectUpdateMode","cloneIfNotShared","cached","shared","DatasetController","static","_cachedDataOpts","getMeta","_type","_data","_objectData","_drawStart","_drawCount","enableOptionSharing","supportsDecimation","$context","_syncList","datasetElementType","dataElementType","initialize","linkScales","_stacked","addElements","isPluginEnabled","updateIndex","getDataset","chooseId","xid","xAxisID","yid","yAxisID","rid","rAxisID","iid","iAxisID","vid","vAxisID","getScaleForId","rScale","scaleID","_getOtherScale","reset","_destroy","_dataCheck","adata","convertObjectDataToArray","isExtensible","buildOrUpdateElements","resetNewElements","stackChanged","oldStacked","_resyncElements","scopeKeys","datasetScopeKeys","getOptionScopes","createResolver","sorted","parseArrayData","parseObjectData","parsePrimitiveData","isNotInOrderComparedToPrev","labels","getLabels","singleScale","xAxisKey","yAxisKey","getParsed","getDataElement","updateRangeFromParsed","parsedValue","NaN","getMinMax","canStack","otherScale","hidden","createStack","NEGATIVE_INFINITY","otherMin","otherMax","_skip","getAllParsedValues","getMaxOverflow","getLabelAndValue","label","getLabelForValue","_clip","disabled","toClip","defaultClip","resolveDatasetElementOptions","resolveDataElementOptions","dataIndex","raw","createDataContext","createDatasetContext","_resolveElementOptions","elementType","sharing","datasetElementScopeKeys","resolveNamedOptions","_resolveAnimations","transition","datasetAnimationScopeKeys","getSharedOptions","includeOptions","sharedOptions","_animationsDisabled","_getSharedOptions","firstOpts","previouslySharedOptions","updateSharedOptions","updateElement","_setStyle","removeHoverStyle","setHoverStyle","_removeDatasetHoverStyle","_setDatasetHoverStyle","arg1","arg2","numMeta","numData","_insertElements","_removeElements","move","updateElements","removed","_sync","_dataChanges","_onDataPush","arguments","_onDataPop","_onDataShift","_onDataSplice","newCount","_onDataUnshift","Element","tooltipPosition","hasValue","final","tickOpts","determinedMaxTicks","_tickSize","maxScale","_length","maxChart","_maxLength","determineMaxTicks","ticksLimit","maxTicksLimit","majorIndices","enabled","getMajorIndices","numMajorIndices","first","newTicks","spacing","ceil","skipMajors","evenMajorSpacing","diff","getEvenSpacing","factors","calculateSpacing","avgMajorSpacing","majorStart","majorEnd","offsetFromEdge","edge","sample","numItems","increment","getPixelForGridLine","offsetGridLines","validIndex","_startPixel","_endPixel","lineValue","getPixelForTick","getTickMarkLength","getTitleHeight","titleAlign","reverseAlign","Scale","super","_margins","paddingTop","paddingBottom","paddingLeft","paddingRight","labelRotation","_range","_gridLineItems","_labelItems","_labelSizes","_longestTextCache","_userMax","_userMin","_suggestedMax","_suggestedMin","_ticksLength","_borderValue","_cache","_dataLimitsCached","init","suggestedMin","suggestedMax","metas","getTicks","xLabels","yLabels","getLabelItems","_computeLabelItems","beforeUpdate","sampleSize","beforeSetDimensions","setDimensions","afterSetDimensions","beforeDataLimits","determineDataLimits","afterDataLimits","beforeBuildTicks","buildTicks","afterBuildTicks","samplingEnabled","_convertTicksToLabels","beforeCalculateLabelRotation","calculateLabelRotation","afterCalculateLabelRotation","afterAutoSkip","beforeFit","fit","afterFit","afterUpdate","startPixel","endPixel","reversePixels","_alignToPixels","alignToPixels","_callHooks","notifyPlugins","beforeTickToLabelConversion","generateTickLabels","afterTickToLabelConversion","numTicks","maxLabelDiagonal","_isVisible","labelSizes","_getLabelSizes","maxLabelWidth","widest","maxLabelHeight","highest","asin","minSize","titleOpts","gridOpts","titleHeight","tickPadding","angleRadians","labelHeight","labelWidth","_calculatePadding","_handleMargins","isRotated","labelsBelowTicks","offsetLeft","offsetRight","isFullSize","_computeLabelSizes","caches","widths","heights","tickFont","fontString","nestedLabel","widestLabelSize","highestLabelSize","_resolveTickFontOptions","valueAt","idx","getValueForPixel","getPixelForDecimal","decimal","getDecimalForPixel","getBasePixel","getBaseValue","createTickContext","optionTicks","rot","_computeGridLineItems","ticksLength","tl","borderOpts","axisWidth","axisHalfWidth","alignBorderValue","borderValue","alignedLineValue","tx1","ty1","tx2","ty2","x1","y1","x2","y2","positionAxisID","limit","step","optsAtIndex","optsAtIndexBorder","lineColor","tickBorderDash","tickBorderDashOffset","tickAndPadding","hTickAndPadding","lineCount","textOffset","_getXAxisLabelAlignment","_getYAxisLabelAlignment","halfCount","tickTextAlign","labelPadding","_computeLabelArea","drawBackground","getLineWidthForValue","findIndex","drawGrid","drawLine","setLineDash","lineDashOffset","drawBorder","lastLineWidth","drawLabels","renderTextOptions","drawTitle","titleX","titleY","titleArgs","tz","gz","bz","axisID","_maxDigits","fontSize","TypedRegistry","isForType","isPrototypeOf","register","parentScope","isIChartComponent","itemDefaults","defaultRoutes","routes","propertyParts","sourceName","sourceScope","routeDefaults","registerDefaults","unregister","Registry","controllers","_typedRegistries","_each","addControllers","addPlugins","addScales","getController","_get","getElement","getPlugin","getScale","removeControllers","removeElements","removePlugins","removeScales","typedRegistry","arg","reg","_getRegistryForType","_exec","itemReg","registry","component","camelMethod","PluginService","_init","notify","hook","_createDescriptors","descriptor","plugin","callCallback","cancelable","invalidate","_oldCache","_notifyStateChanges","localIds","allPlugins","getOpts","pluginOpts","createDescriptors","previousDescriptors","some","pluginScopeKeys","getIndexAxis","datasetDefaults","determineAxis","scaleOptions","initOptions","chartDefaults","configScales","chartIndexAxis","scaleConf","error","defaultId","getDefaultScaleIDFromAxis","defaultScaleOptions","defaultID","getAxisFromDefaultScaleID","mergeScaleConfig","initData","keyCache","keysCached","cachedKeys","generate","addIfFound","Config","_config","initConfig","_scopeCache","_resolverCache","clearCache","clear","datasetType","additionalOptionScopes","_cachedScopes","mainScope","resetCache","keyLists","chartOptionScopes","subPrefixes","getResolver","hasFunction","needContext","resolverCache","KNOWN_POSITIONS","positionIsHorizontal","compare2Level","l1","l2","onAnimationsComplete","onComplete","onAnimationProgress","onProgress","getCanvas","getElementById","instances","getChart","moveNumericKeys","intKey","Chart","invalidatePlugins","userConfig","initialCanvas","existingChart","_options","_aspectRatio","_metasets","_lastEvent","_listeners","_responsiveListeners","_sortedMetasets","_plugins","_hiddenIndices","attached","_doResize","resizeDelay","_initialize","bindEvents","_resizeBeforeDraw","_resize","newSize","newRatio","onResize","render","ensureScalesHaveIDs","axisOptions","buildOrUpdateScales","scaleOpts","updated","isRadial","dposition","dtype","scaleType","hasUpdated","_updateMetasets","_destroyDatasetMeta","_removeUnreferencedMetasets","_dataset","buildOrUpdateControllers","newControllers","order","isDatasetVisible","ControllerClass","_resetElements","animsDisabled","_updateScales","_checkEventBindings","_updateHiddenIndices","_minPadding","_updateLayout","_updateDatasets","_eventHandler","_updateHoverStyles","existingEvents","newEvents","unbindEvents","changes","_getUniformDataChanges","datasetCount","makeSet","changeSet","noArea","_idx","_updateDataset","layers","_drawDatasets","_drawDataset","useClip","getDatasetArea","getElementsAtEventForMode","getVisibleDatasetCount","setDatasetVisibility","toggleDataVisibility","getDataVisibility","_updateVisibility","_stop","destroy","toBase64Image","toDataURL","bindUserEvents","bindResponsiveEvents","_add","_remove","detached","updateHoverStyle","getActiveElements","setActiveElements","activeElements","lastActive","pluginId","replay","hoverOptions","deactivated","activated","inChartArea","eventFilter","_handleEvent","_getActiveElements","isClick","lastEvent","determineLastEvent","abstract","DateAdapterBase","members","formats","startOf","endOf","_adapters","_date","computeMinSampleSize","$bar","visibleMetas","getAllScaleValues","curr","updateMinAndPrev","parseValue","startValue","endValue","barStart","barEnd","_custom","parseFloatBar","parseArrayOrPrimitive","isFloatBar","custom","setBorderSkipped","borderSkipped","borderProps","enableBorderRadius","parseEdge","orig","v2","startEnd","setInflateAmount","inflateAmount","DoughnutController","animateRotate","animateScale","cutout","circumference","legend","generateLabels","fontColor","legendItem","innerRadius","outerRadius","getter","_getRotation","_getCircumference","_getRotationExtents","arcs","getMaxBorderWidth","getMaxOffset","maxSize","chartWeight","_getRingWeight","ratioX","ratioY","startX","startY","endX","endY","calcMax","calcMin","maxX","maxY","minX","minY","getRatioAndOffset","maxRadius","radiusLength","_getVisibleDatasetWeightTotal","calculateTotal","_getRingWeightOffset","_circumference","calculateCircumference","animationOpts","centerX","centerY","metaData","borderAlign","hoverBorderWidth","hoverOffset","ringWeightOffset","PolarAreaController","angleLines","circular","pointLabels","bind","_updateRadius","cutoutPercentage","xCenter","yCenter","datasetStartAngle","getIndexAngle","defaultAngle","countVisibleElements","_computeAngle","getDistanceFromCenterForValue","categoryPercentage","barPercentage","grouped","_index_","_value_","iAxisKey","vAxisKey","bars","ruler","_getRuler","vpixels","head","_calculateBarValuePixels","ipixels","_calculateBarIndexPixels","_getStacks","skipNull","_getStackCount","_getStackIndex","pixels","barThickness","stackCount","baseValue","minBarLength","actualBase","floating","barSign","halfGrid","maxBarThickness","Infinity","percent","chunk","computeFlexCategoryTraits","thickness","computeFitCategoryTraits","stackIndex","rects","_decimated","animated","maxGapLength","directUpdate","pointsCount","prevParsed","nullData","lastPoint","updateControlPoints","pointPosition","getPointPositionForValue","parseBorderRadius","angleDelta","borderRadius","halfThickness","innerLimit","computeOuterLimit","outerArcLimit","outerStart","outerEnd","innerStart","innerEnd","rThetaToXY","theta","pathArc","pixelMargin","innerR","spacingOffset","avNogSpacingRadius","angleOffset","outerStartAdjustedRadius","outerEndAdjustedRadius","outerStartAdjustedAngle","outerEndAdjustedAngle","innerStartAdjustedRadius","innerEndAdjustedRadius","innerStartAdjustedAngle","innerEndAdjustedAngle","outerMidAdjustedAngle","pCenter","p4","innerMidAdjustedAngle","p8","outerStartX","outerStartY","outerEndX","outerEndY","fullCircles","inner","lineJoin","angleMargin","clipArc","setStyle","lineCap","pathVars","paramsStart","paramsEnd","segmentStart","segmentEnd","outside","pathSegment","lineMethod","stepped","getLineMethod","fastPathSegment","prevX","lastY","avgX","countX","pointIndex","drawX","truncX","_getSegmentMethod","usePath2D","Path2D","path","_path","strokePathWithCache","segmentMethod","strokePathDirect","LineElement","_points","_segments","_pointsUpdated","_interpolate","_getInterpolationMethod","interpolated","hitRadius","getBarBounds","bar","half","skipOrLimit","boundingRects","maxW","maxH","parseBorderWidth","maxR","enableBorder","outer","skipX","skipY","addNormalRectPath","inflateRect","amount","refRect","chartX","chartY","rAdjust","betweenAngles","withinRadius","halfAngle","halfRadius","radiusOffset","drawArc","hoverRadius","mouseX","mouseY","inXRange","inYRange","addRectPath","findOrAddLabel","addedLabels","unshift","addIfString","lastIndexOf","_getLabelForValue","relativeLabelSize","minSpacing","LinearScaleBase","_startValue","_endValue","_valueRange","handleTickRangeOptions","setMin","setMax","minSign","maxSign","getTickLimit","maxTicks","stepSize","computeTickLimit","generationOptions","dataRange","precision","maxDigits","includeBounds","unit","maxSpaces","rmin","rmax","countDefined","niceMin","niceMax","numSpaces","decimalPlaces","generateTicks","LinearScale","log10Floor","changeExponent","isMajor","tickVal","steps","rangeExp","rangeStep","minExp","exp","startExp","lastTick","LogarithmicScale","_zero","getTickBackdropHeight","determineLimits","fitWithPointLabels","_padding","limits","valueCount","_pointLabels","pointLabelOpts","additionalAngle","centerPointLabels","getPointLabelContext","getPointPosition","drawingArea","plFont","textSize","updateLimits","setCenterPoint","_pointLabelItems","extra","outerDistance","pointLabelPosition","yForAngle","getTextAlignForAngle","leftForTextAlign","buildPointLabelItems","hLimits","vLimits","pathRadiusLine","labelCount","RadialLinearScale","animate","leftMovement","rightMovement","topMovement","bottomMovement","scalingFactor","getValueForDistanceFromCenter","scaledDistance","pointLabel","createPointLabelContext","distanceFromCenter","getBasePosition","getPointLabelPosition","backdropLeft","backdropTop","backdropWidth","backdropHeight","drawPointLabels","gridLineOpts","drawRadiusLine","INTERVALS","millisecond","common","second","minute","hour","day","week","month","quarter","year","UNITS","sorter","adapter","_adapter","parser","isoWeekday","_parseOpts","determineUnitForAutoTicks","minUnit","capacity","interval","MAX_SAFE_INTEGER","addTick","time","timestamps","ticksFromTimestamps","majorUnit","setMajorTicks","TimeScale","adapters","displayFormats","_unit","_majorUnit","_offsets","_normalized","normalized","_applyBounds","_getLabelBounds","getLabelTimestamps","timeOpts","_generate","_getLabelCapacity","determineUnitForFormatting","determineMajorUnit","initOffsets","offsetAfterAutoskip","getDecimalForValue","weekday","hasWeekday","getDataTimestamps","tooltipFormat","datetime","_tickFormatFunction","minorFormat","majorFormat","offsets","_getLabelSize","ticksOpts","tickLabelWidth","cosRotation","sinRotation","tickFontSize","exampleTime","exampleLabel","prevSource","nextSource","prevTarget","nextTarget","span","_addedLabels","added","_table","_minPos","_tableRange","_getTimestampsForTable","buildLookupTable","BORDER_COLORS","BACKGROUND_COLORS","getBorderColor","getBackgroundColor","getColorizer","colorizeDoughnutDataset","colorizePolarAreaDataset","colorizeDefaultDataset","containsColorsDefinitions","plugin_colors","forceOverride","_args","colorizer","cleanDecimatedDataset","cleanDecimatedData","plugin_decimation","algorithm","beforeElementsUpdate","xAxis","getStartAndCountOfVisiblePointsSimplified","threshold","decimated","samples","bucketWidth","sampledIndex","endIndex","maxAreaPoint","maxArea","nextA","avgY","avgRangeStart","avgRangeEnd","avgRangeLength","rangeOffs","rangeTo","pointAx","pointAy","lttbDecimation","minIndex","maxIndex","startIndex","xMin","dx","lastIndex","intermediateIndex1","intermediateIndex2","minMaxDecimation","_getBounds","_findSegmentEnd","_getEdge","_createBoundaryLine","boundary","linePoints","_pointsFromSegments","_shouldApplyFill","_resolveTarget","propagate","visited","_decodeFill","fillOption","parseFillOption","firstCh","decodeTargetIndex","addPointsBelow","sourcePoint","linesBelow","postponed","findPoint","pointValue","firstValue","lastValue","simpleArc","getLineByIndex","sourcePoints","below","getLinesBelow","_buildStackLine","_getTargetValue","computeCircularBoundary","_getTargetPixel","computeLinearBoundary","computeBoundary","_drawfill","lineOpts","above","clipVertical","doFill","clipY","lineLoop","tpoints","targetSegments","tgt","subBounds","fillSources","fillSource","src","notShape","clipBounds","interpolatedLineTo","targetLoop","interpolatedPoint","afterDatasetsUpdate","$filler","beforeDraw","drawTime","beforeDatasetsDraw","beforeDatasetDraw","getBoxSize","labelOpts","boxHeight","boxWidth","usePointStyle","pointStyleWidth","itemHeight","Legend","_added","legendHitBoxes","_hoveredItem","doughnutMode","legendItems","columnSizes","lineWidths","buildLabels","labelFont","_computeTitleHeight","_fitRows","_fitCols","hitboxes","totalHeight","row","_itemHeight","heightLimit","totalWidth","currentColWidth","currentColHeight","col","legendItemText","calculateItemWidth","fontLineHeight","calculateLegendItemHeight","calculateItemHeight","calculateItemSize","adjustHitBoxes","rtlHelper","hitbox","_draw","defaultColor","halfFontSize","cursor","textDirection","lineDash","drawOptions","SQRT2","yBoxTop","xBoxLeft","drawLegendBox","titleFont","titlePadding","topPaddingPlusHalfFontSize","_getLegendItemAt","hitBox","lh","handleEvent","onLeave","isListened","hoveredItem","sameItem","plugin_legend","_element","afterEvent","ci","useBorderRadius","Title","_drawArgs","fontOpts","plugin_title","titleBlock","createTitle","WeakMap","plugin_subtitle","positioners","average","eventPosition","nearestElement","tp","pushOrConcat","toPush","splitNewlines","String","createTooltipItem","formattedValue","getTooltipSize","tooltip","body","footer","bodyFont","footerFont","titleLineCount","footerLineCount","bodyLineItemCount","combinedBodyLength","bodyItem","before","after","beforeBody","afterBody","titleSpacing","titleMarginBottom","displayColors","bodySpacing","footerMarginTop","footerSpacing","widthPadding","maxLineWidth","determineXAlign","yAlign","chartWidth","xAlign","caret","caretSize","caretPadding","doesNotFitWithAlign","determineAlignment","determineYAlign","getBackgroundPoint","alignment","paddingAndSize","alignX","alignY","getAlignedX","getBeforeAfterBodyLines","overrideCallbacks","defaultCallbacks","beforeTitle","tooltipItems","afterTitle","beforeLabel","tooltipItem","labelColor","labelTextColor","bodyColor","labelPointStyle","afterLabel","beforeFooter","afterFooter","invokeCallbackWithFallback","Tooltip","opacity","_eventPosition","_size","_cachedAnimations","_tooltipItems","dataPoints","caretX","caretY","labelColors","labelPointStyles","labelTextColors","getTitle","getBeforeBody","getBody","bodyItems","scoped","getAfterBody","getFooter","_createItems","itemSort","positionAndSize","backgroundPoint","external","drawCaret","tooltipPoint","caretPosition","getCaretPosition","x3","y3","ptX","ptY","titleColor","_drawColorBox","colorX","rtlColorX","yOffSet","colorY","multiKeyBackground","outerX","innerX","strokeRect","drawBody","bodyAlign","bodyLineHeight","xLinePadding","fillLineOfText","bodyAlignForCalculation","textColor","drawFooter","footerAlign","footerColor","tooltipSize","quadraticCurveTo","_updateAnimationTarget","animX","animY","_willRender","hasTooltipContent","globalAlpha","positionChanged","_positionChanged","_ignoreReplayEvents","plugin_tooltip","afterInit","afterDraw","helpers","platforms"],"mappings":"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"} \ No newline at end of file From 58ff352df8f33a4d8683812f04361490925f911b Mon Sep 17 00:00:00 2001 From: Ramon Novoa Date: Tue, 10 Jan 2023 13:35:43 +0100 Subject: [PATCH 42/72] Remove sample_agent. Remove sample_agent, since it is not used anymore and has performance issues. --- pandora_console/extensions/sample_agent.php | 66 --------------- .../FreeBSD/pandora_server.conf.new | 9 --- pandora_server/NetBSD/pandora_server.conf.new | 9 --- pandora_server/bin/pandora_server | 10 --- pandora_server/conf/pandora_server.conf.new | 9 --- .../conf/pandora_server.conf.windows | 9 --- pandora_server/lib/PandoraFMS/Config.pm | 12 --- pandora_server/lib/PandoraFMS/Core.pm | 81 ------------------- 8 files changed, 205 deletions(-) delete mode 100644 pandora_console/extensions/sample_agent.php diff --git a/pandora_console/extensions/sample_agent.php b/pandora_console/extensions/sample_agent.php deleted file mode 100644 index 558d5df5d1..0000000000 --- a/pandora_console/extensions/sample_agent.php +++ /dev/null @@ -1,66 +0,0 @@ - $id_agente], 'id_agente_modulo'); - $count_modules = count($modules); - - // Update of layout 1 (Rack sample). - $images_rack_server = [ - 'rack_server_rack', - 'rack_server', - 'rack_switch', - 'rack_firewall', - 'rack_double_server', - 'rack_frame', - 'rack_pdu', - ]; - $query = 'UPDATE `tlayout_data` SET `id_agent` = '.$id_agente.', `id_agente_modulo` = CASE '; - for ($i = 0; $i < $count_modules; $i++) { - $query .= 'WHEN `image` = "'.$images_rack_server[$i].'" THEN '.$modules[$i]['id_agente_modulo'].' '; - } - - $query .= 'END WHERE `id_layout` = 1 AND `image` IN ("'.implode('","', $images_rack_server).'");'; - - db_process_sql($query); - // Update of layout 2 (Dashboard). - $query = 'UPDATE `tlayout_data` SET `id_agent`= '.$id_agente.', `id_agente_modulo` = CASE '; - $query .= 'WHEN `id` = 107 THEN '.$modules[0]['id_agente_modulo'].' '; - $query .= 'WHEN `id` = 108 THEN '.$modules[1]['id_agente_modulo'].' '; - $query .= 'WHEN `id` = 109 THEN '.$modules[2]['id_agente_modulo'].' '; - $query .= 'WHEN `id` = 110 THEN '.$modules[2]['id_agente_modulo'].' '; - $query .= 'WHEN `id` = 111 THEN '.$modules[3]['id_agente_modulo'].' '; - $query .= 'WHEN `id` = 112 THEN '.$modules[4]['id_agente_modulo'].' '; - $query .= 'WHEN `id` = 113 THEN '.$modules[5]['id_agente_modulo'].' '; - $query .= 'WHEN `id` = 114 THEN '.$modules[6]['id_agente_modulo'].' '; - $query .= 'END WHERE `id_layout` = 2 AND `id` IN (107,108,109,110,111,112,113,114);'; - - db_process_sql($query); - - // This setting will avoid regenerate all the times the visual consoles. - config_update_value('sample_agent_deployed', 1); -} - -extensions_add_main_function('sample_agent_deployment'); diff --git a/pandora_server/FreeBSD/pandora_server.conf.new b/pandora_server/FreeBSD/pandora_server.conf.new index bbd58b5cff..ddca8a41ac 100644 --- a/pandora_server/FreeBSD/pandora_server.conf.new +++ b/pandora_server/FreeBSD/pandora_server.conf.new @@ -348,15 +348,6 @@ self_monitoring 1 # Self monitoring interval (in seconds). self_monitoring_interval 300 -# Pandora Sample Agent. If enabled, every 10 minutes, this embedded agent -# will make sample data. Disabled by default. - -sample_agent 0 - -# Pandora Sample Agent interval (in seconds). - -sample_agent_interval 600 - # Update parent from the agent xml #update_parent 1 diff --git a/pandora_server/NetBSD/pandora_server.conf.new b/pandora_server/NetBSD/pandora_server.conf.new index f5c2e79275..a4a77563f3 100644 --- a/pandora_server/NetBSD/pandora_server.conf.new +++ b/pandora_server/NetBSD/pandora_server.conf.new @@ -340,15 +340,6 @@ restart_delay 60 self_monitoring 1 -# Pandora Sample Agent. If enabled, every 10 minutes, this embedded agent -# will make sample data. Disabled by default. - -sample_agent 0 - -# Pandora Sample Agent interval (in seconds). - -sample_agent_interval 600 - # Update parent from the agent xml #update_parent 1 diff --git a/pandora_server/bin/pandora_server b/pandora_server/bin/pandora_server index ae07174f07..e04e326c02 100755 --- a/pandora_server/bin/pandora_server +++ b/pandora_server/bin/pandora_server @@ -491,16 +491,6 @@ sub pandora_server_tasks ($) { pandora_self_monitoring ($pa_config, $dbh); } - # Pandora sample agent - if (defined($pa_config->{'sample_agent'})) { - if ($pa_config->{'sample_agent'} == 1 - && !is_metaconsole($pa_config) - && $counter % $pa_config->{'sample_agent_interval'} == 0){ - pandora_sample_agent ($pa_config); - } - pandora_update_config_token ($dbh, 'sample_agent', $pa_config->{'sample_agent'}); - } - # Avoid counter overflow if ($counter >= ~0){ $counter = 0; diff --git a/pandora_server/conf/pandora_server.conf.new b/pandora_server/conf/pandora_server.conf.new index 8332becd62..3326e4a9ae 100644 --- a/pandora_server/conf/pandora_server.conf.new +++ b/pandora_server/conf/pandora_server.conf.new @@ -422,15 +422,6 @@ self_monitoring 1 # Self monitoring interval (in seconds). self_monitoring_interval 300 -# Pandora Sample Agent. If enabled, every 10 minutes, this embedded agent -# will make sample data. Disabled by default. - -sample_agent 0 - -# Pandora Sample Agent interval (in seconds). - -sample_agent_interval 600 - # Update parent from the agent xml update_parent 1 diff --git a/pandora_server/conf/pandora_server.conf.windows b/pandora_server/conf/pandora_server.conf.windows index efed94ed52..11e67f90eb 100644 --- a/pandora_server/conf/pandora_server.conf.windows +++ b/pandora_server/conf/pandora_server.conf.windows @@ -345,15 +345,6 @@ restart_delay 60 # Self monitoring interval (in seconds). #self_monitoring_interval 300 -# Pandora Sample Agent. If enabled, every 10 minutes, this embedded agent -# will make sample data. Disabled by default. - -sample_agent 0 - -# Pandora Sample Agent interval (in seconds). - -sample_agent_interval 600 - # Update parent from the agent xml #update_parent 1 diff --git a/pandora_server/lib/PandoraFMS/Config.pm b/pandora_server/lib/PandoraFMS/Config.pm index 90802ee8da..c00876dcb3 100644 --- a/pandora_server/lib/PandoraFMS/Config.pm +++ b/pandora_server/lib/PandoraFMS/Config.pm @@ -415,12 +415,6 @@ sub pandora_load_config { # Self monitoring interval $pa_config->{'self_monitoring_interval'} = 300; # 5.1SP1 - # Sample Agent - $pa_config->{'sample_agent'} = 0; - - # Sample agent interval - $pa_config->{'sample_agent_interval'} = 600; - # Process XML data files as a stack $pa_config->{"dataserver_lifo"} = 0; # 5.0 @@ -1014,12 +1008,6 @@ sub pandora_load_config { elsif ($parametro =~ m/^self_monitoring_interval\s+([0-9]*)/i) { $pa_config->{'self_monitoring_interval'} = clean_blank($1); } - elsif ($parametro =~ m/^sample_agent\s+([0-1])/i) { - $pa_config->{'sample_agent'} = clean_blank($1); - } - elsif ($parametro =~ m/^sample_agent_interval\s+([0-9]*)/i) { - $pa_config->{'sample_agent_interval'} = clean_blank($1); - } elsif ($parametro =~ m/^update_parent\s+([0-1])/i) { $pa_config->{'update_parent'} = clean_blank($1); } diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 515c930769..c29fe1e6e2 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -100,8 +100,6 @@ Exported Functions: =item * C -=item * C - =back =head1 METHODS @@ -261,7 +259,6 @@ our @EXPORT = qw( pandora_server_statistics pandora_self_monitoring pandora_thread_monitoring - pandora_sample_agent pandora_process_policy_queue pandora_sync_agents_integria pandora_get_integria_ticket_types @@ -6135,84 +6132,6 @@ sub pandora_thread_monitoring ($$$) { close (XMLFILE); } -########################################################################## -=head2 C<< xml_module_template (I<$module_name>, I<$module_type>, I<$module_data>) >> - -Module template for sample agent - -=cut -########################################################################## -sub xml_module_template ($$$) { - my ($module_name, $module_type, $module_data) = @_; - my $output = "\n"; - - $module_name = "" if $module_name =~ /[\s+.]+/; - $module_data = "" if $module_data =~ /[\s+.]+/; - - $output .= "\t".$module_name."\n"; - $output .= "\t".$module_type."\n"; - $output .= "\t".$module_data."\n"; - $output .= "\n"; - - return $output; -} -########################################################################## -=head2 C<< pandora_sample_agent (I<$pa_config>) >> - -Pandora agent for make sample data - -=cut -########################################################################## -sub pandora_sample_agent ($) { - - my ($pa_config) = @_; - - my $utimestamp = time (); - my $timestamp = strftime ("%Y-%m-%d %H:%M:%S", localtime()); - # First line - my $xml_output = "\n"; - # Header - $xml_output = "\n"; - # Boolean ever return TRUE - $xml_output .= xml_module_template ("Boolean ever true", "generic_proc","1"); - # Boolean return TRUE at 80% of times - my $sample_boolean_mostly_true = 1; - $sample_boolean_mostly_true = 0 if rand(9) > 7; - $xml_output .= xml_module_template ("Boolean mostly true", "generic_proc",$sample_boolean_mostly_true); - # Boolean return false at 80% of times - my $sample_boolean_mostly_false = 0; - $sample_boolean_mostly_false = 1 if rand(9) > 7; - $xml_output .= xml_module_template ("Boolean mostly false", "generic_proc", $sample_boolean_mostly_false); - # Boolean ever return FALSE - $xml_output .= xml_module_template ("Boolean ever false", "generic_proc","0"); - # Random integer between 0 and 100 - $xml_output .= xml_module_template ("Random integer values", "generic_data",int(rand(100))); - # Random values obtained with sinusoidal curves between 0 and 100 values - my $b = 1; - my $sample_serie_curve = 1 + cos(deg2rad($b)); - $b = $b + rand(20)/10; - $b = 0 if ($b > 180); - $sample_serie_curve = $sample_serie_curve * $b * 10; - $sample_serie_curve =~ s/\,/\./g; - $xml_output .= xml_module_template ("Random serie curve", "generic_data", $sample_serie_curve); - # String with 10 random characters - my $sample_random_text = ""; - my @characters = ('a'..'z','A'..'Z'); - for (1...10){ - $sample_random_text .= $characters[int(rand(@characters))]; - } - $xml_output .= xml_module_template ("Random text", "generic_data_string", $sample_random_text); - # End of xml - $xml_output .= ""; - # File path definition - my $filename = $pa_config->{"incomingdir"}."/".$pa_config->{'servername'}.".sample.".$utimestamp.".data"; - # Opening, Writing and closing of XML - open (my $xmlfile, ">", $filename) or die "[FATAL] Could not open sample XML file for deploying monitorization at '$filename'"; - print $xmlfile $xml_output; - close ($xmlfile); - -} - ########################################################################## =head2 C<< set_master (I<$pa_config>, I<$dbh>) >> From 73edabc3353b65f29b3da4a5179ba0dde5d73664 Mon Sep 17 00:00:00 2001 From: "alejandro.campos@artica.es" Date: Thu, 12 Jan 2023 15:05:27 +0100 Subject: [PATCH 43/72] fixed problem regarding type of module status value in mysql8 strict mode --- pandora_server/lib/PandoraFMS/Core.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_server/lib/PandoraFMS/Core.pm b/pandora_server/lib/PandoraFMS/Core.pm index 7428314069..36b77a2e9d 100644 --- a/pandora_server/lib/PandoraFMS/Core.pm +++ b/pandora_server/lib/PandoraFMS/Core.pm @@ -4041,7 +4041,7 @@ sub pandora_event ($$$$$$$$$$;$$$$$$$$$$$$) { $custom_data = '' unless defined ($custom_data); $server_id = 0 unless defined ($server_id); $module_data = defined($module) ? $module->{'datos'} : '' unless defined ($module_data); - $module_status = defined($module) ? $module->{'estado'} : '' unless defined ($module_status); + $module_status = defined($module) ? $module->{'estado'} : 0 unless defined ($module_status); # If the event is created with validated status, assign ack_utimestamp my $ack_utimestamp = $event_status == 1 ? time() : 0; From 65c244fad095394c3354685420db8671c9da2fb8 Mon Sep 17 00:00:00 2001 From: slerena Date: Thu, 12 Jan 2023 15:06:57 +0000 Subject: [PATCH 44/72] Improved search command for count tool --- pandora_server/util/pandora_count.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pandora_server/util/pandora_count.sh b/pandora_server/util/pandora_count.sh index 9aec192f31..7e15e6b144 100755 --- a/pandora_server/util/pandora_count.sh +++ b/pandora_server/util/pandora_count.sh @@ -1,12 +1,12 @@ #!/bin/bash -echo "Small tool to measure data processing throughput for a Pandora FMS data server" -echo "(c) 2010-2015 Sancho Lerena, slerena@gmail.com" +echo "Small tool to measure data processing throughput for a Pandora FMS Data server" +echo "(c) 2010-2023 Pandora FMS Team" ANT=0 while [ 1 ] do - ACT=`find /var/spool/pandora/data_in | wc -l` + ACT=`find /var/spool/pandora/data_in -maxdepth 1 -type f | wc -l` if [ $ANT != 0 ] then RES=`expr $ANT - $ACT` From baa799007e412271025eb155bfb9a865bab420f5 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 12 Jan 2023 16:42:29 +0100 Subject: [PATCH 45/72] #10052 Fixed fictional color 2 --- pandora_console/include/functions_networkmap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/functions_networkmap.php b/pandora_console/include/functions_networkmap.php index f5dd4cfe96..f8e020d066 100644 --- a/pandora_console/include/functions_networkmap.php +++ b/pandora_console/include/functions_networkmap.php @@ -3393,7 +3393,7 @@ function get_status_color_networkmap_fictional_point($id_networkmap, $parent='') $exit = false; foreach ($agents as $agent) { - if ($agent['source_data'] == -1) { + if ($agent['source_data'] == -1 || $agent['type'] == 2) { continue; } From 57bac825d2e99ffb67c83a7b3185d16692bd53a5 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Thu, 12 Jan 2023 16:44:29 +0100 Subject: [PATCH 46/72] #10095 fixed order last triggered --- pandora_console/include/ajax/alert_list.ajax.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/ajax/alert_list.ajax.php b/pandora_console/include/ajax/alert_list.ajax.php index fd1d832618..46ab88951a 100644 --- a/pandora_console/include/ajax/alert_list.ajax.php +++ b/pandora_console/include/ajax/alert_list.ajax.php @@ -721,7 +721,7 @@ if ($get_agent_alerts_datatable === true) { } break; - case 'lastFired': + case 'last_fired': switch ($sort) { case 'asc': $selectLastFiredasc = $selected; From 74fd70ca662d086492aae5afd15d2a79619a8f1b Mon Sep 17 00:00:00 2001 From: artica Date: Fri, 13 Jan 2023 01:01:38 +0100 Subject: [PATCH 47/72] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 626f1ce484..c8532453e1 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.767-230112 +Version: 7.0NG.767-230113 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index e42c6fe663..c28de302e8 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230112" +pandora_version="7.0NG.767-230113" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 4f9c83d07a..0f54f71d1b 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.767'; -use constant AGENT_BUILD => '230112'; +use constant AGENT_BUILD => '230113'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index a4ab621f45..1ed26591ce 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.767 -%define release 230112 +%define release 230113 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 51a0ababc5..828552d50a 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.767 -%define release 230112 +%define release 230113 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index d587b7708a..7e9fd790d4 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230112" +PI_BUILD="230113" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index a946675a42..8a449a47f1 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230112} +{230113} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index c1371559e6..8423ec1521 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.767 Build 230112") +#define PANDORA_VERSION ("7.0NG.767 Build 230113") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index d6ba98e7e3..fdf1655828 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.767(Build 230112))" + VALUE "ProductVersion", "(7.0NG.767(Build 230113))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index fdb0459e01..b149e7bdb3 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.767-230112 +Version: 7.0NG.767-230113 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index c76e694c49..ef8926f0dc 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230112" +pandora_version="7.0NG.767-230113" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index f19add8358..ec84fd650e 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230112'; +$build_version = 'PC230113'; $pandora_version = 'v7.0NG.767'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index f58660371d..4d6e2a1b75 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@

[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 2c768d72d2..170731a24b 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230112 +%define release 230113 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 0433b6d646..43e1ed8101 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230112 +%define release 230113 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 1588bad89a..63066bc4c3 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230112" +PI_BUILD="230113" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 9490dd9d9e..1845bda7e5 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.767 Build 230112"; +my $version = "7.0NG.767 Build 230113"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 605c31b9d7..b558a49ad9 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.767 Build 230112"; +my $version = "7.0NG.767 Build 230113"; # save program name for logging my $progname = basename($0); From 3b0a87e549ca83944e156bd727f05fe304a9391a Mon Sep 17 00:00:00 2001 From: artica Date: Sat, 14 Jan 2023 01:01:39 +0100 Subject: [PATCH 48/72] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index c8532453e1..2d185b70e1 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.767-230113 +Version: 7.0NG.767-230114 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index c28de302e8..3a6bfd58ba 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230113" +pandora_version="7.0NG.767-230114" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 0f54f71d1b..d4cccd4e7e 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.767'; -use constant AGENT_BUILD => '230113'; +use constant AGENT_BUILD => '230114'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 1ed26591ce..b5f326825e 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.767 -%define release 230113 +%define release 230114 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 828552d50a..23a1d16a6c 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.767 -%define release 230113 +%define release 230114 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 7e9fd790d4..1874f4f795 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230113" +PI_BUILD="230114" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 8a449a47f1..259e7a0137 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230113} +{230114} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 8423ec1521..2df22266e1 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.767 Build 230113") +#define PANDORA_VERSION ("7.0NG.767 Build 230114") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index fdf1655828..47a286fe9b 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.767(Build 230113))" + VALUE "ProductVersion", "(7.0NG.767(Build 230114))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index b149e7bdb3..9d1ba84045 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.767-230113 +Version: 7.0NG.767-230114 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index ef8926f0dc..bae28893a5 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230113" +pandora_version="7.0NG.767-230114" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index ec84fd650e..2f12f38ec8 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230113'; +$build_version = 'PC230114'; $pandora_version = 'v7.0NG.767'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 4d6e2a1b75..84527085c1 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 170731a24b..69793ef298 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230113 +%define release 230114 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 43e1ed8101..2fb6eaf10a 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230113 +%define release 230114 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 63066bc4c3..2787e27edd 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230113" +PI_BUILD="230114" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 1845bda7e5..5744d0f404 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.767 Build 230113"; +my $version = "7.0NG.767 Build 230114"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index b558a49ad9..32a537f25a 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.767 Build 230113"; +my $version = "7.0NG.767 Build 230114"; # save program name for logging my $progname = basename($0); From 1792c3dc6b063fc47be58a71647c06c6b7982975 Mon Sep 17 00:00:00 2001 From: artica Date: Sun, 15 Jan 2023 01:00:53 +0100 Subject: [PATCH 49/72] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 2d185b70e1..9d295fe96b 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.767-230114 +Version: 7.0NG.767-230115 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 3a6bfd58ba..2aafc6a17a 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230114" +pandora_version="7.0NG.767-230115" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index d4cccd4e7e..ffd0c4e027 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.767'; -use constant AGENT_BUILD => '230114'; +use constant AGENT_BUILD => '230115'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index b5f326825e..40e3a31356 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.767 -%define release 230114 +%define release 230115 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 23a1d16a6c..44f4c4d449 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.767 -%define release 230114 +%define release 230115 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 1874f4f795..76a24bec77 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230114" +PI_BUILD="230115" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 259e7a0137..eb0705c95e 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230114} +{230115} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 2df22266e1..3c6022cc36 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.767 Build 230114") +#define PANDORA_VERSION ("7.0NG.767 Build 230115") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 47a286fe9b..74a27cc593 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.767(Build 230114))" + VALUE "ProductVersion", "(7.0NG.767(Build 230115))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 9d1ba84045..97c424c725 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.767-230114 +Version: 7.0NG.767-230115 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index bae28893a5..e41c386792 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230114" +pandora_version="7.0NG.767-230115" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 2f12f38ec8..ef7b85f6b7 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230114'; +$build_version = 'PC230115'; $pandora_version = 'v7.0NG.767'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 84527085c1..62d02a45ba 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 69793ef298..82865427f2 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230114 +%define release 230115 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 2fb6eaf10a..038bd645f0 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230114 +%define release 230115 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 2787e27edd..eb0095e3cb 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230114" +PI_BUILD="230115" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 5744d0f404..e1c547dec3 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.767 Build 230114"; +my $version = "7.0NG.767 Build 230115"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 32a537f25a..410f29ba45 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.767 Build 230114"; +my $version = "7.0NG.767 Build 230115"; # save program name for logging my $progname = basename($0); From 0722503253ef170a9be87ccc58db5379a8c44a68 Mon Sep 17 00:00:00 2001 From: artica Date: Mon, 16 Jan 2023 01:00:44 +0100 Subject: [PATCH 50/72] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 9d295fe96b..455711ad53 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.767-230115 +Version: 7.0NG.767-230116 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 2aafc6a17a..3074c72e9a 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230115" +pandora_version="7.0NG.767-230116" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index ffd0c4e027..d63905aa80 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.767'; -use constant AGENT_BUILD => '230115'; +use constant AGENT_BUILD => '230116'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index 40e3a31356..ecac43b1d3 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.767 -%define release 230115 +%define release 230116 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index 44f4c4d449..e913db1228 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.767 -%define release 230115 +%define release 230116 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 76a24bec77..32dc68cd0b 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230115" +PI_BUILD="230116" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index eb0705c95e..82636c084c 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230115} +{230116} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 3c6022cc36..8109f4a996 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.767 Build 230115") +#define PANDORA_VERSION ("7.0NG.767 Build 230116") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 74a27cc593..7e8398dbd8 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.767(Build 230115))" + VALUE "ProductVersion", "(7.0NG.767(Build 230116))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 97c424c725..4f822df86f 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.767-230115 +Version: 7.0NG.767-230116 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index e41c386792..dd1c6d6a8c 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230115" +pandora_version="7.0NG.767-230116" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index ef7b85f6b7..fa54a515eb 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230115'; +$build_version = 'PC230116'; $pandora_version = 'v7.0NG.767'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 62d02a45ba..db2c0a29b7 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 82865427f2..5b71715f00 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230115 +%define release 230116 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 038bd645f0..711edb8365 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230115 +%define release 230116 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index eb0095e3cb..d8d32151e3 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230115" +PI_BUILD="230116" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index e1c547dec3..3cdcd573f2 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.767 Build 230115"; +my $version = "7.0NG.767 Build 230116"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 410f29ba45..fdbf42f632 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.767 Build 230115"; +my $version = "7.0NG.767 Build 230116"; # save program name for logging my $progname = basename($0); From 54e9559f3b156b7d117908fb481c11da760a05c4 Mon Sep 17 00:00:00 2001 From: Calvo Date: Mon, 16 Jan 2023 11:07:56 +0100 Subject: [PATCH 51/72] Deleted sample visual consoles --- pandora_console/pandoradb_data.sql | 270 ----------------------------- 1 file changed, 270 deletions(-) diff --git a/pandora_console/pandoradb_data.sql b/pandora_console/pandoradb_data.sql index e08deaea1d..9a0baba05e 100644 --- a/pandora_console/pandoradb_data.sql +++ b/pandora_console/pandoradb_data.sql @@ -1329,276 +1329,6 @@ INSERT INTO `tnotification_source_user` (`id_source`, `id_user`, `enabled`, `als UPDATE `tnotification_source` SET `enabled`=1 WHERE `description` = 'System status' OR `description` = 'Official communication'; - --- --- Dumping data for table `tlayout` --- -INSERT INTO `tlayout` -VALUES - (1, 'Demo visual console', 0, 'fondo.jpg', 1080, 1920, 'white', 0, 0, null), - (2,'Demo visual console 2',0,'fondo-keep-alive.jpg',1080,1920,'#FFF',0, 0, null), - (3,'Worldmap',0,'map_world.jpg',1080,1920,'white',0, 0, null), - (4,'Europe',0,'map_europe_1.jpg',1080,1920,'white',0, 0, null), - (5,'USA',0,'map_USA.jpg',1080,1920,'white',0, 0, null), - (6,'Spain',0,'map_spain.jpg',1080,1920,'white',0, 0, null), - (7,'Madrid',0,'map_madrid.jpg',1080,1920,'white',0, 0, null), - (8,'Germany',0,'map_germany_1.jpg',1080,1920,'white',0, 0, null), - (9,'France',0,'map_france.jpg',1080,1920,'white',0, 0, null), - (10,'Catalonia',0,'map_catalonia.jpg',1080,1920,'white',0, 0, null), - (11,'Basque Country',0,'map_basque-country.jpg',1080,1920,'white',0, 0, null), - (12,'Andalusia',0,'map_andalusia.jpg',1080,1920,'white',0, 0, null) -; - --- --- Dumping data for table `tlayout_data` --- -INSERT INTO `tlayout_data` VALUES - (1,1,998,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (2,1,998,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (3,1,1016,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (4,1,1016,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (5,1,1034,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (6,1,1034,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (7,1,1052,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (8,1,1052,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (9,1,1070,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (10,1,1070,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (11,1,1088,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (12,1,1088,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (13,1,1106,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (14,1,1106,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (15,1,1124,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (16,1,1124,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (17,1,1142,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (18,1,1142,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (19,1,1160,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (20,1,1160,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (21,1,1178,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (22,1,1178,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (23,1,1196,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (24,1,1196,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (25,1,1214,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (26,1,1214,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (27,1,1232,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (28,1,1232,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (29,1,1250,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (30,1,1250,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (31,1,1268,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (32,1,1268,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (33,1,1286,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (34,1,1286,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (35,1,1286,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (36,1,1304,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (37,1,1304,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (38,1,1322,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (39,1,1322,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (40,1,1340,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (41,1,1507,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (42,1,1536,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (43,1,1568,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (44,1,1599,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (45,1,1627,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (46,1,1656,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (47,1,1685,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (48,1,1714,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (49,1,1743,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (50,1,1772,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (51,1,1449,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (52,1,1800,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (53,1,1413,243,205,426,'','rack_frame',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (54,1,962,381,73,408,'','rack_firewall',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (55,1,962,454,73,408,'','rack_pdu',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (56,1,530,732,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (57,1,962,233,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (58,1,962,307,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (59,1,530,658,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (60,1,530,350,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (61,1,530,204,73,408,'','rack_psa',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (62,1,530,277,73,408,'','rack_pdu',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (63,1,530,585,73,408,'','rack_firewall',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (64,1,530,424,161,411,'','rack_double_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (65,1,1426,448,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (66,1,1495,540,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (67,1,1423,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (68,1,1463,540,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (69,1,1433,540,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (70,1,74,733,73,408,'','rack_pdu',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (71,1,1098,701,80,18,'','rack_hard_disk',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (72,1,1148,701,80,18,'','rack_hard_disk',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (73,1,1340,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (74,1,1358,783,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (75,1,1358,699,80,18,'','rack_hard_disk_2',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (76,1,1143,783,80,18,'','rack_hard_disk',0,3600,9,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (77,1,962,682,205,426,'','rack_frame',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (78,1,1522,540,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (79,1,1419,521,205,426,'','rack_frame',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (80,1,74,278,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (81,1,74,572,161,411,'','rack_double_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (82,1,1418,729,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (83,1,962,527,73,408,'','rack_switch',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (84,1,74,352,73,408,'','rack_router',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (85,1,962,600,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (86,1,530,806,73,408,'','rack_firewall',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (87,1,74,425,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (88,1,74,499,73,408,'','rack_switch',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (89,1,74,806,73,408,'','rack_psa',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (90,1,74,204,74,413,'','rack_server',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (91,1,1424,806,73,408,'','rack_firewall',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (92,1,1486,907,0,0,'<p style="text-align: center; overflow: hidden;"><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;"><strong><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;">Office 8 -&nbsp;</span></strong></span><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;">Rack 2</span></p>','white',4,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (93,1,1048,889,58,281,'<p style="text-align: center; overflow: hidden;"><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;"><strong><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;">Office 8 -&nbsp;</span></strong></span><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;">Rack 1</span></p>','white',4,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (94,1,580,904,0,0,'<p style="text-align: center; overflow: hidden;"><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;"><strong><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;">Office 7 -&nbsp;</span></strong></span><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;">Rack 2</span></p>','white',4,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (95,1,132,907,0,0,'<p style="text-align: center; overflow: hidden;"><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;"><strong><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;">Office 7 -&nbsp;</span></strong></span><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;">Rack 1</span></p>','white',4,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (96,1,733,20,0,0,'<p style="overflow: hidden;"><span class="visual_font_size_48pt"><strong><span style="color: #ffffff; font-family: opensans;">OFFICE RACKS</span></strong></span></p>','white',4,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (97,1,1479,260,174,29,'','rack_server_rack',0,3600,1,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,60,''), - (98,2,709,103,0,400,'','white',19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','timedate','Europe/Madrid',0,0,''), - (99,2,178,481,111,111,'','status',0,3600,11556,430,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (100,2,542,481,111,111,'','status',0,3600,13,2,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (101,2,905,481,111,111,'','status',0,3600,114,11,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (102,2,1276,481,111,111,'','status',0,3600,7,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (103,2,1631,482,111,111,'','status',0,3600,11547,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (104,2,157,393,0,0,'

Backups

\n

 

','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (105,2,512,382,96,172,'<p style="overflow: hidden;"><span class="visual_font_size_28pt" style="font-family: opensans; color: #ffffff;">DB Status</span></p> <p style="overflow: hidden;">&nbsp;</p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (106,2,886,382,0,0,'

Disk slave

\n

 

','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (107,2,1251,382,0,0,'

Disk /var

\n

 

','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (108,2,1547,382,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_28pt" style="color: #ffffff; font-family: opensans;">Authentification</span></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (109,2,126,820,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_36pt" style="font-family: opensans; color: #ffffff;">Processing</span></strong></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (110,2,755,820,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_36pt" style="font-family: opensans; color: #ffffff;">Network</span></strong></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (111,2,1281,820,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_36pt" style="color: #ffffff; font-family: opensans;">Storage</span></strong></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (113,3,851,932,0,0,'','white',19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','time','Europe/Madrid',0,0,''), - (114,3,946,314,60,60,'','status',0,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (115,3,604,351,60,60,'','status',0,3600,0,0,5,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (116,3,840,314,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt"><strong><span style="color: #ffffff;">EUROPE</span></strong></span></p>',NULL,4,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (117,3,664,374,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt"><strong><span style="color: #ffffff;">USA</span></strong></span></p>',NULL,4,3600,0,0,5,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (118,3,57,182,60,60,'','status',0,3600,0,0,5,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (119,3,56,258,60,60,'','status',0,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (121,3,138,183,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt"><strong><span style="color: #ffffff;">USA</span></strong></span></p>',NULL,4,3600,0,0,5,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (122,3,138,259,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt"><strong><span style="color: #ffffff;">EUROPE</span></strong></span></p>',NULL,4,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (123,4,839,525,60,60,'','status',0,3600,0,0,8,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (124,4,699,583,60,60,'','status',0,3600,0,0,9,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (125,4,585,705,60,60,'','status',0,3600,0,0,6,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (126,4,563,754,0,0,'<p style="overflow: hidden;"><span style="color: #000000;"><strong><span class="visual_font_size_18pt">SPAIN</span></strong></span></p>',NULL,4,3600,0,0,6,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (127,4,681,629,0,0,'<p style="overflow: hidden;"><span style="color: #000000;"><strong><span class="visual_font_size_18pt">FRANCE</span></strong></span></p>',NULL,4,3600,0,0,9,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (128,4,832,576,0,0,'<p style="overflow: hidden;"><span class="visual_font_size_18pt" style="color: #000000;"><strong><span style="color: #000000;">GERMANY</span></strong></span></p>',NULL,4,3600,0,0,8,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (129,4,51,177,60,60,'','status',0,3600,0,0,8,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (130,4,124,176,0,0,'<p style="overflow: hidden;"><span class="visual_font_size_18pt" style="color: #ffffff;"><strong>GERMANY</strong></span></p>',NULL,4,3600,0,0,8,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (131,4,51,255,60,60,'','status',0,3600,0,0,9,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (132,4,127,256,0,0,'<p style="overflow: hidden;"><span style="color: #ffffff;"><strong><span class="visual_font_size_18pt">FRANCE</span></strong></span></p>',NULL,4,3600,0,0,9,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (133,4,51,333,60,60,'','status',0,3600,0,0,7,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (134,4,129,333,0,0,'<p style="overflow: hidden;"><span style="color: #ffffff;"><strong><span class="visual_font_size_18pt">SPAIN</span></strong></span></p>',NULL,4,3600,0,0,6,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (136,4,816,928,0,0,'','white',19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','time','Europe/Madrid',0,0,''), - (137,4,1674,184,132,200,'','worldmap',5,3600,0,0,3,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (143,6,972,452,60,60,'','status',0,3600,0,0,7,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (144,6,1039,223,60,60,'','status',0,3600,0,0,11,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (145,6,1339,366,60,60,'','status',0,3600,0,0,10,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (146,6,841,699,60,60,'','status',0,3600,0,0,12,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (147,6,1677,183,132,200,'','worldmap',5,3600,0,0,3,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (148,6,1674,341,132,200,'','europemap',5,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (149,6,1023,288,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt" style="color: #000000;">BASQUE COUNTRY</span></strong></p>',NULL,4,3600,0,0,11,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (150,6,1324,425,0,0,'<p style="line-height: 18px; overflow: hidden;"><span style="color: #ffffff;"><strong><span class="visual_font_size_18pt">CATALONIA</span></strong></span></p>',NULL,4,3600,0,0,10,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (151,6,963,511,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt" style="color: #000000;">MADRID</span></strong></p>',NULL,4,3600,0,0,7,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (152,6,843,749,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt" style="color: #000000;">ANDALUSIA</span></strong></p>',NULL,4,3600,0,0,12,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (153,6,52,179,60,60,'','status',0,3600,0,0,11,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (154,6,125,184,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_14pt" style="color: #ffffff;"><strong>BASQUE COUNTRY</strong></span></p>',NULL,4,3600,0,0,11,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (155,6,53,260,60,60,'','status',0,3600,0,0,7,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (156,6,132,264,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_14pt" style="color: #ffffff;"><strong>MADRID</strong></span></p>',NULL,4,3600,0,0,7,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (157,6,52,339,60,60,'','status',0,3600,0,0,10,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (158,6,132,343,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_14pt" style="color: #ffffff;"><strong>CATALONIA</strong></span></p>',NULL,4,3600,0,0,10,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (159,6,52,413,60,60,'','status',0,3600,0,0,12,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (160,6,132,423,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_14pt" style="color: #ffffff;"><strong>ANDALUSIA</strong></span></p>',NULL,4,3600,0,0,12,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (161,11,761,345,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (162,11,791,401,0,0,'<p style="margin-top:"><span class="visual_font_size_18pt"><strong>BILBAO</strong></span></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (163,11,53,183,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (164,11,131,191,0,0,'<p><span class="visual_font_size_18pt" style="color: #ffffff;"><strong>BILBAO</strong></span></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (165,11,1675,184,132,200,'','worldmap',5,3600,0,0,3,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (167,11,1675,340,132,200,'','europemap',5,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (168,11,1673,507,132,200,'','spainmap',5,3600,0,0,6,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (169,10,1075,607,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (170,10,1012,539,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (171,10,57,266,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (172,10,55,183,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (173,10,131,189,0,0,'<p style="line-height: 18px; overflow: hidden;"><span style="color: #ffffff;"><strong><span class="visual_font_size_18pt">BARCELONA</span></strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (174,10,1044,670,0,0,'<p style="line-height: 18px; overflow: hidden;"><span style="color: #ffffff;"><strong><span class="visual_font_size_18pt">BARCELONA</span></strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (175,10,1000,488,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt"><strong><span style="color: #ffffff;">MANRESA</span></strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (176,10,134,265,0,0,'<p style="line-height: 18px; overflow: hidden;"><span style="color: #ffffff;"><strong><span class="visual_font_size_18pt">MANRESA</span></strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (177,10,1675,184,132,200,'','worldmap',5,3600,0,0,3,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (178,10,1675,342,132,200,'','europemap',5,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (179,10,1673,508,132,200,'','spainmap',5,3600,0,0,6,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (180,7,1675,184,132,200,'','worldmap',5,3600,0,0,3,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (181,7,1673,340,132,200,'','europemap',5,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (182,7,1675,505,132,200,'','spainmap',5,3600,0,0,6,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (183,7,960,571,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (184,7,1089,529,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (185,7,865,541,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (186,7,958,475,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (187,7,54,182,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (188,7,58,417,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (189,7,55,258,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (191,7,56,338,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (192,7,947,631,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt">MADRID</span></strong></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (193,7,790,598,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt">LAS ROZAS</span></strong></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (194,7,914,429,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt">ALCOBENDAS</span></strong></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (195,7,1065,583,0,0,'<p style="line-height: 18px; overflow: hidden; text-align: center;"><strong><span class="visual_font_size_18pt">ALCAL&Aacute; DE </span></strong></p> <p style="line-height: 18px; overflow: hidden; text-align: center;"><strong><span class="visual_font_size_18pt">HENARES</span></strong></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (196,7,134,267,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_14pt" style="color: #ffffff;"><strong>ALCOBENDAS</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (197,7,133,193,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_14pt" style="color: #ffffff;"><strong>MADRID</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (198,7,134,347,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_14pt" style="color: #ffffff;"><strong>LAS ROZAS</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (199,7,135,425,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_14pt" style="color: #ffffff;"><strong>ALCAL&Aacute; DE HENARES</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (200,12,757,537,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (201,12,1022,656,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (202,12,54,182,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (203,12,54,260,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (204,12,751,593,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt"><strong>SEVILLA</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (205,12,1047,716,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt" style="color: #ffffff;"><strong>MALAGA</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (206,12,133,266,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt" style="color: #ffffff;"><strong>MALAGA</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (207,12,132,190,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt" style="color: #ffffff;"><strong>SEVILLA</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (208,12,1675,184,132,200,'','worldmap',5,3600,0,0,3,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (209,12,1675,341,132,200,'','europemap',5,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (210,12,1674,505,132,200,'','spainmap',5,3600,0,0,6,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (211,12,842,935,0,0,'',NULL,19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','time','Europe/Madrid',0,0,''), - (212,7,848,941,0,0,'','white',19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','time','Europe/Madrid',0,0,''), - (213,10,844,940,0,0,'','white',19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','time','Europe/Madrid',0,0,''), - (214,11,847,948,0,0,'','white',19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','time','Europe/Madrid',0,0,''), - (215,5,525,608,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (216,5,1412,351,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (217,5,966,697,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (218,5,458,672,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt" style="color: #ffffff;">CALIFORNIA</span></strong></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (219,5,954,759,0,0,'<p style="line-height: 18px; overflow: hidden;"><span style="color: #000000;"><strong><span class="visual_font_size_18pt">TEXAS</span></strong></span></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (220,5,1468,389,0,0,'<p style="line-height: 18px; overflow: hidden;"><span style="color: #ffffff;"><strong><span class="visual_font_size_18pt">NEW YORK</span></strong></span></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (221,5,56,182,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (222,5,57,258,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (223,5,57,338,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (224,5,137,189,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt" style="color: #ffffff;">CALIFORNIA</span></strong></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (225,5,139,264,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt" style="color: #ffffff;">TEXAS</span></strong></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (226,5,138,342,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt" style="color: #ffffff;">NUEVA YORK</span></strong></p>','white',4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (227,5,1677,189,132,200,'','worldmap',5,3600,0,0,3,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (228,9,907,353,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (229,9,1068,599,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (230,9,60,182,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (231,9,61,258,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (232,9,138,187,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt" style="color: #ffffff;"><strong>PARIS</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (233,9,139,257,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt" style="color: #ffffff;"><strong>LYON</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (234,9,1063,660,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt" style="color: #333333;"><strong>LYON</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (235,9,905,416,0,0,'<p style="line-height: 18px; overflow: hidden;"><span class="visual_font_size_18pt" style="color: #333333;"><strong>PARIS</strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (236,9,1676,184,132,200,'','worldmap',5,3600,0,0,3,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (237,9,1673,340,132,200,'','europemap',5,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (238,8,1098,397,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (239,8,989,775,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (240,8,824,595,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (241,8,59,183,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (242,8,62,335,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (243,8,60,260,60,60,'','status',0,3600,0,1,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (244,8,1077,456,0,0,'<p style="line-height: 18px; overflow: hidden;"><span style="color: #000000;"><strong><span class="visual_font_size_18pt">BERLIN</span></strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (245,8,143,262,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt" style="color: #ffffff;">FRANCFORT</span></strong></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (246,8,144,341,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt" style="color: #ffffff;">MUNICH</span></strong></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (247,8,957,827,0,0,'<p style="line-height: 18px; overflow: hidden;"><span style="color: #000000;"><strong><span class="visual_font_size_18pt">MUNICH</span></strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (248,8,795,655,0,0,'<p style="line-height: 18px; overflow: hidden;"><span style="color: #000000;"><strong><span class="visual_font_size_18pt">FRANCFORT</span></strong></span></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (249,8,143,183,0,0,'<p style="line-height: 18px; overflow: hidden;"><strong><span class="visual_font_size_18pt" style="color: #ffffff;">BERLIN</span></strong></p>',NULL,4,3600,0,0,0,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (250,8,1676,185,132,200,'','worldmap',5,3600,0,0,3,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (251,8,1677,343,132,200,'','europemap',5,3600,0,0,4,0,1,1,0,0,0,'line','down','','',0,0,'default',0,0.000,0.000,0,0,'analogic_1','time','Europe/Madrid',0,0,''), - (252,8,846,940,0,0,'','white',19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','time','Europe/Madrid',0,0,''), - (253,9,848,944,0,0,'','white',19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','time','Europe/Madrid',0,0,''), - (254,6,848,943,0,0,'','white',19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','time','Europe/Madrid',0,0,''), - (255,5,846,941,0,0,'','white',19,3600,0,0,0,0,1,1,0,0,0,'line','down','','#FFFFFF',0,0,'default',0,0.000,0.000,0,0,'digital_1','time','Europe/Madrid',0,0,''); - -- -- Dumping data for table `tpen` -- From f3cd19c315f1db6a351117d4bca037daee96a129 Mon Sep 17 00:00:00 2001 From: Jonathan Date: Mon, 16 Jan 2023 11:34:28 +0100 Subject: [PATCH 52/72] #10014 New filters log viewer --- pandora_console/extras/mr/62.sql | 14 + pandora_console/include/ajax/audit_log.php | 457 ++++++++++++++++++ .../include/class/AuditLog.class.php | 195 ++++++-- 3 files changed, 636 insertions(+), 30 deletions(-) create mode 100644 pandora_console/extras/mr/62.sql create mode 100644 pandora_console/include/ajax/audit_log.php diff --git a/pandora_console/extras/mr/62.sql b/pandora_console/extras/mr/62.sql new file mode 100644 index 0000000000..e6dc902733 --- /dev/null +++ b/pandora_console/extras/mr/62.sql @@ -0,0 +1,14 @@ +START TRANSACTION; + +CREATE TABLE IF NOT EXISTS `tsesion_filter` ( + `id_filter` INT NOT NULL AUTO_INCREMENT, + `id_name` TEXT NULL, + `text` TEXT NULL, + `period` TEXT NULL, + `ip` TEXT NULL, + `type` TEXT NULL, + `user` TEXT NULL, + PRIMARY KEY (`id_filter`) +) ENGINE=InnoDB DEFAULT CHARSET=utf8; + +COMMIT; diff --git a/pandora_console/include/ajax/audit_log.php b/pandora_console/include/ajax/audit_log.php new file mode 100644 index 0000000000..3bf5e09d24 --- /dev/null +++ b/pandora_console/include/ajax/audit_log.php @@ -0,0 +1,457 @@ + $values['id_name']] + ); + + if ($exists) { + echo 'duplicate'; + } else { + $result = db_process_sql_insert('tsesion_filter', $values); + + if ($result === false) { + echo 'error'; + } else { + echo $result; + } + } +} + + +if ($recover_aduit_log_select) { + echo json_encode(audit_get_audit_filter_select()); +} + +if ($update_log_filter) { + $values = []; + $id = get_parameter('id'); + $values['text'] = get_parameter('text', ''); + $values['period'] = get_parameter('period', ''); + $values['ip'] = get_parameter('ip', ''); + $values['type'] = get_parameter('type', -1); + $values['user'] = get_parameter('user', -1); + + $result = db_process_sql_update( + 'tsesion_filter', + $values, + ['id_filter' => $id] + ); + + if ($result === false) { + echo 'error'; + } else { + echo 'ok'; + } +} + + +if ($get_filter_values) { + $id_filter = get_parameter('id'); + + $event_filter = audit_get_audit_log_filter($id_filter); + echo json_encode($event_filter); +} + + +if ($load_filter_modal) { + $filters = audit_get_audit_filter_select(); + $user_groups_array = users_get_groups_for_select( + $config['id_user'], + $access, + true, + true, + false + ); + + echo '
'; + + $table = new StdClass; + $table->id = 'load_filter_form'; + $table->width = '100%'; + $table->cellspacing = 4; + $table->cellpadding = 4; + $table->class = 'databox'; + if (is_metaconsole()) { + $table->cellspacing = 0; + $table->cellpadding = 0; + $table->class = 'databox filters'; + } + + $table->styleTable = 'font-weight: bold; color: #555; text-align:left;'; + $filter_id_width = '200px'; + if (is_metaconsole()) { + $filter_id_width = '150px'; + } + + $data = []; + $table->rowid[3] = 'update_filter_row1'; + $data[0] = __('Load filter').$jump; + $data[0] .= html_print_select( + $filters, + 'filter_id', + '', + '', + __('None'), + 0, + true, + false, + true, + '', + false, + 'margin-left:5px; width:'.$filter_id_width.';' + ); + $data[1] = html_print_submit_button( + __('Load filter'), + 'load_filter', + false, + 'class="sub upd" onclick="load_filter_values()"', + true + ); + $data[1] .= html_print_input_hidden('load_filter', 1, true); + $table->data[] = $data; + $table->rowclass[] = ''; + + html_print_table($table); + echo '
'; + ?> + + '; + + if (check_acl($config['id_user'], 0, 'EW') === 1 || check_acl($config['id_user'], 0, 'EM') === 1) { + echo '
'; + $table = new StdClass; + $table->id = 'save_filter_form'; + $table->width = '100%'; + $table->cellspacing = 4; + $table->cellpadding = 4; + $table->class = 'databox'; + if (is_metaconsole()) { + $table->class = 'databox filters'; + $table->cellspacing = 0; + $table->cellpadding = 0; + } + + $table->styleTable = 'font-weight: bold; text-align:left;'; + if (!is_metaconsole()) { + $table->style[0] = 'width: 50%; width:50%;'; + } + + $data = []; + $table->rowid[0] = 'update_save_selector'; + $data[0] = html_print_radio_button( + 'filter_mode', + 'new', + __('New filter'), + true, + true + ); + + $data[1] = html_print_radio_button( + 'filter_mode', + 'update', + __('Update filter'), + false, + true + ); + + $table->data[] = $data; + $table->rowclass[] = ''; + + $data = []; + $table->rowid[1] = 'save_filter_row1'; + $data[0] = __('Filter name').$jump; + $data[0] .= html_print_input_text('id_name', '', '', 15, 255, true); + + $data[1] = html_print_submit_button( + __('Save filter'), + 'save_filter', + false, + 'class="sub wand" onclick="save_new_filter();"', + true + ); + + $table->data[] = $data; + $table->rowclass[] = ''; + + $data = []; + $table->rowid[2] = 'save_filter_row2'; + + $table->data[] = $data; + $table->rowclass[] = ''; + + $data = []; + $table->rowid[3] = 'update_filter_row1'; + $data[0] = __('Overwrite filter').$jump; + + $_filters_update = audit_get_audit_filter_select(); + + $data[0] .= html_print_select( + $_filters_update, + 'overwrite_filter', + '', + '', + '', + 0, + true + ); + $data[1] = html_print_submit_button( + __('Update filter'), + 'update_filter', + false, + 'class="sub upd" onclick="save_update_filter();"', + true + ); + + $table->data[] = $data; + $table->rowclass[] = ''; + + html_print_table($table); + } else { + include 'general/noaccess.php'; + } + + echo '
'; + ?> + + 'load-filter', + 'class' => 'float-left margin-right-2 margin-left-2 sub config', + 'text' => __('Load filter'), + 'onclick' => '', + ]; + + $buttons[] = [ + 'id' => 'save-filter', + 'class' => 'float-left margin-right-2 sub wand', + 'text' => __('Save filter'), + 'onclick' => '', + ]; + + // Modal for save/load filters. + echo ''; + echo ''; + // Load datatables user interface. ui_print_datatable( [ @@ -174,9 +194,10 @@ class AuditLog extends HTML ], 'search_button_class' => 'sub filter float-right', 'form' => [ - 'inputs' => [ + 'extra_buttons' => $buttons, + 'inputs' => [ [ - 'label' => __('Search'), + 'label' => __('Free search').ui_print_help_tip(__('Search filter by User, Action, Date, Source IP or Comments fields content'), true), 'type' => 'text', 'class' => 'w200px', 'id' => 'filter_text', @@ -211,7 +232,9 @@ class AuditLog extends HTML 'type' => 'select_from_sql', 'nothing' => __('All'), 'nothing_value' => '-1', - 'sql' => 'SELECT id_user, id_user AS text FROM tusuario', + 'sql' => 'SELECT id_user, id_user AS text FROM tusuario UNION SELECT "SYSTEM" + AS id_user, "SYSTEM" AS text UNION SELECT "N/A" + AS id_user, "N/A" AS text', 'class' => 'mw250px', 'id' => 'filter_user', 'name' => 'filter_user', @@ -269,7 +292,10 @@ class AuditLog extends HTML if (empty($this->filterText) === false) { $filter .= sprintf( - " AND (accion LIKE '%%%s%%' OR descripcion LIKE '%%%s%%')", + " AND (accion LIKE '%%%s%%' OR descripcion LIKE '%%%s%%' OR id_usuario LIKE '%%%s%%' OR fecha LIKE '%%%s%%' OR ip_origen LIKE '%%%s%%')", + $this->filterText, + $this->filterText, + $this->filterText, $this->filterText, $this->filterText ); @@ -366,38 +392,147 @@ class AuditLog extends HTML // Javascript content. ?> - + Date: Mon, 16 Jan 2023 13:00:10 +0100 Subject: [PATCH 53/72] #10154 Fixed get_discovery_agents --- pandora_console/include/class/NetworkMap.class.php | 2 +- pandora_console/include/functions_networkmap.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pandora_console/include/class/NetworkMap.class.php b/pandora_console/include/class/NetworkMap.class.php index 470a0deb52..7b43a3daf6 100644 --- a/pandora_console/include/class/NetworkMap.class.php +++ b/pandora_console/include/class/NetworkMap.class.php @@ -776,7 +776,7 @@ class NetworkMap // Search. if ($this->idTask) { // Network map, based on discovery task. - return get_discovery_agents($this->idTask); + enterprise_hook('get_discovery_agents', [$this->idTask]); } if ($this->network) { diff --git a/pandora_console/include/functions_networkmap.php b/pandora_console/include/functions_networkmap.php index f8e020d066..9a9454816a 100644 --- a/pandora_console/include/functions_networkmap.php +++ b/pandora_console/include/functions_networkmap.php @@ -4161,7 +4161,7 @@ function networkmap_get_new_nodes_and_links($networkmap, $x, $y) } if ((int) $networkmap['source'] === SOURCE_TASK) { - $agents = get_discovery_agents($id_recon, true); + $agents = enterprise_hook('get_discovery_agents', [$id_recon, true]); } else if ((int) $networkmap['source'] === SOURCE_NETWORK) { // Network map, based on direct network. $agents = networkmap_get_nodes_from_ip_mask( From 91df54596ddf88ea3c23ff25601c64462408bd06 Mon Sep 17 00:00:00 2001 From: Daniel Cebrian Date: Mon, 16 Jan 2023 14:28:00 +0100 Subject: [PATCH 54/72] #10136 fixed update agent from node for metaconsole --- pandora_server/util/pandora_manage.pl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index fdbf42f632..95cacec923 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -3504,6 +3504,8 @@ sub cli_agent_update() { } else { pandora_update_table_from_hash ($conf, $update, 'id_agente', safe_input($id_agent), 'tagente', $dbh); } + + enterprise_hook('update_agent_cache', [$conf, $dbh, $id_agent]) if ($conf->{'node_metaconsole'} == 1); } ############################################################################## From ae4144f3c5267e68aaa9dafd8fc4b460953e65a2 Mon Sep 17 00:00:00 2001 From: Calvo Date: Mon, 16 Jan 2023 16:57:03 +0100 Subject: [PATCH 55/72] Fix ehorus fonts and glyphicons --- pandora_console/include/ehorus/css/style.css | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pandora_console/include/ehorus/css/style.css b/pandora_console/include/ehorus/css/style.css index 54eb372de9..d4572bec2c 100644 --- a/pandora_console/include/ehorus/css/style.css +++ b/pandora_console/include/ehorus/css/style.css @@ -1,10 +1,17 @@ +@font-face { + font-family: 'Glyphicons Halflings'; + src: url('../fonts/glyphicons-halflings-regular.woff') format('woff'); + src: +} + .terminal-main { font-family: monospace; font-size: 10pt; } #ehorus-client-container { - font-family: 'lato'; + font-family: 'Lato', sans-serif; + font-weight: 400; } .glyphicon { From 2db24935c03161e1e4247dd30a7ecdae0d44c7a0 Mon Sep 17 00:00:00 2001 From: artica Date: Tue, 17 Jan 2023 01:00:17 +0100 Subject: [PATCH 56/72] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 455711ad53..4d5c52119e 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.767-230116 +Version: 7.0NG.767-230117 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 3074c72e9a..5ec56daaae 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230116" +pandora_version="7.0NG.767-230117" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index d63905aa80..1ee95d9af3 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.767'; -use constant AGENT_BUILD => '230116'; +use constant AGENT_BUILD => '230117'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index ecac43b1d3..6163116087 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.767 -%define release 230116 +%define release 230117 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index e913db1228..1a47c03c8c 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_unix %define version 7.0NG.767 -%define release 230116 +%define release 230117 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 32dc68cd0b..6514230296 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230116" +PI_BUILD="230117" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 82636c084c..7abb0bbde0 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230116} +{230117} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 8109f4a996..57eba102c0 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.767 Build 230116") +#define PANDORA_VERSION ("7.0NG.767 Build 230117") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 7e8398dbd8..bbb6cf775b 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.767(Build 230116))" + VALUE "ProductVersion", "(7.0NG.767(Build 230117))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index 4f822df86f..b6d2fceb25 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.767-230116 +Version: 7.0NG.767-230117 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index dd1c6d6a8c..08216f52f5 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230116" +pandora_version="7.0NG.767-230117" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index fa54a515eb..8ba230dab9 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230116'; +$build_version = 'PC230117'; $pandora_version = 'v7.0NG.767'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index db2c0a29b7..6cab393a30 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 5b71715f00..2656b8b883 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230116 +%define release 230117 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 711edb8365..2fc16eccc5 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230116 +%define release 230117 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index d8d32151e3..dae793e0bc 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230116" +PI_BUILD="230117" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 3cdcd573f2..80b973addc 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.767 Build 230116"; +my $version = "7.0NG.767 Build 230117"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index fdbf42f632..9059ef86fa 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.767 Build 230116"; +my $version = "7.0NG.767 Build 230117"; # save program name for logging my $progname = basename($0); From 2e76f72dd82511eb5b8f57f852b262baa1573ab8 Mon Sep 17 00:00:00 2001 From: artica Date: Wed, 18 Jan 2023 01:00:21 +0100 Subject: [PATCH 57/72] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index 4d5c52119e..c534f4b1db 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.767-230117 +Version: 7.0NG.767-230118 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 9b20434155..6f20c6670e 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230117" +pandora_version="7.0NG.767-230118" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 1ee95d9af3..61fbb356bf 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.767'; -use constant AGENT_BUILD => '230117'; +use constant AGENT_BUILD => '230118'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index c47f00ee83..b20d8317e3 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.767 -%define release 230117 +%define release 230118 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index b8f54996f7..fa1421fbed 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.767 -%define release 230117 +%define release 230118 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 6514230296..8c21784517 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230117" +PI_BUILD="230118" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 7abb0bbde0..1de04f2334 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230117} +{230118} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index 57eba102c0..f4d09bff89 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.767 Build 230117") +#define PANDORA_VERSION ("7.0NG.767 Build 230118") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index bbb6cf775b..1b7a7a291e 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.767(Build 230117))" + VALUE "ProductVersion", "(7.0NG.767(Build 230118))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index b6d2fceb25..fcf83d0085 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.767-230117 +Version: 7.0NG.767-230118 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index 08216f52f5..c6cec30de2 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230117" +pandora_version="7.0NG.767-230118" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 8ba230dab9..62710fa775 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230117'; +$build_version = 'PC230118'; $pandora_version = 'v7.0NG.767'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 6cab393a30..5bc0662ccc 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 2656b8b883..4c2860b82d 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230117 +%define release 230118 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index 2fc16eccc5..b01c88608f 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230117 +%define release 230118 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index dae793e0bc..49453848b4 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230117" +PI_BUILD="230118" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 80b973addc..212b47069d 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.767 Build 230117"; +my $version = "7.0NG.767 Build 230118"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index 9059ef86fa..cb2b6aa453 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.767 Build 230117"; +my $version = "7.0NG.767 Build 230118"; # save program name for logging my $progname = basename($0); From e0ee00aa7c9ca22c675f9b5adfe5bb00488694f2 Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 18 Jan 2023 09:28:57 +0100 Subject: [PATCH 58/72] fix name lts pandora_enterprise#10173 --- pandora_console/extras/mr/60.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pandora_console/extras/mr/60.sql b/pandora_console/extras/mr/60.sql index 9b2c360dbc..c0fbc10683 100644 --- a/pandora_console/extras/mr/60.sql +++ b/pandora_console/extras/mr/60.sql @@ -13,6 +13,8 @@ ALTER TABLE `tevent_filter` ADD COLUMN `not_search` INT NOT NULL DEFAULT 0; ALTER TABLE `tusuario` MODIFY COLUMN `password` VARCHAR(60) DEFAULT NULL; +UPDATE tconfig SET value='' WHERE token='lts_name'; + update `tmodule_inventory` set `code`='IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9jcHUucGwKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMDggUmFtb24gTm92b2EsIHJub3ZvYUBhcnRpY2EuZXMKIyAgICAgICAgICAgKGMpIDIwMDgtMjAyMSBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2ljYXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3RyaWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUgRm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJBTlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJVFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUgcmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25nIHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNlIHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7CgojIENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIi91c3IvYmluL3BhbmRvcmF3bWljIjsKCnVubGVzcygtZSAkd21pX2NsaWVudCkgewoJcHJpbnQgIltlcnJvcl0gJHdtaV9jbGllbnQgbm90IGZvdW5kLlxuIjsKCWV4aXQgMTsKfQoKaWYgKCQjQVJHViAhPSAyKSB7CglwcmludCAiVXNhZ2U6ICQwIDx0YXJnZXQgaXA+IDx1c2VybmFtZT4gPHBhc3N3b3JkPlxuIjsKCWV4aXQgMTsKfQoKbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOwpteSAkdXNlcm5hbWUgPSAkQVJHVlsxXTsKbXkgJHBhc3N3b3JkID0gJEFSR1ZbMl07CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIFNVQiBydW5fcXVlcnkgKCR3cWxfcXVlcnkpCiMgUnVucyB0aGUgZ2l2ZW4gV1FMIHF1ZXJ5IGFuZCByZXR1cm5zIHRoZSByZXN1bHQgYXMgYW4gYXJyYXkgb2YgaGFzaGVzLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcnVuX3F1ZXJ5IHsKCW15ICR3cWxfcXVlcnkgPSAkX1swXTsKCW15IEByZXN1bHQgPSB7fTsKCgkkd3FsX3F1ZXJ5ID1+ICdzLyIvXCcvZyc7CgoJIyBSdW4gdGhlIERDT00vV01JIGNsaWVudAoJbXkgJG91dHB1dCA9IGAkd21pX2NsaWVudCAtVSAnJHVzZXJuYW1lJyUnJHBhc3N3b3JkJyAvLyR0YXJnZXRfaXAgXCIkd3FsX3F1ZXJ5XCIgMj4vZGV2L251bGxgOwoKCW15IEBsaW5lcyA9IHNwbGl0KC9cbi8sICRvdXRwdXQpOwoJIyBIZWFkZXIsIGRlc2NyaXB0aW9uLCByZXN1bHRzCglpZiAoJCNsaW5lcyA8IDIpIHsKCQlleGl0IDE7Cgl9CgoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGluZXMpOwoJCgkjIEdldCBjb2x1bW4gbmFtZXMKCW15IEBjb2x1bW5fbmFtZXMgPSBzcGxpdCgvXHwvLCBzaGlmdCAoQGxpbmVzKSk7CgoJIyBHZXQgcm93IGRhdGEKCW15ICRpZHggPSAwOwoJZm9yIChteSAkaSA9IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsKCgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sgbGlzdAoJCWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCgkJbXkgQGNvbHVtbiA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOwoJCWZvciAobXkgJGogPSAwOyAkaiA8PSAkI2NvbHVtbl9uYW1lczsgJGorKykgewoJCQlpZiAoISBkZWZpbmVkKCRjb2x1bW5bJGpdKSkgewoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOwoJCQl9CgkJCWVsc2UgewoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpdOwoJCQl9CgkJfQoJCQoJCSRpZHgrKzsKCX0KCQoJcmV0dXJuIEByZXN1bHQ7Cn0KCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHByaW50X21vZHVsZWRhdGEgKCRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhLCAKIyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkKIyBQcmludHMgYSBtb2R1bGVkYXRhIFhNTCB0YWcuICRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhIGFuZAojICRtb2R1bGVfZGVzY3JpcHRpb24gYXJlIHVzZWQgdG8gaW5kZXggdGhlIGl0ZW0sIGRhdGEgYW5kIGRlc2NyaXB0aW9uCiMgWE1MIHRhZ3MgcmVzcGVjdGl2ZWx5LgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcHJpbnRfbW9kdWxlZGF0YSB7CglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsKCW15ICRtb2R1bGVfZGF0YSA9ICRfWzFdOwoJbXkgJG1vZHVsZV9kZXNjcmlwdGlvbiA9ICRfWzJdOwoJbXkgQGRhdGEgPSBAeyRfWzNdfTsKCW15ICRyZXN1bHQ7CgoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsKCQkKCQkkcmVzdWx0ID0gJyc7CgoJCSMgSXRlbQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSkpIHsKCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAiOyI7CgkJfQoKCQkjIERhdGEKCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0pKSB7CgkJCSRyZXN1bHQgLj0gJGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9IC4gIiBNaHo7IjsKCQl9CgoJCSMgRGVzY3JpcHRpb24KCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259KSkgewoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn0gLiAiOyI7CgkJfQoKCQlwcmludCAkcmVzdWx0IC4gIlxuIjsJCgl9Cn0KCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgTWFpbgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKbXkgQHJlc3VsdCA9IHJ1bl9xdWVyeSgiU0VMRUNUIE5hbWUsIE1heENsb2NrU3BlZWQsIERlc2NyaXB0aW9uIEZST00gV2luMzJfUHJvY2Vzc29yIik7CnByaW50X21vZHVsZWRhdGEgKCJOYW1lIiwgIk1heENsb2NrU3BlZWQiLCAiRGVzY3JpcHRpb24iLCBcQHJlc3VsdCk7CmV4aXQgMDsK' where `code`='IyEvdXNyL2Jpbi9wZXJsDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBwYW5kb3JhX2NwdS5wbA0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiMgQ29weXJpZ2h0IChjKSAyMDA4IFJhbW9uIE5vdm9hLCBybm92b2FAYXJ0aWNhLmVzDQojICAgICAgICAgICAoYykgMjAwOCBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2ljYXMgUy5MDQojDQojIFRoaXMgcHJvZ3JhbSBpcyBmcmVlIHNvZnR3YXJlOyB5b3UgY2FuIHJlZGlzdHJpYnV0ZSBpdCBhbmQvb3INCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UNCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZvdW5kYXRpb247IHZlcnNpb24gMi4NCiMNCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsDQojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5UWTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mDQojIE1FUkNIQU5UQUJJTElUWSBvciBGSVRORVNTIEZPUiBBIFBBUlRJQ1VMQVIgUFVSUE9TRS4gIFNlZSB0aGUNCiMgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4NCiMgWW91IHNob3VsZCBoYXZlIHJlY2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UNCiMgYWxvbmcgd2l0aCB0aGlzIHByb2dyYW07IGlmIG5vdCwgd3JpdGUgdG8gdGhlIEZyZWUgU29mdHdhcmUNCiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCg0KdXNlIHN0cmljdDsNCnVzZSB3YXJuaW5nczsNCg0KdXNlIEZpbGU6OkJhc2VuYW1lOw0KdXNlIEhUTUw6OkVudGl0aWVzICgpOw0KDQojIENoZWNrIGZvciB3bWljDQpteSAkd21pX2NsaWVudCA9ICJ3bWljIjsNCmlmIChzeXN0ZW0oIiR3bWlfY2xpZW50ID4gL2Rldi9udWxsIDI+JjEiKSAhPSAyNTYpIHsNCglwcmludCAiW2Vycm9yXSAkd21pX2NsaWVudCBub3QgZm91bmQuXG4iOw0KCWV4aXQgMTsNCn0NCg0KaWYgKCQjQVJHViAhPSAyKSB7DQoJcHJpbnQgIlVzYWdlOiAkMCA8dGFyZ2V0IGlwPiA8dXNlcm5hbWU+IDxwYXNzd29yZD5cbiI7DQoJZXhpdCAxOw0KfQ0KDQpteSAkdGFyZ2V0X2lwID0gJEFSR1ZbMF07DQpteSAkdXNlcm5hbWUgPSAkQVJHVlsxXTsNCm15ICRwYXNzd29yZCA9ICRBUkdWWzJdOw0KDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBTVUIgcnVuX3F1ZXJ5ICgkd3FsX3F1ZXJ5KQ0KIyBSdW5zIHRoZSBnaXZlbiBXUUwgcXVlcnkgYW5kIHJldHVybnMgdGhlIHJlc3VsdCBhcyBhbiBhcnJheSBvZiBoYXNoZXMuDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0Kc3ViIHJ1bl9xdWVyeSB7DQoJbXkgJHdxbF9xdWVyeSA9ICRfWzBdOw0KCW15IEByZXN1bHQgPSB7fTsNCg0KCSR3cWxfcXVlcnkgPX4gJ3MvIi9cJy9nJzsNCg0KCSMgUnVuIHRoZSBEQ09NL1dNSSBjbGllbnQNCglteSAkb3V0cHV0ID0gYCR3bWlfY2xpZW50IC1VICckdXNlcm5hbWUnJSckcGFzc3dvcmQnIC8vJHRhcmdldF9pcCBcIiR3cWxfcXVlcnlcIiAyPi9kZXYvbnVsbGA7DQoNCglteSBAbGluZXMgPSBzcGxpdCgvXG4vLCAkb3V0cHV0KTsNCgkjIEhlYWRlciwgZGVzY3JpcHRpb24sIHJlc3VsdHMNCglpZiAoJCNsaW5lcyA8IDIpIHsNCgkJZXhpdCAxOw0KCX0NCg0KCSMgRHJvcCB0aGUgaGVhZGVyDQoJc2hpZnQgKEBsaW5lcyk7DQoJDQoJIyBHZXQgY29sdW1uIG5hbWVzDQoJbXkgQGNvbHVtbl9uYW1lcyA9IHNwbGl0KC9cfC8sIHNoaWZ0IChAbGluZXMpKTsNCg0KCSMgR2V0IHJvdyBkYXRhDQoJbXkgJGlkeCA9IDA7DQoJZm9yIChteSAkaSA9IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsNCg0KCQkjIENoZWNrIGZvciBlcnJvcnMNCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9eRVJST1IvKSB7DQoJCQlleGl0IDE7DQoJCX0NCg0KCQkjIEJsYWNrIGxpc3QNCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9GaWxlIDEvKSB7DQoJCQluZXh0Ow0KCQl9DQoNCgkJbXkgQGNvbHVtbiA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOw0KCQlmb3IgKG15ICRqID0gMDsgJGogPD0gJCNjb2x1bW5fbmFtZXM7ICRqKyspIHsNCgkJCWlmICghIGRlZmluZWQoJGNvbHVtblskal0pKSB7DQoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOw0KCQkJfQ0KCQkJZWxzZSB7DQoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpdOw0KCQkJfQ0KCQl9DQoJCQ0KCQkkaWR4Kys7DQoJfQ0KCQ0KCXJldHVybiBAcmVzdWx0Ow0KfQ0KDQojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIw0KIyBTVUIgcHJpbnRfbW9kdWxlZGF0YSAoJG1vZHVsZV9pdGVtLCAkbW9kdWxlX2RhdGEsIA0KIyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkNCiMgUHJpbnRzIGEgbW9kdWxlZGF0YSBYTUwgdGFnLiAkbW9kdWxlX2l0ZW0sICRtb2R1bGVfZGF0YSBhbmQNCiMgJG1vZHVsZV9kZXNjcmlwdGlvbiBhcmUgdXNlZCB0byBpbmRleCB0aGUgaXRlbSwgZGF0YSBhbmQgZGVzY3JpcHRpb24NCiMgWE1MIHRhZ3MgcmVzcGVjdGl2ZWx5Lg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCnN1YiBwcmludF9tb2R1bGVkYXRhIHsNCglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsNCglteSAkbW9kdWxlX2RhdGEgPSAkX1sxXTsNCglteSAkbW9kdWxlX2Rlc2NyaXB0aW9uID0gJF9bMl07DQoJbXkgQGRhdGEgPSBAeyRfWzNdfTsNCglteSAkcmVzdWx0Ow0KDQoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsNCgkJDQoJCSRyZXN1bHQgPSAnJzsNCg0KCQkjIEl0ZW0NCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2l0ZW19KSkgew0KCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAiOyI7DQoJCX0NCg0KCQkjIERhdGENCgkJaWYgKGRlZmluZWQoJGVsZW1lbnQtPnskbW9kdWxlX2RhdGF9KSkgew0KCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0gLiAiIE1oejsiOw0KCQl9DQoNCgkJIyBEZXNjcmlwdGlvbg0KCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259KSkgew0KCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259IC4gIjsiOw0KCQl9DQoNCgkJcHJpbnQgJHJlc3VsdCAuICJcbiI7CQ0KCX0NCn0NCg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCiMgTWFpbg0KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMNCg0KbXkgQHJlc3VsdCA9IHJ1bl9xdWVyeSgiU0VMRUNUIE5hbWUsIE1heENsb2NrU3BlZWQsIERlc2NyaXB0aW9uIEZST00gV2luMzJfUHJvY2Vzc29yIik7DQpwcmludF9tb2R1bGVkYXRhICgiTmFtZSIsICJNYXhDbG9ja1NwZWVkIiwgIkRlc2NyaXB0aW9uIiwgXEByZXN1bHQpOw0KZXhpdCAwOw0K' and `name` = 'CPU' and `id_module_inventory`=2; update `tmodule_inventory` set `code`='IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9yYW0ucGwKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMDggUmFtb24gTm92b2EsIHJub3ZvYUBhcnRpY2EuZXMKIyAgICAgICAgICAgKGMpIDIwMDgtMjAyMSBBcnRpY2EgU29sdWNpb25lcyBUZWNub2xvZ2ljYXMgUy5MCiMKIyBUaGlzIHByb2dyYW0gaXMgZnJlZSBzb2Z0d2FyZTsgeW91IGNhbiByZWRpc3RyaWJ1dGUgaXQgYW5kL29yCiMgbW9kaWZ5IGl0IHVuZGVyIHRoZSB0ZXJtcyBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhcyBwdWJsaXNoZWQgYnkgdGhlIEZyZWUgU29mdHdhcmUgRm91bmRhdGlvbjsgdmVyc2lvbiAyLgojCiMgVGhpcyBwcm9ncmFtIGlzIGRpc3RyaWJ1dGVkIGluIHRoZSBob3BlIHRoYXQgaXQgd2lsbCBiZSB1c2VmdWwsCiMgYnV0IFdJVEhPVVQgQU5ZIFdBUlJBTlRZOyB3aXRob3V0IGV2ZW4gdGhlIGltcGxpZWQgd2FycmFudHkgb2YKIyBNRVJDSEFOVEFCSUxJVFkgb3IgRklUTkVTUyBGT1IgQSBQQVJUSUNVTEFSIFBVUlBPU0UuICBTZWUgdGhlCiMgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UgZm9yIG1vcmUgZGV0YWlscy4KIyBZb3Ugc2hvdWxkIGhhdmUgcmVjZWl2ZWQgYSBjb3B5IG9mIHRoZSBHTlUgR2VuZXJhbCBQdWJsaWMgTGljZW5zZQojIGFsb25nIHdpdGggdGhpcyBwcm9ncmFtOyBpZiBub3QsIHdyaXRlIHRvIHRoZSBGcmVlIFNvZnR3YXJlCiMgRm91bmRhdGlvbiwgSW5jLiwgNTEgRnJhbmtsaW4gU3RyZWV0LCBGaWZ0aCBGbG9vciwgQm9zdG9uLCBNQSAgMDIxMTAtMTMwMSwgVVNBLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKdXNlIHN0cmljdDsKdXNlIHdhcm5pbmdzOwoKdXNlIEZpbGU6OkJhc2VuYW1lOwp1c2UgSFRNTDo6RW50aXRpZXMgKCk7CgojIENoZWNrIGZvciB3bWljCm15ICR3bWlfY2xpZW50ID0gIi91c3IvYmluL3BhbmRvcmF3bWljIjsKCnVubGVzcygtZSAkd21pX2NsaWVudCkgewoJcHJpbnQgIltlcnJvcl0gJHdtaV9jbGllbnQgbm90IGZvdW5kLlxuIjsKCWV4aXQgMTsKfQoKaWYgKCQjQVJHViAhPSAyKSB7CglwcmludCAiVXNhZ2U6ICQwIDx0YXJnZXQgaXA+IDx1c2VybmFtZT4gPHBhc3N3b3JkPlxuIjsKCWV4aXQgMTsKfQoKbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOwpteSAkdXNlcm5hbWUgPSAkQVJHVlsxXTsKbXkgJHBhc3N3b3JkID0gJEFSR1ZbMl07CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIFNVQiBydW5fcXVlcnkgKCR3cWxfcXVlcnkpCiMgUnVucyB0aGUgZ2l2ZW4gV1FMIHF1ZXJ5IGFuZCByZXR1cm5zIHRoZSByZXN1bHQgYXMgYW4gYXJyYXkgb2YgaGFzaGVzLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcnVuX3F1ZXJ5IHsKCW15ICR3cWxfcXVlcnkgPSAkX1swXTsKCW15IEByZXN1bHQgPSB7fTsKCgkkd3FsX3F1ZXJ5ID1+ICdzLyIvXCcvZyc7CgoJIyBSdW4gdGhlIERDT00vV01JIGNsaWVudAoJbXkgJG91dHB1dCA9IGAkd21pX2NsaWVudCAtVSAnJHVzZXJuYW1lJyUnJHBhc3N3b3JkJyAvLyR0YXJnZXRfaXAgXCIkd3FsX3F1ZXJ5XCIgMj4vZGV2L251bGxgOwoKCW15IEBsaW5lcyA9IHNwbGl0KC9cbi8sICRvdXRwdXQpOwoJIyBIZWFkZXIsIGRlc2NyaXB0aW9uLCByZXN1bHRzCglpZiAoJCNsaW5lcyA8IDIpIHsKCQlleGl0IDE7Cgl9CgoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGluZXMpOwoJCgkjIEdldCBjb2x1bW4gbmFtZXMKCW15IEBjb2x1bW5fbmFtZXMgPSBzcGxpdCgvXHwvLCBzaGlmdCAoQGxpbmVzKSk7CgoJIyBHZXQgcm93IGRhdGEKCW15ICRpZHggPSAwOwoJZm9yIChteSAkaSA9IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsKCgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sgbGlzdAoJCWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCgkJbXkgQGNvbHVtbiA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOwoJCWZvciAobXkgJGogPSAwOyAkaiA8PSAkI2NvbHVtbl9uYW1lczsgJGorKykgewoJCQlpZiAoISBkZWZpbmVkKCRjb2x1bW5bJGpdKSkgewoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOwoJCQl9CgkJCWVsc2UgewoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpdOwoJCQl9CgkJfQoJCQoJCSRpZHgrKzsKCX0KCQoJcmV0dXJuIEByZXN1bHQ7Cn0KCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHByaW50X21vZHVsZWRhdGEgKCRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhLCAKIyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkKIyBQcmludHMgYSBtb2R1bGVkYXRhIFhNTCB0YWcuICRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhIGFuZAojICRtb2R1bGVfZGVzY3JpcHRpb24gYXJlIHVzZWQgdG8gaW5kZXggdGhlIGl0ZW0sIGRhdGEgYW5kIGRlc2NyaXB0aW9uCiMgWE1MIHRhZ3MgcmVzcGVjdGl2ZWx5LgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcHJpbnRfbW9kdWxlZGF0YSB7CglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsKCW15ICRtb2R1bGVfZGF0YSA9ICRfWzFdOwoJbXkgJG1vZHVsZV9kZXNjcmlwdGlvbiA9ICRfWzJdOwoJbXkgQGRhdGEgPSBAeyRfWzNdfTsKCW15ICRyZXN1bHQ7CgoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsKCQkKCQkkcmVzdWx0ID0gJyc7CgoJCSMgSXRlbQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSkpIHsKCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAnOyc7CgkJfQoKCQkjIERhdGEKCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0pKSB7CgkJCSRyZXN1bHQgLj0gJyAnIC4gc3ByaW50ZigiJS4xZiIsICRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSAvIDEwNDg1NzYpIC4gIiBNQnl0ZXM7IjsKCQl9CgoJCSMgRGVzY3JpcHRpb24KCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259KSkgewoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn07CgkJfQoKCQlwcmludCAkcmVzdWx0IC4gIlxuIjsJCgl9Cn0KCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgTWFpbgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKbXkgQHJlc3VsdCA9IHJ1bl9xdWVyeSgiU0VMRUNUIFRhZywgQ2FwYWNpdHksIE5hbWUgRlJPTSBXaW4zMl9QaHlzaWNhbE1lbW9yeSIpOwpwcmludF9tb2R1bGVkYXRhICgiVGFnIiwgIkNhcGFjaXR5IiwgIk5hbWUiLCBcQHJlc3VsdCk7CmV4aXQgMDsK' where `code`='IyEvdXNyL2Jpbi9wZXJsCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgcGFuZG9yYV9yYW0ucGwKIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKIyBDb3B5cmlnaHQgKGMpIDIwMDggUmFtb24gTm92b2EsIHJub3ZvYUBhcnRpY2EuZXMKIyAgICAgICAgICAgKGMpIDIwMDggQXJ0aWNhIFNvbHVjaW9uZXMgVGVjbm9sb2dpY2FzIFMuTAojCiMgVGhpcyBwcm9ncmFtIGlzIGZyZWUgc29mdHdhcmU7IHlvdSBjYW4gcmVkaXN0cmlidXRlIGl0IGFuZC9vcgojIG1vZGlmeSBpdCB1bmRlciB0aGUgdGVybXMgb2YgdGhlIEdOVSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlCiMgYXMgcHVibGlzaGVkIGJ5IHRoZSBGcmVlIFNvZnR3YXJlIEZvdW5kYXRpb247IHZlcnNpb24gMi4KIwojIFRoaXMgcHJvZ3JhbSBpcyBkaXN0cmlidXRlZCBpbiB0aGUgaG9wZSB0aGF0IGl0IHdpbGwgYmUgdXNlZnVsLAojIGJ1dCBXSVRIT1VUIEFOWSBXQVJSQU5UWTsgd2l0aG91dCBldmVuIHRoZSBpbXBsaWVkIHdhcnJhbnR5IG9mCiMgTUVSQ0hBTlRBQklMSVRZIG9yIEZJVE5FU1MgRk9SIEEgUEFSVElDVUxBUiBQVVJQT1NFLiAgU2VlIHRoZQojIEdOVSBHZW5lcmFsIFB1YmxpYyBMaWNlbnNlIGZvciBtb3JlIGRldGFpbHMuCiMgWW91IHNob3VsZCBoYXZlIHJlY2VpdmVkIGEgY29weSBvZiB0aGUgR05VIEdlbmVyYWwgUHVibGljIExpY2Vuc2UKIyBhbG9uZyB3aXRoIHRoaXMgcHJvZ3JhbTsgaWYgbm90LCB3cml0ZSB0byB0aGUgRnJlZSBTb2Z0d2FyZQojIEZvdW5kYXRpb24sIEluYy4sIDUxIEZyYW5rbGluIFN0cmVldCwgRmlmdGggRmxvb3IsIEJvc3RvbiwgTUEgIDAyMTEwLTEzMDEsIFVTQS4KIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMKCnVzZSBzdHJpY3Q7CnVzZSB3YXJuaW5nczsKCnVzZSBGaWxlOjpCYXNlbmFtZTsKdXNlIEhUTUw6OkVudGl0aWVzICgpOwoKIyBDaGVjayBmb3Igd21pYwpteSAkd21pX2NsaWVudCA9ICJ3bWljIjsKaWYgKHN5c3RlbSgiJHdtaV9jbGllbnQgPiAvZGV2L251bGwgMj4mMSIpICE9IDI1NikgewoJcHJpbnQgIltlcnJvcl0gJHdtaV9jbGllbnQgbm90IGZvdW5kLlxuIjsKCWV4aXQgMTsKfQoKaWYgKCQjQVJHViAhPSAyKSB7CglwcmludCAiVXNhZ2U6ICQwIDx0YXJnZXQgaXA+IDx1c2VybmFtZT4gPHBhc3N3b3JkPlxuIjsKCWV4aXQgMTsKfQoKbXkgJHRhcmdldF9pcCA9ICRBUkdWWzBdOwpteSAkdXNlcm5hbWUgPSAkQVJHVlsxXTsKbXkgJHBhc3N3b3JkID0gJEFSR1ZbMl07CgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwojIFNVQiBydW5fcXVlcnkgKCR3cWxfcXVlcnkpCiMgUnVucyB0aGUgZ2l2ZW4gV1FMIHF1ZXJ5IGFuZCByZXR1cm5zIHRoZSByZXN1bHQgYXMgYW4gYXJyYXkgb2YgaGFzaGVzLgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcnVuX3F1ZXJ5IHsKCW15ICR3cWxfcXVlcnkgPSAkX1swXTsKCW15IEByZXN1bHQgPSB7fTsKCgkkd3FsX3F1ZXJ5ID1+ICdzLyIvXCcvZyc7CgoJIyBSdW4gdGhlIERDT00vV01JIGNsaWVudAoJbXkgJG91dHB1dCA9IGAkd21pX2NsaWVudCAtVSAnJHVzZXJuYW1lJyUnJHBhc3N3b3JkJyAvLyR0YXJnZXRfaXAgXCIkd3FsX3F1ZXJ5XCIgMj4vZGV2L251bGxgOwoKCW15IEBsaW5lcyA9IHNwbGl0KC9cbi8sICRvdXRwdXQpOwoJIyBIZWFkZXIsIGRlc2NyaXB0aW9uLCByZXN1bHRzCglpZiAoJCNsaW5lcyA8IDIpIHsKCQlleGl0IDE7Cgl9CgoJIyBEcm9wIHRoZSBoZWFkZXIKCXNoaWZ0IChAbGluZXMpOwoJCgkjIEdldCBjb2x1bW4gbmFtZXMKCW15IEBjb2x1bW5fbmFtZXMgPSBzcGxpdCgvXHwvLCBzaGlmdCAoQGxpbmVzKSk7CgoJIyBHZXQgcm93IGRhdGEKCW15ICRpZHggPSAwOwoJZm9yIChteSAkaSA9IDA7ICRpIDw9ICQjbGluZXM7ICRpKyspIHsKCgkJIyBDaGVjayBmb3IgZXJyb3JzCgkJaWYgKCRsaW5lc1skaV0gPX4gbS9eRVJST1IvKSB7CgkJCWV4aXQgMTsKCQl9CgoJCSMgQmxhY2sgbGlzdAoJCWlmICgkbGluZXNbJGldID1+IG0vRmlsZSAxLykgewoJCQluZXh0OwoJCX0KCgkJbXkgQGNvbHVtbiA9IHNwbGl0KC9cfC8sICRsaW5lc1skaV0pOwoJCWZvciAobXkgJGogPSAwOyAkaiA8PSAkI2NvbHVtbl9uYW1lczsgJGorKykgewoJCQlpZiAoISBkZWZpbmVkKCRjb2x1bW5bJGpdKSkgewoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICIiOwoJCQl9CgkJCWVsc2UgewoJCQkJJHJlc3VsdFskaWR4XS0+eyRjb2x1bW5fbmFtZXNbJGpdfSA9ICRjb2x1bW5bJGpdOwoJCQl9CgkJfQoJCQoJCSRpZHgrKzsKCX0KCQoJcmV0dXJuIEByZXN1bHQ7Cn0KCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgU1VCIHByaW50X21vZHVsZWRhdGEgKCRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhLCAKIyAkbW9kdWxlX2Rlc2NyaXB0aW9uLCBAZGF0YSkKIyBQcmludHMgYSBtb2R1bGVkYXRhIFhNTCB0YWcuICRtb2R1bGVfaXRlbSwgJG1vZHVsZV9kYXRhIGFuZAojICRtb2R1bGVfZGVzY3JpcHRpb24gYXJlIHVzZWQgdG8gaW5kZXggdGhlIGl0ZW0sIGRhdGEgYW5kIGRlc2NyaXB0aW9uCiMgWE1MIHRhZ3MgcmVzcGVjdGl2ZWx5LgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwpzdWIgcHJpbnRfbW9kdWxlZGF0YSB7CglteSAkbW9kdWxlX2l0ZW0gPSAkX1swXTsKCW15ICRtb2R1bGVfZGF0YSA9ICRfWzFdOwoJbXkgJG1vZHVsZV9kZXNjcmlwdGlvbiA9ICRfWzJdOwoJbXkgQGRhdGEgPSBAeyRfWzNdfTsKCW15ICRyZXN1bHQ7CgoJZm9yZWFjaCBteSAkZWxlbWVudCAoQGRhdGEpIHsKCQkKCQkkcmVzdWx0ID0gJyc7CgoJCSMgSXRlbQoJCWlmIChkZWZpbmVkKCRlbGVtZW50LT57JG1vZHVsZV9pdGVtfSkpIHsKCQkJJHJlc3VsdCAuPSAkZWxlbWVudC0+eyRtb2R1bGVfaXRlbX0gLiAnOyc7CgkJfQoKCQkjIERhdGEKCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGF0YX0pKSB7CgkJCSRyZXN1bHQgLj0gJyAnIC4gc3ByaW50ZigiJS4xZiIsICRlbGVtZW50LT57JG1vZHVsZV9kYXRhfSAvIDEwNDg1NzYpIC4gIiBNQnl0ZXM7IjsKCQl9CgoJCSMgRGVzY3JpcHRpb24KCQlpZiAoZGVmaW5lZCgkZWxlbWVudC0+eyRtb2R1bGVfZGVzY3JpcHRpb259KSkgewoJCQkkcmVzdWx0IC49ICRlbGVtZW50LT57JG1vZHVsZV9kZXNjcmlwdGlvbn07CgkJfQoKCQlwcmludCAkcmVzdWx0IC4gIlxuIjsJCgl9Cn0KCiMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjCiMgTWFpbgojIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIyMjIwoKbXkgQHJlc3VsdCA9IHJ1bl9xdWVyeSgiU0VMRUNUIERldmljZUxvY2F0b3IsIENhcGFjaXR5LCBTcGVlZCBGUk9NIFdpbjMyX1BoeXNpY2FsTWVtb3J5Iik7CnByaW50X21vZHVsZWRhdGEgKCJEZXZpY2VMb2NhdG9yIiwgIkNhcGFjaXR5IiwgIlNwZWVkIiwgXEByZXN1bHQpOwpleGl0IDA7Cg==' and `name` = 'RAM' and `id_module_inventory`=4; From f2a3ce089440d1991827a178328fae4c921d6888 Mon Sep 17 00:00:00 2001 From: daniel Date: Wed, 18 Jan 2023 09:32:29 +0100 Subject: [PATCH 59/72] translates pandora_enterprise#10169 --- pandora_console/include/languages/es.mo | Bin 793210 -> 795423 bytes pandora_console/include/languages/es.po | 7910 ++++++++++--------- pandora_console/include/languages/fr.mo | Bin 816398 -> 818723 bytes pandora_console/include/languages/fr.po | 7901 +++++++++--------- pandora_console/include/languages/index.pot | 7871 +++++++++--------- 5 files changed, 12020 insertions(+), 11662 deletions(-) diff --git a/pandora_console/include/languages/es.mo b/pandora_console/include/languages/es.mo index 15d6b5a89dba1e27557f20acd7e269d953c984c9..abaad7f2d2bbf1f2d318e8260a4ac06040747210 100644 GIT binary patch delta 197911 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ξA*Z6NQoBJO%Qx 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 I2S4!ne_Q{13IG5A delta 196095 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\n" "Language-Team: Spanish\n" "Language: es\n" @@ -26,7 +26,6 @@ msgstr "Calendarios" #: ../../views/calendar/list.php:57 ../../views/calendar/special_days_edit.php:58 #: ../../views/calendar/edit.php:58 ../../views/calendar/special_days.php:59 #: ../../enterprise/extensions/csv_import_group.php:43 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:56 #: ../../enterprise/godmode/modules/local_components.php:257 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:343 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 @@ -40,7 +39,7 @@ msgstr "Calendarios" #: ../../enterprise/godmode/policies/policy_queue.php:211 #: ../../enterprise/godmode/policies/policies.php:265 #: ../../enterprise/godmode/policies/policy_linking.php:110 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:311 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:313 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 #: ../../enterprise/godmode/policies/policy_collections.php:43 #: ../../enterprise/godmode/policies/policy_agents.php:319 @@ -58,8 +57,9 @@ msgstr "Calendarios" #: ../../enterprise/operation/agentes/policy_view.php:51 #: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:286 +#: ../../godmode/modules/manage_inventory_modules.php:56 #: ../../godmode/modules/manage_network_components.php:307 -#: ../../godmode/groups/group_list.php:396 +#: ../../godmode/groups/group_list.php:401 #: ../../godmode/groups/modu_group_list.php:85 #: ../../godmode/users/profile_list.php:108 ../../godmode/users/user_list.php:485 #: ../../godmode/agentes/modificar_agente.php:117 @@ -69,21 +69,20 @@ msgstr "Calendarios" #: ../../godmode/massive/massive_add_profiles.php:45 #: ../../godmode/alerts/configure_alert_command.php:189 #: ../../godmode/alerts/alert_actions.php:215 -#: ../../godmode/alerts/alert_commands.php:722 +#: ../../godmode/alerts/alert_commands.php:723 #: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/configure_alert_action.php:113 #: ../../godmode/alerts/configure_alert_template.php:412 #: ../../godmode/setup/os.list.php:49 #: ../../godmode/servers/plugin_registration.php:79 ../../godmode/tag/tag.php:188 #: ../../godmode/category/category.php:101 -#: ../../operation/users/user_edit.php:247 +#: ../../operation/users/user_edit.php:254 msgid "metaconsole" msgstr "metaconsola" #: ../../views/calendar/list.php:60 ../../views/calendar/special_days_edit.php:61 #: ../../views/calendar/edit.php:61 ../../views/calendar/special_days.php:62 #: ../../enterprise/extensions/csv_import_group.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:58 #: ../../enterprise/godmode/modules/local_components.php:259 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:345 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 @@ -94,7 +93,7 @@ msgstr "metaconsola" #: ../../enterprise/godmode/policies/policy_queue.php:213 #: ../../enterprise/godmode/policies/policies.php:267 #: ../../enterprise/godmode/policies/policy_linking.php:112 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:313 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:315 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 #: ../../enterprise/godmode/policies/policy_collections.php:45 #: ../../enterprise/godmode/policies/policy_agents.php:321 @@ -108,8 +107,9 @@ msgstr "metaconsola" #: ../../enterprise/operation/agentes/policy_view.php:53 #: ../../extensions/resource_registration.php:1109 #: ../../godmode/modules/manage_nc_groups.php:288 +#: ../../godmode/modules/manage_inventory_modules.php:58 #: ../../godmode/modules/manage_network_components.php:309 -#: ../../godmode/groups/group_list.php:398 +#: ../../godmode/groups/group_list.php:403 #: ../../godmode/groups/modu_group_list.php:87 #: ../../godmode/users/profile_list.php:110 ../../godmode/users/user_list.php:487 #: ../../godmode/agentes/modificar_agente.php:119 @@ -119,13 +119,13 @@ msgstr "metaconsola" #: ../../godmode/massive/massive_add_profiles.php:47 #: ../../godmode/alerts/configure_alert_command.php:191 #: ../../godmode/alerts/alert_actions.php:217 -#: ../../godmode/alerts/alert_commands.php:724 +#: ../../godmode/alerts/alert_commands.php:725 #: ../../godmode/alerts/alert_templates.php:263 #: ../../godmode/alerts/configure_alert_action.php:115 #: ../../godmode/alerts/configure_alert_template.php:414 #: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:190 #: ../../godmode/category/category.php:103 -#: ../../operation/users/user_edit.php:249 +#: ../../operation/users/user_edit.php:256 msgid "any node" msgstr "cualquier nodo" @@ -145,14 +145,14 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:136 #: ../../enterprise/tools/ipam/ipam_excel.php:207 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:660 -#: ../../extensions/api_checker.php:161 ../../godmode/modules/module_list.php:61 -#: ../../godmode/groups/group_list.php:840 +#: ../../extensions/api_checker.php:245 ../../godmode/modules/module_list.php:61 +#: ../../godmode/groups/group_list.php:845 #: ../../godmode/groups/modu_group_list.php:251 #: ../../godmode/agentes/fields_manager.php:121 #: ../../godmode/agentes/agent_manager.php:219 #: ../../godmode/agentes/agent_incidents.php:88 #: ../../godmode/agentes/module_manager_editor_common.php:230 -#: ../../godmode/alerts/alert_commands.php:742 ../../godmode/setup/os.list.php:68 +#: ../../godmode/alerts/alert_commands.php:743 ../../godmode/setup/os.list.php:68 #: ../../operation/incidents/list_integriaims_incidents.php:515 msgid "ID" msgstr "ID" @@ -183,15 +183,12 @@ msgstr "ID" #: ../../enterprise/meta/include/functions_wizard_meta.php:1682 #: ../../enterprise/meta/agentsearch.php:335 #: ../../enterprise/godmode/modules/configure_local_component.php:158 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278 #: ../../enterprise/godmode/modules/local_components.php:624 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:371 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:751 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:136 #: ../../enterprise/godmode/agentes/collection_manager.php:109 #: ../../enterprise/godmode/agentes/collection_manager.php:206 -#: ../../enterprise/godmode/agentes/inventory_manager.php:221 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:579 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 @@ -201,8 +198,8 @@ msgstr "ID" #: ../../enterprise/godmode/policies/policy_inventory_modules.php:302 #: ../../enterprise/godmode/policies/policy_collections.php:169 #: ../../enterprise/godmode/policies/policy_collections.php:263 -#: ../../enterprise/godmode/policies/policy_agents.php:847 -#: ../../enterprise/godmode/policies/policy_agents.php:1367 +#: ../../enterprise/godmode/policies/policy_agents.php:883 +#: ../../enterprise/godmode/policies/policy_agents.php:1403 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 #: ../../enterprise/godmode/services/services.service.php:579 #: ../../enterprise/godmode/setup/setup_skins.php:87 @@ -234,7 +231,7 @@ msgstr "ID" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 #: ../../enterprise/include/functions_services.php:1603 #: ../../enterprise/include/functions_ipam.php:1348 -#: ../../enterprise/include/functions_ipam.php:1987 +#: ../../enterprise/include/functions_ipam.php:1995 #: ../../enterprise/operation/agentes/policy_view.php:163 #: ../../enterprise/operation/agentes/policy_view.php:395 #: ../../enterprise/operation/agentes/tag_view.php:677 @@ -254,26 +251,29 @@ msgstr "ID" #: ../../godmode/modules/manage_nc_groups_form.php:68 #: ../../godmode/modules/manage_network_templates_form.php:168 #: ../../godmode/modules/manage_nc_groups.php:241 +#: ../../godmode/modules/manage_inventory_modules.php:278 #: ../../godmode/modules/manage_network_components_form_common.php:46 +#: ../../godmode/modules/manage_inventory_modules_form.php:103 #: ../../godmode/modules/module_list.php:62 #: ../../godmode/modules/manage_network_templates.php:248 #: ../../godmode/groups/configure_group.php:150 -#: ../../godmode/groups/group_list.php:842 +#: ../../godmode/groups/group_list.php:847 #: ../../godmode/groups/configure_modu_group.php:67 #: ../../godmode/groups/modu_group_list.php:252 #: ../../godmode/users/user_list.php:540 +#: ../../godmode/agentes/inventory_manager.php:221 #: ../../godmode/agentes/planned_downtime.editor.php:820 #: ../../godmode/agentes/planned_downtime.editor.php:1206 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132 #: ../../godmode/agentes/configure_field.php:77 #: ../../godmode/agentes/module_manager_editor_common.php:215 #: ../../godmode/agentes/module_manager_editor_common.php:1226 -#: ../../godmode/agentes/module_manager.php:869 +#: ../../godmode/agentes/module_manager.php:870 #: ../../godmode/netflow/nf_edit.php:159 #: ../../godmode/netflow/nf_edit_form.php:199 #: ../../godmode/alerts/configure_alert_command.php:224 #: ../../godmode/alerts/alert_actions.php:326 -#: ../../godmode/alerts/alert_commands.php:741 +#: ../../godmode/alerts/alert_commands.php:742 #: ../../godmode/alerts/alert_templates.php:384 #: ../../godmode/alerts/configure_alert_action.php:181 #: ../../godmode/alerts/configure_alert_template.php:1052 @@ -300,7 +300,7 @@ msgstr "ID" #: ../../include/functions_reporting_html.php:2551 #: ../../include/functions_reporting_html.php:2910 #: ../../include/functions_reporting_html.php:3613 -#: ../../include/functions_reporting_html.php:6301 +#: ../../include/functions_reporting_html.php:6320 #: ../../include/functions_treeview.php:78 #: ../../include/class/NetworkMap.class.php:3039 #: ../../include/class/NetworkMap.class.php:3080 @@ -314,8 +314,8 @@ msgstr "ID" #: ../../include/class/SatelliteCollection.class.php:128 #: ../../include/functions_filemanager.php:604 #: ../../include/functions_snmp_browser.php:1670 -#: ../../include/functions_events.php:4207 -#: ../../include/functions_events.php:4296 ../../operation/search_users.php:44 +#: ../../include/functions_events.php:4186 +#: ../../include/functions_events.php:4275 ../../operation/search_users.php:44 #: ../../operation/search_helps.php:31 #: ../../operation/agentes/pandora_networkmap.editor.php:291 #: ../../operation/agentes/pandora_networkmap.php:714 @@ -352,12 +352,12 @@ msgstr "Nombre" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:196 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:139 -#: ../../enterprise/godmode/agentes/collections.php:430 +#: ../../enterprise/godmode/agentes/collections.php:444 #: ../../enterprise/godmode/policies/configure_policy.php:105 #: ../../enterprise/godmode/policies/policies.php:312 #: ../../enterprise/godmode/policies/policies.php:412 -#: ../../enterprise/godmode/policies/policy_agents.php:798 -#: ../../enterprise/godmode/policies/policy_agents.php:855 +#: ../../enterprise/godmode/policies/policy_agents.php:834 +#: ../../enterprise/godmode/policies/policy_agents.php:891 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 #: ../../enterprise/godmode/services/services.service.php:602 @@ -373,7 +373,7 @@ msgstr "Nombre" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2051 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:673 #: ../../enterprise/include/functions_tasklist.php:177 #: ../../enterprise/include/ajax/ipam.ajax.php:487 #: ../../enterprise/include/functions_reporting_csv.php:725 @@ -387,8 +387,8 @@ msgstr "Nombre" #: ../../enterprise/include/class/DB2.app.php:469 #: ../../enterprise/include/class/Aws.S3.php:434 #: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Aws.cloud.php:579 -#: ../../enterprise/include/class/Aws.cloud.php:1234 +#: ../../enterprise/include/class/Aws.cloud.php:578 +#: ../../enterprise/include/class/Aws.cloud.php:1233 #: ../../enterprise/include/class/MySQL.app.php:474 #: ../../enterprise/include/class/Google.cloud.php:785 #: ../../enterprise/include/class/Oracle.app.php:476 @@ -403,7 +403,6 @@ msgstr "Nombre" #: ../../enterprise/operation/agentes/ver_agente.php:52 #: ../../enterprise/operation/agentes/ver_agente.php:73 #: ../../enterprise/operation/log/log_viewer.php:534 -#: ../../enterprise/operation/inventory/inventory.php:336 #: ../../enterprise/operation/services/services.service.php:121 #: ../../enterprise/operation/services/massive/services.create.php:682 #: ../../enterprise/operation/services/services.list.php:260 @@ -418,7 +417,7 @@ msgstr "Nombre" #: ../../godmode/modules/manage_network_components.php:621 #: ../../godmode/modules/manage_network_components.php:755 #: ../../godmode/users/user_list.php:450 -#: ../../godmode/agentes/configurar_agente.php:506 +#: ../../godmode/agentes/configurar_agente.php:519 #: ../../godmode/agentes/modificar_agente.php:289 #: ../../godmode/agentes/modificar_agente.php:651 #: ../../godmode/agentes/planned_downtime.list.php:658 @@ -446,7 +445,7 @@ msgstr "Nombre" #: ../../godmode/alerts/alert_actions.php:260 #: ../../godmode/alerts/alert_actions.php:328 #: ../../godmode/alerts/alert_list.list.php:157 -#: ../../godmode/alerts/alert_commands.php:743 +#: ../../godmode/alerts/alert_commands.php:744 #: ../../godmode/alerts/alert_templates.php:385 #: ../../godmode/alerts/configure_alert_action.php:212 #: ../../godmode/alerts/configure_alert_template.php:1074 @@ -476,7 +475,7 @@ msgstr "Nombre" #: ../../godmode/reporting/graph_builder.main.php:143 #: ../../godmode/events/event_filter.php:137 #: ../../godmode/events/event_responses.editor.php:105 -#: ../../godmode/events/event_edit_filter.php:316 +#: ../../godmode/events/event_edit_filter.php:326 #: ../../godmode/events/event_responses.list.php:52 #: ../../godmode/events/custom_events.php:100 #: ../../godmode/wizards/HostDevices.class.php:934 @@ -499,16 +498,16 @@ msgstr "Nombre" #: ../../include/functions_reporting_html.php:2266 #: ../../include/functions_reporting_html.php:3564 #: ../../include/functions_reporting_html.php:3617 -#: ../../include/functions_reporting_html.php:6389 +#: ../../include/functions_reporting_html.php:6408 #: ../../include/functions_cron.php:505 ../../include/ajax/heatmap.ajax.php:111 #: ../../include/ajax/heatmap.ajax.php:350 #: ../../include/ajax/custom_fields.php:630 #: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:5163 ../../include/functions_gis.php:228 +#: ../../include/functions_graph.php:4951 ../../include/functions_gis.php:228 #: ../../include/functions_profile.php:214 -#: ../../include/functions_visual_map.php:4264 +#: ../../include/functions_visual_map.php:4215 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 -#: ../../include/rest-api/models/VisualConsole/Item.php:2139 +#: ../../include/rest-api/models/VisualConsole/Item.php:2140 #: ../../include/functions_html.php:1531 #: ../../include/functions_massive_operations.php:126 #: ../../include/class/NetworkMap.class.php:2974 @@ -526,9 +525,9 @@ msgstr "Nombre" #: ../../include/lib/ClusterViewer/ClusterWizard.php:823 #: ../../include/functions_snmp_browser.php:1673 #: ../../include/functions_events.php:203 ../../include/functions_events.php:256 -#: ../../include/functions_events.php:4859 ../../operation/heatmap.php:119 +#: ../../include/functions_events.php:4838 ../../operation/heatmap.php:119 #: ../../operation/heatmap.php:121 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:839 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:913 #: ../../operation/visual_console/view.php:353 #: ../../operation/agentes/estado_agente.php:254 #: ../../operation/agentes/estado_agente.php:754 @@ -540,7 +539,7 @@ msgstr "Nombre" #: ../../operation/agentes/group_view.php:222 #: ../../operation/agentes/pandora_networkmap.view.php:140 #: ../../operation/agentes/pandora_networkmap.view.php:174 -#: ../../operation/agentes/ver_agente.php:1030 +#: ../../operation/agentes/ver_agente.php:1036 #: ../../operation/agentes/estado_generalagente.php:403 #: ../../operation/agentes/alerts_status.functions.php:91 #: ../../operation/netflow/nf_live_view.php:380 @@ -549,6 +548,7 @@ msgstr "Nombre" #: ../../operation/incidents/configure_integriaims_incident.php:266 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 #: ../../operation/incidents/list_integriaims_incidents.php:331 +#: ../../operation/inventory/inventory.php:339 #: ../../operation/events/events.php:1658 ../../operation/search_maps.php:29 #: ../../general/ui/agents_list.php:76 msgid "Group" @@ -557,7 +557,7 @@ msgstr "Grupo" #: ../../views/calendar/list.php:95 #: ../../views/calendar/special_days_edit.php:138 #: ../../views/calendar/edit.php:109 ../../views/cluster/list.php:59 -#: ../../views/cluster/view.php:284 +#: ../../views/cluster/view.php:285 #: ../../enterprise/views/ncm/devices/list.php:115 #: ../../enterprise/views/ipam/sites/list.php:47 #: ../../enterprise/views/ipam/sites/edit.php:51 @@ -576,21 +576,18 @@ msgstr "Grupo" #: ../../enterprise/meta/agentsearch.php:336 #: ../../enterprise/godmode/modules/configure_local_component.php:489 #: ../../enterprise/godmode/modules/configure_local_component.php:648 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:279 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:105 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:374 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:137 #: ../../enterprise/godmode/agentes/collection_manager.php:111 #: ../../enterprise/godmode/agentes/collection_manager.php:208 -#: ../../enterprise/godmode/agentes/inventory_manager.php:222 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 -#: ../../enterprise/godmode/agentes/collections.php:431 +#: ../../enterprise/godmode/agentes/collections.php:445 #: ../../enterprise/godmode/policies/configure_policy.php:121 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 #: ../../enterprise/godmode/policies/policy_collections.php:171 #: ../../enterprise/godmode/policies/policy_collections.php:265 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:94 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:97 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 @@ -610,7 +607,7 @@ msgstr "Grupo" #: ../../enterprise/include/functions_cron.php:282 #: ../../enterprise/include/ajax/ipam.ajax.php:371 #: ../../enterprise/include/ajax/ipam.ajax.php:615 -#: ../../enterprise/include/functions_reporting_pdf.php:1842 +#: ../../enterprise/include/functions_reporting_pdf.php:1843 #: ../../enterprise/include/functions_reporting_csv.php:489 #: ../../enterprise/include/functions_reporting_csv.php:492 #: ../../enterprise/include/functions_reporting_csv.php:712 @@ -697,7 +694,7 @@ msgstr "Grupo" #: ../../enterprise/include/class/ManageBackups.class.php:162 #: ../../enterprise/include/functions_services.php:1604 #: ../../enterprise/include/functions_ipam.php:1374 -#: ../../enterprise/include/functions_ipam.php:1988 +#: ../../enterprise/include/functions_ipam.php:1996 #: ../../enterprise/operation/agentes/policy_view.php:68 #: ../../enterprise/operation/agentes/tag_view.php:600 #: ../../enterprise/operation/agentes/ver_agente.php:60 @@ -720,21 +717,24 @@ msgstr "Grupo" #: ../../extensions/files_repo/files_repo_list.php:56 #: ../../godmode/modules/manage_network_templates_form.php:172 #: ../../godmode/modules/manage_network_templates_form.php:234 +#: ../../godmode/modules/manage_inventory_modules.php:279 #: ../../godmode/modules/manage_network_components_form_common.php:346 #: ../../godmode/modules/manage_network_components.php:754 #: ../../godmode/modules/manage_network_components_form_wizard.php:457 +#: ../../godmode/modules/manage_inventory_modules_form.php:105 #: ../../godmode/modules/module_list.php:63 #: ../../godmode/modules/manage_network_templates.php:249 #: ../../godmode/groups/configure_group.php:242 -#: ../../godmode/groups/group_list.php:850 ../../godmode/users/user_list.php:545 -#: ../../godmode/agentes/agent_template.php:237 +#: ../../godmode/groups/group_list.php:855 ../../godmode/users/user_list.php:545 +#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/inventory_manager.php:222 #: ../../godmode/agentes/modificar_agente.php:652 #: ../../godmode/agentes/planned_downtime.list.php:657 #: ../../godmode/agentes/planned_downtime.editor.php:846 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 #: ../../godmode/agentes/agent_manager.php:479 #: ../../godmode/agentes/module_manager_editor_common.php:1095 -#: ../../godmode/agentes/module_manager.php:904 +#: ../../godmode/agentes/module_manager.php:905 #: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:766 #: ../../godmode/snmpconsole/snmp_alert.php:1269 @@ -744,7 +744,7 @@ msgstr "Grupo" #: ../../godmode/massive/massive_edit_agents.php:774 #: ../../godmode/massive/massive_edit_modules.php:743 #: ../../godmode/alerts/configure_alert_command.php:283 -#: ../../godmode/alerts/alert_commands.php:744 +#: ../../godmode/alerts/alert_commands.php:745 #: ../../godmode/alerts/alert_templates.php:46 #: ../../godmode/alerts/configure_alert_template.php:1106 #: ../../godmode/setup/os.builder.php:37 ../../godmode/setup/os.list.php:70 @@ -763,18 +763,18 @@ msgstr "Grupo" #: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:478 #: ../../godmode/tag/tag.php:228 ../../godmode/tag/tag.php:278 #: ../../godmode/tag/edit_tag.php:219 ../../mobile/operation/tactical.php:352 -#: ../../include/functions_reporting_html.php:155 +#: ../../include/functions_reporting_html.php:156 #: ../../include/functions_reporting_html.php:1573 #: ../../include/functions_reporting_html.php:1716 #: ../../include/functions_reporting_html.php:3567 #: ../../include/functions_reporting_html.php:3618 -#: ../../include/functions_reporting_html.php:5385 -#: ../../include/functions_reporting_html.php:6302 +#: ../../include/functions_reporting_html.php:5404 +#: ../../include/functions_reporting_html.php:6321 #: ../../include/ajax/events_extended.php:91 #: ../../include/ajax/heatmap.ajax.php:238 #: ../../include/ajax/heatmap.ajax.php:277 #: ../../include/ajax/heatmap.ajax.php:337 ../../include/ajax/module.php:992 -#: ../../include/ajax/events.php:2521 ../../include/functions_treeview.php:127 +#: ../../include/ajax/events.php:2532 ../../include/functions_treeview.php:127 #: ../../include/functions_treeview.php:652 #: ../../include/class/ConfigPEN.class.php:448 #: ../../include/class/ConfigPEN.class.php:599 @@ -807,7 +807,7 @@ msgstr "Grupo" #: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 #: ../../operation/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 -#: ../../operation/reporting/graph_viewer.php:525 +#: ../../operation/reporting/graph_viewer.php:522 #: ../../operation/search_policies.php:36 msgid "Description" msgstr "Descripción" @@ -830,13 +830,13 @@ msgstr "Descripción" #: ../../enterprise/include/class/LogSource.class.php:630 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2343 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2952 -#: ../../godmode/menu.php:555 +#: ../../godmode/menu.php:558 #: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../include/ajax/events.php:2212 ../../include/class/ConfigPEN.class.php:601 +#: ../../include/ajax/events.php:2223 ../../include/class/ConfigPEN.class.php:601 #: ../../include/class/CredentialStore.class.php:845 #: ../../include/class/ExternalTools.class.php:383 #: ../../include/functions_events.php:310 -#: ../../operation/agentes/pandora_networkmap.view.php:2349 +#: ../../operation/agentes/pandora_networkmap.view.php:2353 msgid "Options" msgstr "Opciones" @@ -856,10 +856,10 @@ msgstr "Opciones" #: ../../enterprise/include/class/LogSource.class.php:656 #: ../../enterprise/include/lib/Metaconsole/Node.php:571 #: ../../enterprise/include/functions_events.php:50 -#: ../../enterprise/include/functions_ipam.php:1663 +#: ../../enterprise/include/functions_ipam.php:1671 #: ../../godmode/update_manager/update_manager.history.php:67 #: ../../godmode/snmpconsole/snmp_alert.php:1161 -#: ../../godmode/events/event_edit_filter.php:378 +#: ../../godmode/events/event_edit_filter.php:388 #: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 #: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 #: ../../include/ajax/module.php:299 ../../include/class/ConfigPEN.class.php:627 @@ -904,9 +904,7 @@ msgstr "Búsqueda libre" #: ../../enterprise/meta/include/functions_autoprovision.php:588 #: ../../enterprise/meta/include/functions_autoprovision.php:789 #: ../../enterprise/godmode/modules/configure_local_component.php:692 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:349 #: ../../enterprise/godmode/modules/local_components.php:719 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:171 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:791 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 #: ../../enterprise/godmode/agentes/collections.agents.php:38 @@ -917,12 +915,12 @@ msgstr "Búsqueda libre" #: ../../enterprise/godmode/agentes/collections.data.php:240 #: ../../enterprise/godmode/agentes/collections.data.php:296 #: ../../enterprise/godmode/agentes/collections.editor.php:169 -#: ../../enterprise/godmode/agentes/collections.php:515 +#: ../../enterprise/godmode/agentes/collections.php:531 #: ../../enterprise/godmode/policies/configure_policy.php:144 #: ../../enterprise/godmode/policies/policy_modules.php:433 #: ../../enterprise/godmode/policies/policies.php:649 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:41 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:105 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:108 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 #: ../../enterprise/godmode/services/services.service.php:973 @@ -941,19 +939,21 @@ msgstr "Búsqueda libre" #: ../../godmode/modules/manage_nc_groups_form.php:93 #: ../../godmode/modules/manage_network_templates_form.php:180 #: ../../godmode/modules/manage_nc_groups.php:318 +#: ../../godmode/modules/manage_inventory_modules.php:349 #: ../../godmode/modules/manage_network_components_form.php:379 #: ../../godmode/modules/manage_network_components.php:937 +#: ../../godmode/modules/manage_inventory_modules_form.php:171 #: ../../godmode/modules/manage_network_templates.php:311 #: ../../godmode/groups/configure_group.php:279 #: ../../godmode/groups/configure_modu_group.php:86 #: ../../godmode/users/profile_list.php:463 -#: ../../godmode/users/configure_user.php:1660 +#: ../../godmode/users/configure_user.php:1723 #: ../../godmode/agentes/module_manager_editor.php:790 #: ../../godmode/agentes/planned_downtime.list.php:628 #: ../../godmode/agentes/planned_downtime.list.php:920 #: ../../godmode/agentes/agent_manager.php:1010 #: ../../godmode/agentes/configure_field.php:155 -#: ../../godmode/agentes/module_manager.php:220 +#: ../../godmode/agentes/module_manager.php:219 #: ../../godmode/netflow/nf_edit_form.php:272 #: ../../godmode/snmpconsole/snmp_alert.php:1142 #: ../../godmode/snmpconsole/snmp_alert.php:1514 @@ -962,10 +962,10 @@ msgstr "Búsqueda libre" #: ../../godmode/alerts/configure_alert_command.php:387 #: ../../godmode/alerts/alert_actions.php:471 #: ../../godmode/alerts/alert_list.list.php:975 -#: ../../godmode/alerts/alert_commands.php:831 +#: ../../godmode/alerts/alert_commands.php:832 #: ../../godmode/alerts/alert_templates.php:482 #: ../../godmode/alerts/configure_alert_action.php:402 -#: ../../godmode/alerts/alert_list.php:503 ../../godmode/setup/news.php:231 +#: ../../godmode/alerts/alert_list.php:521 ../../godmode/setup/news.php:231 #: ../../godmode/setup/gis.php:98 ../../godmode/setup/os.php:95 #: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:127 #: ../../godmode/reporting/create_container.php:333 @@ -973,7 +973,7 @@ msgstr "Búsqueda libre" #: ../../godmode/reporting/reporting_builder.item_editor.php:2285 #: ../../godmode/reporting/graph_builder.main.php:294 #: ../../godmode/events/event_responses.editor.php:219 -#: ../../godmode/events/event_edit_filter.php:722 +#: ../../godmode/events/event_edit_filter.php:781 #: ../../godmode/servers/plugin.php:575 ../../godmode/tag/edit_tag.php:281 #: ../../godmode/category/edit_category.php:205 #: ../../include/functions_visual_map_editor.php:884 @@ -1007,14 +1007,14 @@ msgstr "Crear" #: ../../enterprise/operation/agentes/tag_view.php:608 #: ../../enterprise/operation/services/massive/services.create.php:901 #: ../../godmode/groups/configure_group.php:230 -#: ../../godmode/groups/group_list.php:846 +#: ../../godmode/groups/group_list.php:851 #: ../../godmode/agentes/configurar_agente.php:433 #: ../../godmode/agentes/modificar_agente.php:820 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:259 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:262 #: ../../godmode/massive/massive_copy_modules.php:216 #: ../../godmode/alerts/configure_alert_command.php:60 #: ../../godmode/alerts/alert_actions.php:74 -#: ../../godmode/alerts/alert_commands.php:580 +#: ../../godmode/alerts/alert_commands.php:581 #: ../../godmode/alerts/alert_templates.php:131 #: ../../godmode/alerts/alert_templates.php:183 #: ../../godmode/alerts/alert_templates.php:206 @@ -1024,13 +1024,13 @@ msgstr "Crear" #: ../../godmode/alerts/configure_alert_template.php:99 #: ../../godmode/alerts/configure_alert_template.php:123 #: ../../godmode/alerts/configure_alert_template.php:155 -#: ../../godmode/alerts/alert_list.php:501 -#: ../../godmode/alerts/alert_list.php:503 +#: ../../godmode/alerts/alert_list.php:519 +#: ../../godmode/alerts/alert_list.php:521 #: ../../mobile/include/functions_web.php:26 ../../mobile/operation/agents.php:98 #: ../../mobile/operation/agents.php:407 ../../mobile/operation/home.php:74 #: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194 #: ../../include/functions_reporting_html.php:2504 -#: ../../include/functions_reporting_html.php:5565 +#: ../../include/functions_reporting_html.php:5584 #: ../../include/functions_treeview.php:405 #: ../../include/functions_reports.php:843 #: ../../include/functions_reports.php:847 @@ -1039,7 +1039,7 @@ msgstr "Crear" #: ../../include/class/AgentsAlerts.class.php:542 #: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 #: ../../operation/agentes/estado_agente.php:766 -#: ../../operation/agentes/ver_agente.php:1439 +#: ../../operation/agentes/ver_agente.php:1445 msgid "Alerts" msgstr "Alertas" @@ -1050,7 +1050,6 @@ msgstr "Configurar día especial" #: ../../views/calendar/special_days_edit.php:80 #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_inventory.php:882 #: ../../enterprise/include/functions_reporting_pdf.php:718 #: ../../enterprise/include/functions_reporting_csv.php:826 #: ../../enterprise/include/functions_reporting_csv.php:882 @@ -1061,8 +1060,6 @@ msgstr "Configurar día especial" #: ../../enterprise/include/functions_reporting.php:2182 #: ../../enterprise/include/functions_reporting.php:2217 #: ../../enterprise/include/functions_reporting.php:2235 -#: ../../enterprise/operation/agentes/agent_inventory.php:127 -#: ../../enterprise/operation/inventory/inventory.php:432 #: ../../extensions/insert_data.php:196 #: ../../godmode/reporting/reporting_builder.item_editor.php:2172 #: ../../mobile/operation/tactical.php:350 @@ -1075,13 +1072,16 @@ msgstr "Configurar día especial" #: ../../include/functions_reporting_html.php:2789 #: ../../include/functions_reporting_html.php:2838 #: ../../include/functions_reporting_html.php:2911 -#: ../../include/functions_reporting_html.php:5907 -#: ../../include/functions.php:3073 ../../include/class/AuditLog.class.php:109 -#: ../../include/functions_reporting.php:4361 -#: ../../include/functions_reporting.php:4402 +#: ../../include/functions_reporting_html.php:5926 +#: ../../include/functions.php:3099 ../../include/functions_inventory.php:882 +#: ../../include/class/AuditLog.class.php:109 +#: ../../include/functions_reporting.php:4624 +#: ../../include/functions_reporting.php:4665 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:623 +#: ../../operation/agentes/agent_inventory.php:127 #: ../../operation/incidents/list_integriaims_incidents.php:371 -#: ../../operation/reporting/graph_viewer.php:348 ../../general/logon_ok.php:251 +#: ../../operation/inventory/inventory.php:435 +#: ../../operation/reporting/graph_viewer.php:320 ../../general/logon_ok.php:251 msgid "Date" msgstr "Fecha" @@ -1231,7 +1231,7 @@ msgstr "Mismo día de la semana" #: ../../enterprise/meta/advanced/collections.editor.php:223 #: ../../enterprise/meta/advanced/cron_main.php:469 #: ../../enterprise/meta/advanced/metasetup.setup.php:401 -#: ../../enterprise/meta/advanced/metasetup.performance.php:182 +#: ../../enterprise/meta/advanced/metasetup.performance.php:159 #: ../../enterprise/meta/event/custom_events.php:213 #: ../../enterprise/meta/include/functions_autoprovision.php:590 #: ../../enterprise/meta/include/functions_autoprovision.php:791 @@ -1239,16 +1239,12 @@ msgstr "Mismo día de la semana" #: ../../enterprise/extensions/vmware/vmware_view.php:1257 #: ../../enterprise/extensions/vmware/vmware_view.php:1762 #: ../../enterprise/godmode/modules/configure_local_component.php:689 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:319 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:169 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:475 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:793 #: ../../enterprise/godmode/agentes/collection_manager.php:153 #: ../../enterprise/godmode/agentes/collection_manager.php:154 #: ../../enterprise/godmode/agentes/collection_manager.php:268 #: ../../enterprise/godmode/agentes/collection_manager.php:269 -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/agentes/inventory_manager.php:254 #: ../../enterprise/godmode/agentes/collections.data.php:107 #: ../../enterprise/godmode/agentes/collections.data.php:264 #: ../../enterprise/godmode/agentes/collections.data.php:342 @@ -1265,12 +1261,12 @@ msgstr "Mismo día de la semana" #: ../../enterprise/godmode/policies/policy_plugins.php:228 #: ../../enterprise/godmode/policies/configure_policy.php:141 #: ../../enterprise/godmode/policies/policy_modules.php:429 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:373 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:375 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:261 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:338 #: ../../enterprise/godmode/policies/policy_collections.php:222 #: ../../enterprise/godmode/policies/policy_collections.php:294 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:102 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:105 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 @@ -1278,8 +1274,8 @@ msgstr "Mismo día de la semana" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 #: ../../enterprise/godmode/services/services.service.php:980 #: ../../enterprise/godmode/setup/setup_history.php:669 -#: ../../enterprise/godmode/setup/setup.php:354 -#: ../../enterprise/godmode/setup/setup.php:555 +#: ../../enterprise/godmode/setup/setup.php:270 +#: ../../enterprise/godmode/setup/setup.php:478 #: ../../enterprise/godmode/setup/setup_module_library.php:62 #: ../../enterprise/godmode/setup/setup_metaconsole.php:245 #: ../../enterprise/godmode/setup/setup_log_collector.php:74 @@ -1295,8 +1291,8 @@ msgstr "Mismo día de la semana" #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:177 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1359 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1425 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1385 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1451 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 #: ../../enterprise/godmode/servers/manage_export_form.php:136 #: ../../enterprise/include/ajax/log_viewer.ajax.php:99 @@ -1321,15 +1317,19 @@ msgstr "Mismo día de la semana" #: ../../extensions/files_repo/files_repo_form.php:99 #: ../../godmode/modules/manage_nc_groups_form.php:90 #: ../../godmode/modules/manage_network_templates_form.php:178 +#: ../../godmode/modules/manage_inventory_modules.php:319 #: ../../godmode/modules/manage_network_components_form.php:375 +#: ../../godmode/modules/manage_inventory_modules_form.php:169 #: ../../godmode/groups/configure_group.php:276 #: ../../godmode/groups/configure_modu_group.php:83 #: ../../godmode/update_manager/update_manager.setup.php:382 -#: ../../godmode/users/configure_profile.php:408 -#: ../../godmode/users/configure_user.php:1667 -#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/users/configure_profile.php:409 +#: ../../godmode/users/configure_user.php:1730 +#: ../../godmode/agentes/agent_template.php:261 #: ../../godmode/agentes/status_monitor_custom_fields.php:206 #: ../../godmode/agentes/module_manager_editor.php:772 +#: ../../godmode/agentes/inventory_manager.php:183 +#: ../../godmode/agentes/inventory_manager.php:254 #: ../../godmode/agentes/agent_conf_gis.php:135 #: ../../godmode/agentes/planned_downtime.list.php:808 #: ../../godmode/agentes/planned_downtime.list.php:853 @@ -1355,15 +1355,15 @@ msgstr "Mismo día de la semana" #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/setup/setup_netflow.php:81 #: ../../godmode/setup/setup_visuals.php:1604 -#: ../../godmode/setup/setup_general.php:638 -#: ../../godmode/setup/performance.php:758 +#: ../../godmode/setup/setup_general.php:719 +#: ../../godmode/setup/performance.php:741 #: ../../godmode/reporting/visual_console_builder.data.php:232 #: ../../godmode/reporting/create_container.php:330 #: ../../godmode/reporting/visual_console_builder.elements.php:761 #: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:294 #: ../../godmode/events/event_responses.editor.php:227 -#: ../../godmode/events/event_edit_filter.php:719 +#: ../../godmode/events/event_edit_filter.php:778 #: ../../godmode/events/custom_events.php:188 #: ../../godmode/servers/modificar_server.php:100 #: ../../godmode/servers/plugin.php:198 ../../godmode/servers/plugin.php:577 @@ -1377,9 +1377,9 @@ msgstr "Mismo día de la semana" #: ../../include/class/CredentialStore.class.php:1673 #: ../../include/class/ModuleTemplates.class.php:1013 #: ../../include/class/ExternalTools.class.php:392 -#: ../../include/functions_events.php:3392 -#: ../../include/functions_events.php:3471 -#: ../../operation/users/user_edit.php:802 +#: ../../include/functions_events.php:3371 +#: ../../include/functions_events.php:3450 +#: ../../operation/users/user_edit.php:876 #: ../../operation/agentes/datos_agente.php:218 #: ../../operation/network/network_report.php:132 #: ../../operation/incidents/configure_integriaims_incident.php:378 @@ -1397,6 +1397,7 @@ msgstr "Actualizar" #: ../../enterprise/godmode/services/services.service.php:1038 #: ../../enterprise/godmode/services/services.elements.php:887 #: ../../enterprise/godmode/services/services.elements.php:898 +#: ../../enterprise/godmode/setup/setup.php:543 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 #: ../../enterprise/include/functions_HA_cluster.php:492 @@ -1442,9 +1443,9 @@ msgstr "Actualizar" #: ../../include/class/AgentWizard.class.php:6216 #: ../../operation/agentes/pandora_networkmap.editor.php:634 #: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:551 -#: ../../operation/snmpconsole/snmp_browser.php:631 -#: ../../operation/snmpconsole/snmp_browser.php:646 ../../general/header.php:827 +#: ../../operation/snmpconsole/snmp_browser.php:549 +#: ../../operation/snmpconsole/snmp_browser.php:629 +#: ../../operation/snmpconsole/snmp_browser.php:644 ../../general/header.php:827 msgid "Cancel" msgstr "Cancelar" @@ -1504,15 +1505,15 @@ msgstr "Mostrar rango " #: ../../enterprise/meta/monitoring/wizard/wizard.php:141 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:487 #: ../../enterprise/godmode/policies/policy_alerts.php:406 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:445 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:136 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:105 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:135 #: ../../enterprise/operation/agentes/policy_view.php:332 -#: ../../godmode/users/configure_user.php:1086 -#: ../../godmode/users/configure_user.php:1289 +#: ../../godmode/users/configure_user.php:1145 +#: ../../godmode/users/configure_user.php:1348 #: ../../godmode/agentes/module_manager_editor_common.php:650 #: ../../godmode/massive/massive_edit_users.php:243 #: ../../godmode/massive/massive_edit_users.php:274 @@ -1525,14 +1526,14 @@ msgstr "Mostrar rango " #: ../../godmode/setup/setup_visuals.php:439 #: ../../godmode/setup/setup_visuals.php:458 #: ../../godmode/setup/setup_visuals.php:1204 -#: ../../godmode/events/event_edit_filter.php:425 +#: ../../godmode/events/event_edit_filter.php:435 #: ../../include/functions_ui.php:1240 #: ../../include/class/AgentsAlerts.class.php:928 #: ../../include/class/SnmpConsole.class.php:362 -#: ../../operation/users/user_edit.php:320 -#: ../../operation/users/user_edit.php:323 -#: ../../operation/users/user_edit.php:334 -#: ../../operation/users/user_edit.php:359 +#: ../../operation/users/user_edit.php:394 +#: ../../operation/users/user_edit.php:397 +#: ../../operation/users/user_edit.php:408 +#: ../../operation/users/user_edit.php:433 #: ../../operation/gis_maps/gis_map.php:106 msgid "Default" msgstr "Por defecto" @@ -1540,63 +1541,63 @@ msgstr "Por defecto" #: ../../views/calendar/special_days.php:224 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 #: ../../godmode/agentes/planned_downtime.editor.php:944 -#: ../../include/functions.php:1121 +#: ../../include/functions.php:1147 #: ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14437 +#: ../../include/functions_reporting.php:14723 msgid "Sun" msgstr "Dom" #: ../../views/calendar/special_days.php:225 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:938 -#: ../../include/functions.php:1097 +#: ../../include/functions.php:1123 #: ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14407 +#: ../../include/functions_reporting.php:14693 msgid "Mon" msgstr "Lun" #: ../../views/calendar/special_days.php:226 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:426 #: ../../godmode/agentes/planned_downtime.editor.php:939 -#: ../../include/functions.php:1101 +#: ../../include/functions.php:1127 #: ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14412 +#: ../../include/functions_reporting.php:14698 msgid "Tue" msgstr "Mar" #: ../../views/calendar/special_days.php:227 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:427 #: ../../godmode/agentes/planned_downtime.editor.php:940 -#: ../../include/functions.php:1105 +#: ../../include/functions.php:1131 #: ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14417 +#: ../../include/functions_reporting.php:14703 msgid "Wed" msgstr "Mié" #: ../../views/calendar/special_days.php:228 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:428 #: ../../godmode/agentes/planned_downtime.editor.php:941 -#: ../../include/functions.php:1109 +#: ../../include/functions.php:1135 #: ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14422 +#: ../../include/functions_reporting.php:14708 msgid "Thu" msgstr "Jue" #: ../../views/calendar/special_days.php:229 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 #: ../../godmode/agentes/planned_downtime.editor.php:942 -#: ../../include/functions.php:1113 +#: ../../include/functions.php:1139 #: ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14427 +#: ../../include/functions_reporting.php:14713 msgid "Fri" msgstr "Vie" #: ../../views/calendar/special_days.php:230 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 #: ../../godmode/agentes/planned_downtime.editor.php:943 -#: ../../include/functions.php:1117 +#: ../../include/functions.php:1143 #: ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14432 +#: ../../include/functions_reporting.php:14718 msgid "Sat" msgstr "Sáb" @@ -1727,8 +1728,8 @@ msgstr "Mostrar plantillas" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:527 #: ../../extensions/files_repo/files_repo_list.php:138 -#: ../../godmode/groups/group_list.php:917 -#: ../../godmode/groups/group_list.php:918 +#: ../../godmode/groups/group_list.php:922 +#: ../../godmode/groups/group_list.php:923 #: ../../godmode/users/profile_list.php:434 ../../godmode/users/user_list.php:856 #: ../../godmode/agentes/modificar_agente.php:801 #: ../../godmode/agentes/modificar_agente.php:806 @@ -1745,7 +1746,7 @@ msgstr "Mostrar plantillas" #: ../../include/ajax/module.php:1123 #: ../../include/class/NetworkMap.class.php:3146 #: ../../include/class/CalendarManager.class.php:703 -#: ../../include/lib/ClusterViewer/ClusterManager.php:621 +#: ../../include/lib/ClusterViewer/ClusterManager.php:618 #: ../../operation/visual_console/view.php:447 #: ../../operation/agentes/estado_agente.php:874 #: ../../operation/agentes/estado_agente.php:876 @@ -1764,9 +1765,7 @@ msgstr "Editar" #: ../../enterprise/meta/advanced/policymanager.queue.php:349 #: ../../enterprise/meta/monitoring/custom_fields_view.php:1155 #: ../../enterprise/meta/monitoring/wizard/wizard.php:143 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:322 #: ../../enterprise/godmode/modules/local_components.php:697 -#: ../../enterprise/godmode/agentes/inventory_manager.php:249 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 #: ../../enterprise/godmode/policies/policy_alerts.php:518 @@ -1779,15 +1778,15 @@ msgstr "Editar" #: ../../enterprise/godmode/policies/policies.php:564 #: ../../enterprise/godmode/policies/policies.php:585 #: ../../enterprise/godmode/policies/policies.php:620 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:522 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:524 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:328 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:333 #: ../../enterprise/godmode/policies/policy_agents.php:401 -#: ../../enterprise/godmode/policies/policy_agents.php:724 -#: ../../enterprise/godmode/policies/policy_agents.php:1040 -#: ../../enterprise/godmode/policies/policy_agents.php:1155 -#: ../../enterprise/godmode/policies/policy_agents.php:1304 -#: ../../enterprise/godmode/policies/policy_agents.php:1519 +#: ../../enterprise/godmode/policies/policy_agents.php:760 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/godmode/policies/policy_agents.php:1191 +#: ../../enterprise/godmode/policies/policy_agents.php:1340 +#: ../../enterprise/godmode/policies/policy_agents.php:1555 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 #: ../../enterprise/godmode/setup/setup_skins.php:147 @@ -1800,7 +1799,7 @@ msgstr "Editar" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 #: ../../enterprise/godmode/reporting/mysql_builder.php:105 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1351 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 #: ../../enterprise/include/functions_tasklist.php:638 #: ../../enterprise/include/functions_tasklist.php:673 #: ../../enterprise/include/ajax/ipam.ajax.php:755 @@ -1827,30 +1826,32 @@ msgstr "Editar" #: ../../update_manager_client/views/online.php:164 #: ../../extensions/files_repo/files_repo_list.php:146 #: ../../godmode/modules/manage_nc_groups.php:275 +#: ../../godmode/modules/manage_inventory_modules.php:322 #: ../../godmode/modules/manage_network_components.php:867 #: ../../godmode/modules/manage_network_templates.php:274 #: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/groups/group_list.php:926 +#: ../../godmode/groups/group_list.php:931 #: ../../godmode/groups/modu_group_list.php:273 #: ../../godmode/groups/modu_group_list.php:276 #: ../../godmode/users/profile_list.php:439 -#: ../../godmode/users/configure_user.php:1875 -#: ../../godmode/users/configure_user.php:2172 -#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/users/configure_user.php:1940 +#: ../../godmode/users/configure_user.php:2237 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/inventory_manager.php:249 #: ../../godmode/agentes/modificar_agente.php:924 #: ../../godmode/agentes/planned_downtime.editor.php:1301 #: ../../godmode/agentes/fields_manager.php:158 #: ../../godmode/agentes/agent_manager.php:237 #: ../../godmode/agentes/module_manager_editor_common.php:233 -#: ../../godmode/agentes/module_manager.php:1221 -#: ../../godmode/agentes/module_manager.php:1235 -#: ../../godmode/agentes/module_manager.php:1260 -#: ../../godmode/agentes/module_manager.php:1283 -#: ../../godmode/agentes/module_manager.php:1308 +#: ../../godmode/agentes/module_manager.php:1226 +#: ../../godmode/agentes/module_manager.php:1240 +#: ../../godmode/agentes/module_manager.php:1265 +#: ../../godmode/agentes/module_manager.php:1288 +#: ../../godmode/agentes/module_manager.php:1313 #: ../../godmode/netflow/nf_item_list.php:262 #: ../../godmode/netflow/nf_edit.php:195 #: ../../godmode/snmpconsole/snmp_alert.php:1308 -#: ../../godmode/snmpconsole/snmp_alert.php:1641 +#: ../../godmode/snmpconsole/snmp_alert.php:1646 #: ../../godmode/snmpconsole/snmp_filters.php:301 #: ../../godmode/snmpconsole/snmp_filters.php:312 #: ../../godmode/massive/massive_operations.php:374 @@ -1859,8 +1860,8 @@ msgstr "Editar" #: ../../godmode/massive/massive_enable_disable_alerts.php:227 #: ../../godmode/alerts/alert_actions.php:424 #: ../../godmode/alerts/alert_list.list.php:1130 -#: ../../godmode/alerts/alert_commands.php:803 -#: ../../godmode/alerts/alert_commands.php:806 +#: ../../godmode/alerts/alert_commands.php:804 +#: ../../godmode/alerts/alert_commands.php:807 #: ../../godmode/alerts/alert_templates.php:437 ../../godmode/setup/news.php:290 #: ../../godmode/setup/links.php:160 #: ../../godmode/reporting/create_container.php:682 @@ -1879,7 +1880,7 @@ msgstr "Editar" #: ../../godmode/servers/plugin.php:864 ../../godmode/tag/tag.php:395 #: ../../godmode/category/category.php:192 #: ../../godmode/category/category.php:211 -#: ../../include/functions_profile.php:299 +#: ../../include/functions_profile.php:312 #: ../../include/class/ConfigPEN.class.php:666 #: ../../include/class/SatelliteAgent.class.php:1166 #: ../../include/class/SatelliteAgent.class.php:1214 @@ -1887,8 +1888,8 @@ msgstr "Editar" #: ../../include/class/TreeGroupEdition.class.php:166 #: ../../include/class/CredentialStore.class.php:1715 #: ../../include/class/SnmpConsole.class.php:499 -#: ../../include/class/SnmpConsole.class.php:1273 -#: ../../include/class/SnmpConsole.class.php:1300 +#: ../../include/class/SnmpConsole.class.php:1274 +#: ../../include/class/SnmpConsole.class.php:1301 #: ../../include/class/ModuleTemplates.class.php:919 #: ../../include/class/ModuleTemplates.class.php:934 #: ../../include/class/WelcomeWindow.class.php:171 @@ -1898,13 +1899,13 @@ msgstr "Editar" #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3526 -#: ../../operation/users/user_edit.php:1193 +#: ../../include/functions_events.php:3505 +#: ../../operation/users/user_edit.php:1267 #: ../../operation/agentes/pandora_networkmap.editor.php:631 #: ../../operation/agentes/pandora_networkmap.php:811 #: ../../operation/messages/message_list.php:272 #: ../../operation/messages/message_list.php:275 -#: ../../operation/snmpconsole/snmp_browser.php:643 +#: ../../operation/snmpconsole/snmp_browser.php:641 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 #: ../../operation/incidents/list_integriaims_incidents.php:554 msgid "Are you sure?" @@ -1919,8 +1920,9 @@ msgstr "¿Estás seguro?" #: ../../enterprise/include/functions_ui.php:168 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4349 #: ../../godmode/alerts/configure_alert_template.php:1548 -#: ../../godmode/events/event_edit_filter.php:583 -#: ../../godmode/events/event_edit_filter.php:636 +#: ../../godmode/events/event_edit_filter.php:593 +#: ../../godmode/events/event_edit_filter.php:646 +#: ../../include/functions_ui.php:6936 ../../include/functions_ui.php:6984 #: ../../operation/events/events.php:1246 ../../operation/events/events.php:1318 msgid "Remove" msgstr "Eliminar" @@ -1943,7 +1945,6 @@ msgstr "Cargar calendario" #: ../../enterprise/include/class/SAPView.class.php:155 #: ../../enterprise/include/class/SAPView.class.php:199 #: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/inventory/inventory.php:146 #: ../../enterprise/operation/services/massive/services.delete.php:42 #: ../../enterprise/operation/services/massive/services.create.php:595 #: ../../enterprise/operation/services/massive/service.delete.elements.php:105 @@ -1964,12 +1965,13 @@ msgstr "Cargar calendario" #: ../../operation/agentes/interface_view.php:72 #: ../../operation/agentes/status_monitor.php:104 #: ../../operation/agentes/group_view.php:98 -#: ../../operation/agentes/ver_agente.php:1927 -#: ../../operation/agentes/tactical.php:78 +#: ../../operation/agentes/ver_agente.php:1945 +#: ../../operation/agentes/tactical.php:79 #: ../../operation/snmpconsole/snmp_statistics.php:98 #: ../../operation/snmpconsole/snmp_browser.php:86 #: ../../operation/snmpconsole/snmp_mib_uploader.php:56 -#: ../../operation/menu.php:33 ../../operation/menu.php:160 +#: ../../operation/menu.php:33 ../../operation/menu.php:164 +#: ../../operation/inventory/inventory.php:149 #: ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "Monitorización" @@ -2007,14 +2009,15 @@ msgstr "Clústers" #: ../../godmode/modules/manage_network_components_form_common.php:64 #: ../../godmode/modules/manage_network_components.php:753 #: ../../godmode/update_manager/update_manager.history.php:41 -#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/agent_template.php:237 #: ../../godmode/agentes/modificar_agente.php:650 #: ../../godmode/agentes/planned_downtime.list.php:659 #: ../../godmode/agentes/planned_downtime.editor.php:856 #: ../../godmode/agentes/module_manager_editor_common.php:288 #: ../../godmode/agentes/module_manager_editor_common.php:401 #: ../../godmode/agentes/module_manager_editor_common.php:1319 -#: ../../godmode/agentes/module_manager.php:892 +#: ../../godmode/agentes/module_manager.php:201 +#: ../../godmode/agentes/module_manager.php:893 #: ../../godmode/alerts/alert_templates.php:37 #: ../../godmode/alerts/alert_templates.php:302 #: ../../godmode/alerts/alert_templates.php:387 ../../godmode/setup/news.php:247 @@ -2044,7 +2047,7 @@ msgstr "Clústers" #: ../../include/functions_reporting_html.php:1323 #: ../../include/functions_reporting_html.php:2552 #: ../../include/functions_reporting_html.php:3614 -#: ../../include/functions_reporting_html.php:5384 +#: ../../include/functions_reporting_html.php:5403 #: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:990 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 #: ../../include/functions_reports.php:1074 ../../include/functions_html.php:5581 @@ -2058,9 +2061,9 @@ msgstr "Clústers" #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 #: ../../include/functions_events.php:2524 -#: ../../include/functions_events.php:4777 +#: ../../include/functions_events.php:4756 #: ../../operation/agentes/estado_agente.php:757 -#: ../../operation/agentes/ver_agente.php:1165 +#: ../../operation/agentes/ver_agente.php:1171 #: ../../operation/netflow/nf_live_view.php:319 #: ../../operation/incidents/configure_integriaims_incident.php:234 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 @@ -2069,7 +2072,7 @@ msgid "Type" msgstr "Tipo" #: ../../views/cluster/list.php:62 -#: ../../include/functions_reporting_html.php:5819 +#: ../../include/functions_reporting_html.php:5838 #: ../../operation/agentes/pandora_networkmap.php:715 msgid "Nodes" msgstr "Nodos" @@ -2092,8 +2095,8 @@ msgstr "Nodos" #: ../../enterprise/godmode/policies/policies.php:409 #: ../../enterprise/godmode/policies/policy_collections.php:172 #: ../../enterprise/godmode/policies/policy_collections.php:266 -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 +#: ../../enterprise/godmode/policies/policy_agents.php:888 +#: ../../enterprise/godmode/policies/policy_agents.php:1404 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125 #: ../../enterprise/godmode/admin_access_logs.php:50 #: ../../enterprise/godmode/servers/HA_cluster.php:175 @@ -2123,7 +2126,7 @@ msgstr "Nodos" #: ../../godmode/agentes/status_monitor_custom_fields.php:97 #: ../../godmode/agentes/status_monitor_custom_fields.php:148 #: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/agentes/module_manager.php:905 +#: ../../godmode/agentes/module_manager.php:906 #: ../../godmode/massive/massive_copy_modules.php:121 #: ../../godmode/massive/massive_copy_modules.php:281 #: ../../godmode/massive/massive_delete_modules.php:415 @@ -2153,7 +2156,7 @@ msgstr "Nodos" #: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650 #: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963 #: ../../mobile/operation/events.php:964 -#: ../../include/functions_reporting_html.php:551 +#: ../../include/functions_reporting_html.php:552 #: ../../include/functions_reporting_html.php:1050 #: ../../include/functions_reporting_html.php:1059 #: ../../include/functions_reporting_html.php:1313 @@ -2164,7 +2167,7 @@ msgstr "Nodos" #: ../../include/functions_reporting_html.php:2913 #: ../../include/functions_reporting_html.php:3568 #: ../../include/functions_reporting_html.php:3621 -#: ../../include/functions_reporting_html.php:5197 +#: ../../include/functions_reporting_html.php:5216 #: ../../include/ajax/alert_list.ajax.php:296 #: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:993 #: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369 @@ -2179,7 +2182,7 @@ msgstr "Nodos" #: ../../include/functions_snmp_browser.php:594 #: ../../include/functions_events.php:204 ../../include/functions_events.php:259 #: ../../include/functions_events.php:2542 -#: ../../include/functions_events.php:4822 ../../operation/search_agents.php:56 +#: ../../include/functions_events.php:4801 ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:275 #: ../../operation/agentes/estado_agente.php:763 #: ../../operation/agentes/interface_view.functions.php:497 @@ -2213,7 +2216,7 @@ msgstr "Estado" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 #: ../../enterprise/include/class/Omnishell.class.php:814 #: ../../enterprise/include/class/Omnishell.class.php:893 -#: ../../include/ajax/events.php:786 ../../include/functions_html.php:1244 +#: ../../include/ajax/events.php:787 ../../include/functions_html.php:1244 #: ../../include/functions_html.php:1397 #: ../../include/functions_snmp_browser.php:1486 msgid "Filter group" @@ -2236,7 +2239,7 @@ msgstr "Detalles del clúster" msgid "Edit this cluster" msgstr "Editar el clúster" -#: ../../views/cluster/view.php:160 ../../views/cluster/view.php:162 +#: ../../views/cluster/view.php:161 ../../views/cluster/view.php:163 #: ../../enterprise/meta/include/functions_wizard_meta.php:240 #: ../../enterprise/meta/include/functions_wizard_meta.php:525 #: ../../enterprise/meta/include/functions_wizard_meta.php:597 @@ -2250,8 +2253,8 @@ msgstr "Editar el clúster" #: ../../enterprise/meta/agentsearch.php:265 #: ../../enterprise/godmode/modules/configure_local_component.php:471 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 -#: ../../enterprise/godmode/policies/policy_agents.php:1736 -#: ../../enterprise/godmode/policies/policy_agents.php:1751 +#: ../../enterprise/godmode/policies/policy_agents.php:1775 +#: ../../enterprise/godmode/policies/policy_agents.php:1790 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701 #: ../../enterprise/godmode/setup/edit_skin.php:276 #: ../../enterprise/include/class/VMware.app.php:889 @@ -2260,7 +2263,7 @@ msgstr "Editar el clúster" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3257 #: ../../enterprise/include/lib/NetworkManager.php:190 #: ../../enterprise/include/functions_policies.php:4783 -#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/groups/group_list.php:913 #: ../../godmode/agentes/modificar_agente.php:760 #: ../../godmode/agentes/module_manager_editor_common.php:257 #: ../../godmode/agentes/module_manager_editor_common.php:911 @@ -2277,7 +2280,7 @@ msgstr "Editar el clúster" #: ../../include/functions_treeview.php:72 #: ../../include/functions_treeview.php:613 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6673 +#: ../../include/functions_reporting.php:6888 #: ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:99 #: ../../operation/agentes/estado_generalagente.php:101 @@ -2285,7 +2288,7 @@ msgstr "Editar el clúster" msgid "Disabled" msgstr "Deshabilitado" -#: ../../views/cluster/view.php:166 ../../views/cluster/view.php:168 +#: ../../views/cluster/view.php:167 ../../views/cluster/view.php:169 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 #: ../../enterprise/godmode/services/services.service.php:779 #: ../../enterprise/operation/services/massive/services.create.php:843 @@ -2294,7 +2297,7 @@ msgstr "Deshabilitado" #: ../../godmode/agentes/planned_downtime.editor.php:862 #: ../../godmode/agentes/agent_manager.php:692 #: ../../godmode/agentes/module_manager_editor_common.php:1070 -#: ../../godmode/agentes/module_manager.php:1027 +#: ../../godmode/agentes/module_manager.php:1028 #: ../../godmode/massive/massive_edit_agents.php:1108 #: ../../godmode/massive/massive_edit_modules.php:1104 #: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1141 @@ -2305,7 +2308,7 @@ msgstr "Deshabilitado" msgid "Quiet" msgstr "Modo silencioso" -#: ../../views/cluster/view.php:176 ../../views/cluster/view.php:184 +#: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 #: ../../godmode/agentes/modificar_agente.php:782 #: ../../operation/search_agents.php:111 #: ../../operation/agentes/estado_agente.php:839 @@ -2314,17 +2317,15 @@ msgstr "Modo silencioso" msgid "Agent in scheduled downtime" msgstr "Agente en parada programada" -#: ../../views/cluster/view.php:221 +#: ../../views/cluster/view.php:222 msgid "Force cluster status calculation" msgstr "Forzar cálculo del estado del clúster" -#: ../../views/cluster/view.php:251 ../../enterprise/meta/agentsearch.php:137 +#: ../../views/cluster/view.php:252 ../../enterprise/meta/agentsearch.php:137 #: ../../enterprise/godmode/modules/configure_local_component.php:179 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:280 #: ../../enterprise/godmode/modules/local_components.php:564 #: ../../enterprise/godmode/modules/local_components.php:589 #: ../../enterprise/godmode/modules/local_components.php:625 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:107 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/include/class/DeploymentCenter.class.php:756 @@ -2336,6 +2337,8 @@ msgstr "Forzar cálculo del estado del clúster" #: ../../enterprise/include/class/AgentRepository.class.php:731 #: ../../enterprise/operation/agentes/tag_view.php:602 #: ../../enterprise/tools/ipam/ipam_network.php:399 +#: ../../godmode/modules/manage_inventory_modules.php:280 +#: ../../godmode/modules/manage_inventory_modules_form.php:107 #: ../../godmode/agentes/modificar_agente.php:649 #: ../../godmode/agentes/planned_downtime.editor.php:1208 #: ../../godmode/agentes/agent_manager.php:401 @@ -2348,7 +2351,7 @@ msgstr "Forzar cálculo del estado del clúster" #: ../../include/class/Diagnostics.class.php:749 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 #: ../../include/lib/Dashboard/Widgets/tree_view.php:332 -#: ../../include/functions_events.php:4245 ../../operation/search_agents.php:44 +#: ../../include/functions_events.php:4224 ../../operation/search_agents.php:44 #: ../../operation/search_agents.php:50 ../../operation/tree.php:78 #: ../../operation/tree.php:146 ../../operation/agentes/estado_agente.php:748 #: ../../operation/agentes/estado_generalagente.php:194 @@ -2356,12 +2359,12 @@ msgstr "Forzar cálculo del estado del clúster" msgid "OS" msgstr "SO" -#: ../../views/cluster/view.php:271 +#: ../../views/cluster/view.php:272 #: ../../operation/agentes/estado_generalagente.php:212 msgid "IP address" msgstr "Dirección IP" -#: ../../views/cluster/view.php:276 ../../views/cluster/view.php:291 +#: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 #: ../../enterprise/meta/advanced/servers.build_table.php:100 #: ../../enterprise/meta/advanced/servers.build_table.php:101 #: ../../enterprise/meta/advanced/servers.build_table.php:107 @@ -2393,58 +2396,58 @@ msgstr "Dirección IP" #: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 #: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 #: ../../include/functions_servers.php:1359 -#: ../../include/functions_reporting_html.php:655 -#: ../../include/functions_reporting_html.php:658 -#: ../../include/functions_reporting_html.php:5458 -#: ../../include/functions_reporting_html.php:5511 -#: ../../include/functions.php:1144 ../../include/functions.php:1150 -#: ../../include/functions.php:1154 ../../include/ajax/module.php:1181 +#: ../../include/functions_reporting_html.php:656 +#: ../../include/functions_reporting_html.php:659 +#: ../../include/functions_reporting_html.php:5477 +#: ../../include/functions_reporting_html.php:5530 +#: ../../include/functions.php:1170 ../../include/functions.php:1176 +#: ../../include/functions.php:1180 ../../include/ajax/module.php:1181 #: ../../include/functions_treeview.php:162 #: ../../include/functions_treeview.php:327 -#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2615 -#: ../../include/functions_ui.php:2623 ../../include/functions_db.php:241 -#: ../../include/class/SnmpConsole.class.php:827 -#: ../../include/class/SnmpConsole.class.php:845 -#: ../../include/functions_events.php:3552 -#: ../../include/functions_events.php:3686 -#: ../../include/functions_events.php:3706 -#: ../../include/functions_events.php:3715 -#: ../../include/functions_events.php:3724 -#: ../../include/functions_events.php:3725 -#: ../../include/functions_events.php:3737 -#: ../../include/functions_events.php:3797 -#: ../../include/functions_events.php:3830 -#: ../../include/functions_events.php:3896 -#: ../../include/functions_events.php:3913 -#: ../../include/functions_events.php:3920 -#: ../../include/functions_events.php:3986 -#: ../../include/functions_events.php:4078 -#: ../../include/functions_events.php:4202 -#: ../../include/functions_events.php:4241 -#: ../../include/functions_events.php:4255 -#: ../../include/functions_events.php:4260 -#: ../../include/functions_events.php:4290 -#: ../../include/functions_events.php:4376 -#: ../../include/functions_events.php:4456 -#: ../../include/functions_events.php:4466 -#: ../../include/functions_events.php:4683 -#: ../../include/functions_events.php:4757 -#: ../../include/functions_events.php:4851 -#: ../../include/functions_events.php:4880 -#: ../../include/functions_events.php:4895 -#: ../../include/functions_events.php:4905 -#: ../../include/functions_events.php:4915 -#: ../../include/functions_events.php:5355 -#: ../../include/functions_events.php:5369 -#: ../../include/functions_events.php:5374 -#: ../../include/functions_events.php:5377 -#: ../../include/functions_events.php:5385 -#: ../../include/functions_events.php:5394 -#: ../../include/functions_events.php:5406 -#: ../../include/functions_events.php:5459 -#: ../../include/functions_events.php:5486 -#: ../../include/functions_events.php:5511 -#: ../../include/functions_events.php:5555 +#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2619 +#: ../../include/functions_ui.php:2627 ../../include/functions_db.php:241 +#: ../../include/class/SnmpConsole.class.php:828 +#: ../../include/class/SnmpConsole.class.php:846 +#: ../../include/functions_events.php:3531 +#: ../../include/functions_events.php:3665 +#: ../../include/functions_events.php:3685 +#: ../../include/functions_events.php:3694 +#: ../../include/functions_events.php:3703 +#: ../../include/functions_events.php:3704 +#: ../../include/functions_events.php:3716 +#: ../../include/functions_events.php:3776 +#: ../../include/functions_events.php:3809 +#: ../../include/functions_events.php:3875 +#: ../../include/functions_events.php:3892 +#: ../../include/functions_events.php:3899 +#: ../../include/functions_events.php:3965 +#: ../../include/functions_events.php:4057 +#: ../../include/functions_events.php:4181 +#: ../../include/functions_events.php:4220 +#: ../../include/functions_events.php:4234 +#: ../../include/functions_events.php:4239 +#: ../../include/functions_events.php:4269 +#: ../../include/functions_events.php:4355 +#: ../../include/functions_events.php:4435 +#: ../../include/functions_events.php:4445 +#: ../../include/functions_events.php:4662 +#: ../../include/functions_events.php:4736 +#: ../../include/functions_events.php:4830 +#: ../../include/functions_events.php:4859 +#: ../../include/functions_events.php:4874 +#: ../../include/functions_events.php:4884 +#: ../../include/functions_events.php:4894 +#: ../../include/functions_events.php:5368 +#: ../../include/functions_events.php:5382 +#: ../../include/functions_events.php:5387 +#: ../../include/functions_events.php:5390 +#: ../../include/functions_events.php:5398 +#: ../../include/functions_events.php:5407 +#: ../../include/functions_events.php:5419 +#: ../../include/functions_events.php:5472 +#: ../../include/functions_events.php:5499 +#: ../../include/functions_events.php:5524 +#: ../../include/functions_events.php:5568 #: ../../operation/agentes/interface_view.functions.php:682 #: ../../operation/agentes/interface_view.functions.php:683 #: ../../operation/agentes/interface_view.functions.php:684 @@ -2460,22 +2463,22 @@ msgstr "Dirección IP" msgid "N/A" msgstr "N/A" -#: ../../views/cluster/view.php:307 ../../include/functions_treeview.php:729 +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:724 #: ../../operation/agentes/estado_generalagente.php:225 #: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" msgstr "Versión del agente" -#: ../../views/cluster/view.php:312 +#: ../../views/cluster/view.php:313 msgid "Cluster agent" msgstr "Agente del clúster" -#: ../../views/cluster/view.php:367 +#: ../../views/cluster/view.php:368 #: ../../operation/agentes/estado_generalagente.php:899 msgid "Events (Last 24h)" msgstr "Eventos (últimas 24h)" -#: ../../views/cluster/view.php:439 ../../operation/agentes/stat_win.php:451 +#: ../../views/cluster/view.php:440 ../../operation/agentes/stat_win.php:451 #: ../../operation/agentes/interface_traffic_graph_win.php:278 msgid "Reload" msgstr "Actualizar" @@ -2528,6 +2531,10 @@ msgstr "Actualizar el panel de control" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 #: ../../enterprise/godmode/services/services.elements.php:886 #: ../../enterprise/godmode/services/services.elements.php:897 +#: ../../enterprise/godmode/setup/setup.php:544 +#: ../../enterprise/godmode/setup/setup.php:559 +#: ../../enterprise/godmode/setup/setup.php:566 +#: ../../enterprise/godmode/setup/setup.php:575 #: ../../enterprise/include/class/Omnishell.class.php:1501 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3052 #: ../../enterprise/include/lib/Metaconsole/Node.php:406 @@ -2539,8 +2546,8 @@ msgstr "Actualizar el panel de control" #: ../../godmode/snmpconsole/snmp_alert.php:1548 #: ../../godmode/snmpconsole/snmp_alert.php:1563 #: ../../godmode/massive/massive_edit_agents.php:1043 -#: ../../include/functions_config.php:1302 -#: ../../include/functions_config.php:3293 +#: ../../include/functions_config.php:1283 +#: ../../include/functions_config.php:3269 #: ../../include/class/SatelliteAgent.class.php:1290 #: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 #: ../../operation/gis_maps/render_view.php:166 @@ -2582,7 +2589,7 @@ msgstr "Mostrar el enlace al dashboard público" #: ../../operation/visual_console/public_view.php:123 #: ../../operation/agentes/pandora_networkmap.editor.php:455 #: ../../operation/gis_maps/render_view.php:160 -#: ../../operation/reporting/graph_viewer.php:399 +#: ../../operation/reporting/graph_viewer.php:371 #: ../../operation/events/events.php:1384 ../../general/login_page.php:75 #: ../../general/login_page.php:318 msgid "Refresh" @@ -2601,7 +2608,7 @@ msgstr "Dashboards" #: ../../views/dashboard/header.php:278 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 #: ../../godmode/agentes/planned_downtime.editor.php:60 -#: ../../godmode/alerts/alert_list.php:501 ../../godmode/category/category.php:89 +#: ../../godmode/alerts/alert_list.php:519 ../../godmode/category/category.php:89 #: ../../include/functions_html.php:1901 ../../include/functions_html.php:1902 #: ../../include/functions_html.php:2012 ../../include/functions_html.php:2013 #: ../../include/functions_html.php:2190 ../../include/functions_html.php:2191 @@ -2638,8 +2645,8 @@ msgstr "Lista" #: ../../godmode/modules/manage_network_components.php:555 #: ../../godmode/users/profile_list.php:133 ../../godmode/users/user_list.php:344 #: ../../godmode/users/user_list.php:400 -#: ../../godmode/users/configure_user.php:152 -#: ../../godmode/users/configure_user.php:172 +#: ../../godmode/users/configure_user.php:148 +#: ../../godmode/users/configure_user.php:168 #: ../../godmode/agentes/planned_downtime.list.php:279 #: ../../godmode/netflow/nf_item_list.php:120 #: ../../godmode/netflow/nf_item_list.php:148 @@ -2650,7 +2657,7 @@ msgstr "Lista" #: ../../godmode/massive/massive_delete_modules.php:162 #: ../../godmode/massive/massive_delete_alerts.php:201 #: ../../godmode/alerts/alert_actions.php:205 -#: ../../godmode/alerts/alert_commands.php:690 +#: ../../godmode/alerts/alert_commands.php:691 #: ../../godmode/alerts/alert_templates.php:252 #: ../../godmode/alerts/alert_list.php:239 #: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:120 @@ -2676,8 +2683,8 @@ msgstr "Eliminado correctamente" #: ../../enterprise/godmode/policies/policy_alerts.php:256 #: ../../enterprise/godmode/policies/policy_alerts.php:302 #: ../../enterprise/godmode/policies/policy_modules.php:1318 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:147 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:174 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:149 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:176 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:166 #: ../../enterprise/godmode/policies/policy_collections.php:100 #: ../../enterprise/godmode/policies/policy_agents.php:104 @@ -2693,11 +2700,11 @@ msgstr "Eliminado correctamente" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 #: ../../extensions/files_repo.php:184 #: ../../godmode/modules/manage_network_components.php:556 -#: ../../godmode/users/configure_user.php:153 +#: ../../godmode/users/configure_user.php:149 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:206 -#: ../../godmode/alerts/alert_commands.php:691 +#: ../../godmode/alerts/alert_commands.php:692 #: ../../godmode/alerts/alert_templates.php:253 #: ../../godmode/alerts/alert_list.php:240 #: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:121 @@ -2733,7 +2740,7 @@ msgstr "Favorito" #: ../../views/dashboard/list.php:99 #: ../../include/class/AgentsAlerts.class.php:822 ../../operation/heatmap.php:87 #: ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2327 +#: ../../operation/agentes/pandora_networkmap.view.php:2331 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 #: ../../operation/events/events.php:1427 @@ -2774,12 +2781,9 @@ msgstr "Copiar" #: ../../enterprise/meta/include/functions_autoprovision.php:685 #: ../../enterprise/meta/include/functions_autoprovision.php:686 #: ../../enterprise/meta/include/functions_wizard_meta.php:395 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:323 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:338 #: ../../enterprise/godmode/modules/local_components.php:701 #: ../../enterprise/godmode/modules/local_components.php:718 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 -#: ../../enterprise/godmode/agentes/inventory_manager.php:250 #: ../../enterprise/godmode/agentes/plugins_manager.php:196 #: ../../enterprise/godmode/agentes/plugins_manager.php:281 #: ../../enterprise/godmode/policies/policy_plugins.php:188 @@ -2790,10 +2794,10 @@ msgstr "Copiar" #: ../../enterprise/godmode/policies/policy_queue.php:675 #: ../../enterprise/godmode/policies/policy_queue.php:722 #: ../../enterprise/godmode/policies/policies.php:595 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:559 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:561 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 -#: ../../enterprise/godmode/policies/policy_agents.php:1083 -#: ../../enterprise/godmode/policies/policy_agents.php:1545 +#: ../../enterprise/godmode/policies/policy_agents.php:1119 +#: ../../enterprise/godmode/policies/policy_agents.php:1581 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238 #: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148 @@ -2842,17 +2846,20 @@ msgstr "Copiar" #: ../../godmode/modules/manage_network_templates_form.php:254 #: ../../godmode/modules/manage_nc_groups.php:276 #: ../../godmode/modules/manage_nc_groups.php:305 +#: ../../godmode/modules/manage_inventory_modules.php:323 +#: ../../godmode/modules/manage_inventory_modules.php:338 #: ../../godmode/modules/manage_network_components.php:871 #: ../../godmode/modules/manage_network_components.php:872 #: ../../godmode/modules/manage_network_components.php:901 #: ../../godmode/modules/manage_network_templates.php:289 #: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:937 -#: ../../godmode/groups/group_list.php:938 +#: ../../godmode/groups/group_list.php:942 +#: ../../godmode/groups/group_list.php:943 #: ../../godmode/groups/modu_group_list.php:254 ../../godmode/extensions.php:257 #: ../../godmode/extensions.php:259 ../../godmode/users/profile_list.php:443 #: ../../godmode/users/user_list.php:885 -#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/inventory_manager.php:250 #: ../../godmode/agentes/planned_downtime.list.php:671 #: ../../godmode/agentes/planned_downtime.list.php:821 #: ../../godmode/agentes/planned_downtime.editor.php:1254 @@ -2860,8 +2867,8 @@ msgstr "Copiar" #: ../../godmode/agentes/planned_downtime.editor.php:1307 #: ../../godmode/agentes/fields_manager.php:158 #: ../../godmode/agentes/module_manager_editor_common.php:1321 -#: ../../godmode/agentes/module_manager.php:910 -#: ../../godmode/agentes/module_manager.php:1288 +#: ../../godmode/agentes/module_manager.php:911 +#: ../../godmode/agentes/module_manager.php:1293 #: ../../godmode/netflow/nf_item_list.php:263 #: ../../godmode/netflow/nf_item_list.php:273 #: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208 @@ -2906,14 +2913,14 @@ msgstr "Copiar" #: ../../include/class/CredentialStore.class.php:1717 #: ../../include/class/SnmpConsole.class.php:496 #: ../../include/class/SnmpConsole.class.php:547 -#: ../../include/class/SnmpConsole.class.php:900 -#: ../../include/class/SnmpConsole.class.php:912 +#: ../../include/class/SnmpConsole.class.php:901 +#: ../../include/class/SnmpConsole.class.php:913 #: ../../include/class/ModuleTemplates.class.php:934 #: ../../include/class/ModuleTemplates.class.php:1212 #: ../../include/class/CalendarManager.class.php:737 #: ../../include/functions_container.php:191 #: ../../include/functions_container.php:325 -#: ../../include/lib/ClusterViewer/ClusterManager.php:637 +#: ../../include/lib/ClusterViewer/ClusterManager.php:634 #: ../../operation/visual_console/view.php:845 #: ../../operation/agentes/pandora_networkmap.php:721 #: ../../operation/agentes/pandora_networkmap.php:811 @@ -2951,7 +2958,7 @@ msgid "Please select widget" msgstr "Seleccione un widget" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../include/class/SnmpConsole.class.php:1538 +#: ../../include/class/SnmpConsole.class.php:1539 #: ../../operation/events/events.php:3082 msgid "Until next" msgstr "Hasta el próximo" @@ -2991,12 +2998,12 @@ msgstr "Cambiar cada" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../include/functions.php:3895 +#: ../../include/functions.php:3921 msgid "Previous" msgstr "Anterior" #: ../../views/dashboard/slides.php:218 -#: ../../enterprise/meta/general/main_menu.php:277 ../../operation/menu.php:437 +#: ../../enterprise/meta/general/main_menu.php:277 ../../operation/menu.php:441 msgid "Stop" msgstr "Parar" @@ -3016,7 +3023,7 @@ msgstr "Pausar" #: ../../enterprise/include/class/Omnishell.class.php:645 #: ../../enterprise/include/class/DB2.app.php:567 #: ../../enterprise/include/class/SAP.app.php:442 -#: ../../enterprise/include/class/Aws.cloud.php:1425 +#: ../../enterprise/include/class/Aws.cloud.php:1424 #: ../../enterprise/include/class/MySQL.app.php:589 #: ../../enterprise/include/class/Oracle.app.php:574 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 @@ -3068,7 +3075,7 @@ msgstr "" #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 #: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1258 ../../include/functions_events.php:3058 +#: ../../include/functions.php:1284 ../../include/functions_events.php:3037 msgid "Network configuration manager" msgstr "Administrador de configuración de red" @@ -3138,20 +3145,20 @@ msgid "connect using telnet" msgstr "conectarse mediante telnet" #: ../../enterprise/views/ncm/agent/manage.php:118 -#: ../../enterprise/meta/include/functions_meta.php:2101 +#: ../../enterprise/meta/include/functions_meta.php:2082 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 #: ../../enterprise/godmode/setup/setup_history.php:192 #: ../../enterprise/godmode/servers/manage_export_form.php:121 #: ../../enterprise/include/class/Azure.cloud.php:813 #: ../../enterprise/include/class/VMware.app.php:632 #: ../../enterprise/include/class/Aws.S3.php:574 -#: ../../enterprise/include/class/Aws.cloud.php:557 +#: ../../enterprise/include/class/Aws.cloud.php:556 #: ../../extensions/quick_shell.php:181 #: ../../godmode/modules/manage_network_components_form_network.php:53 #: ../../godmode/agentes/module_manager_editor_network.php:126 #: ../../godmode/massive/massive_edit_modules.php:1145 #: ../../godmode/servers/modificar_server.php:84 -#: ../../include/functions_config.php:1572 +#: ../../include/functions_config.php:1553 #: ../../include/class/AgentWizard.class.php:647 #: ../../include/functions_snmp_browser.php:714 msgid "Port" @@ -3230,7 +3237,7 @@ msgstr "Tipo de script" #: ../../enterprise/views/ncm/agent/details.php:90 #: ../../enterprise/include/class/CommandCenter.class.php:468 -#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226 +#: ../../extensions/api_checker.php:303 ../../extensions/api_checker.php:310 #: ../../include/functions_reporting_html.php:4225 #: ../../include/functions_reporting_html.php:4372 #: ../../include/functions_reporting_html.php:4714 @@ -3326,7 +3333,7 @@ msgstr "Vista previa" #: ../../enterprise/operation/services/services.list.php:240 #: ../../enterprise/operation/services/services.list.php:571 #: ../../enterprise/operation/services/services.table_services.php:162 -#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1064 +#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1069 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 @@ -3336,37 +3343,37 @@ msgstr "Vista previa" #: ../../godmode/alerts/alert_list.builder.php:290 #: ../../godmode/reporting/reporting_builder.item_editor.php:3787 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 -#: ../../include/graphs/functions_flot.php:305 +#: ../../include/graphs/functions_flot.php:310 #: ../../include/functions_reporting_html.php:2473 #: ../../include/functions_reporting_html.php:2486 #: ../../include/functions_reporting_html.php:3468 #: ../../include/functions_reporting_html.php:3882 -#: ../../include/functions.php:1245 ../../include/functions.php:4133 +#: ../../include/functions.php:1271 ../../include/functions.php:4159 #: ../../include/ajax/module.php:1084 ../../include/functions_ui.php:549 -#: ../../include/functions_ui.php:550 ../../include/functions_visual_map.php:2455 -#: ../../include/functions_visual_map.php:2483 -#: ../../include/functions_visual_map.php:2501 -#: ../../include/functions_visual_map.php:2519 +#: ../../include/functions_ui.php:550 ../../include/functions_visual_map.php:2457 +#: ../../include/functions_visual_map.php:2485 +#: ../../include/functions_visual_map.php:2503 +#: ../../include/functions_visual_map.php:2521 #: ../../include/functions_alerts.php:702 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:439 #: ../../include/functions_reports.php:557 ../../include/functions_maps.php:54 #: ../../include/functions_massive_operations.php:151 #: ../../include/functions_netflow.php:1865 -#: ../../include/functions_reporting.php:6453 +#: ../../include/functions_reporting.php:6668 #: ../../include/functions_filemanager.php:668 #: ../../include/lib/Dashboard/Widgets/tree_view.php:388 #: ../../include/lib/Dashboard/Widgets/tree_view.php:421 #: ../../include/lib/Dashboard/Widgets/tree_view.php:673 -#: ../../include/lib/ClusterViewer/ClusterManager.php:585 -#: ../../include/functions_events.php:3006 ../../operation/tree.php:215 +#: ../../include/lib/ClusterViewer/ClusterManager.php:582 +#: ../../include/functions_events.php:2985 ../../operation/tree.php:215 #: ../../operation/tree.php:272 ../../operation/tree.php:476 #: ../../operation/agentes/estado_agente.php:271 #: ../../operation/agentes/status_monitor.php:495 #: ../../operation/agentes/group_view.php:224 #: ../../operation/agentes/group_view.php:229 #: ../../operation/agentes/estado_monitores.php:526 -#: ../../operation/agentes/pandora_networkmap.view.php:1767 -#: ../../operation/agentes/tactical.php:181 ../../operation/events/events.php:785 +#: ../../operation/agentes/pandora_networkmap.view.php:1771 +#: ../../operation/agentes/tactical.php:182 ../../operation/events/events.php:785 #: ../../general/logon_ok.php:145 msgid "Unknown" msgstr "Desconocido" @@ -3431,12 +3438,11 @@ msgstr "Diferencia" #: ../../enterprise/meta/include/functions_alerts_meta.php:164 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:499 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:139 -#: ../../enterprise/godmode/agentes/inventory_manager.php:225 -#: ../../enterprise/godmode/agentes/collections.php:433 +#: ../../enterprise/godmode/agentes/collections.php:447 #: ../../enterprise/godmode/policies/policy_alerts.php:353 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:359 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:393 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:691 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:361 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:395 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:693 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:305 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 @@ -3451,13 +3457,14 @@ msgstr "Diferencia" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072 #: ../../enterprise/tools/ipam/ipam_ajax.php:532 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:689 -#: ../../godmode/groups/group_list.php:853 +#: ../../godmode/groups/group_list.php:858 +#: ../../godmode/agentes/inventory_manager.php:225 #: ../../godmode/agentes/modificar_agente.php:653 #: ../../godmode/agentes/planned_downtime.editor.php:1213 -#: ../../godmode/agentes/fields_manager.php:124 ../../godmode/menu.php:273 +#: ../../godmode/agentes/fields_manager.php:124 ../../godmode/menu.php:276 #: ../../godmode/alerts/alert_list.list.php:130 #: ../../godmode/alerts/alert_list.list.php:498 -#: ../../godmode/alerts/alert_commands.php:745 +#: ../../godmode/alerts/alert_commands.php:746 #: ../../godmode/alerts/alert_view.php:301 #: ../../godmode/alerts/alert_list.builder.php:96 #: ../../godmode/reporting/reporting_builder.item_editor.php:2064 @@ -3470,7 +3477,7 @@ msgstr "Diferencia" #: ../../include/class/AgentsAlerts.class.php:285 #: ../../include/class/SnmpConsole.class.php:344 #: ../../include/class/SatelliteCollection.class.php:131 -#: ../../include/functions_reporting.php:3011 +#: ../../include/functions_reporting.php:3129 #: ../../include/functions_filemanager.php:607 msgid "Actions" msgstr "Acciones" @@ -3517,8 +3524,8 @@ msgstr "Diferencia entre: copia de seguridad - seleccionada" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251 #: ../../enterprise/godmode/agentes/manage_config_remote.php:65 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1353 -#: ../../godmode/agentes/planned_downtime.list.php:661 ../../godmode/menu.php:249 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1379 +#: ../../godmode/agentes/planned_downtime.list.php:661 ../../godmode/menu.php:252 #: ../../godmode/setup/setup.php:330 ../../godmode/events/events.php:124 #: ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 @@ -3593,9 +3600,9 @@ msgid "Customize script execution" msgstr "Personalizar la ejecución del script" #: ../../enterprise/views/ncm/agent/details.php:689 -#: ../../include/ajax/events.php:2103 +#: ../../include/ajax/events.php:2114 #: ../../include/class/ExternalTools.class.php:581 -#: ../../include/functions_events.php:3578 +#: ../../include/functions_events.php:3557 msgid "Execute" msgstr "Ejecutar" @@ -3611,8 +3618,8 @@ msgstr "Ejecutar" #: ../../enterprise/include/functions_reporting.php:7974 #: ../../enterprise/include/functions_reporting.php:8002 #: ../../enterprise/include/functions_reporting.php:8073 -#: ../../godmode/agentes/configurar_agente.php:751 ../../godmode/menu.php:168 -#: ../../godmode/menu.php:269 +#: ../../godmode/agentes/configurar_agente.php:764 ../../godmode/menu.php:169 +#: ../../godmode/menu.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1999 #: ../../include/functions_menu.php:510 #: ../../include/class/ConfigPEN.class.php:332 @@ -3766,7 +3773,7 @@ msgstr "Configurar agentes para usar plantillas NCM" #: ../../enterprise/views/ncm/devices/list.php:117 #: ../../enterprise/godmode/servers/manage_export.php:140 #: ../../enterprise/godmode/servers/manage_export_form.php:99 -#: ../../enterprise/include/functions_ipam.php:2042 +#: ../../enterprise/include/functions_ipam.php:2050 #: ../../enterprise/tools/ipam/ipam_network.php:396 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 @@ -3774,8 +3781,8 @@ msgstr "Configurar agentes para usar plantillas NCM" #: ../../enterprise/tools/ipam/ipam_excel.php:139 #: ../../enterprise/tools/ipam/ipam_ajax.php:359 #: ../../enterprise/tools/ipam/ipam_calculator.php:62 -#: ../../godmode/setup/setup_general.php:660 -#: ../../operation/agentes/ver_agente.php:1193 +#: ../../godmode/setup/setup_general.php:741 +#: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "Dirección" @@ -3800,7 +3807,7 @@ msgstr "Última tarea en cola" #: ../../enterprise/tools/ipam/ipam_list.php:655 #: ../../extensions/agents_modules.php:317 #: ../../operation/agentes/group_view.php:80 -#: ../../operation/agentes/tactical.php:60 +#: ../../operation/agentes/tactical.php:61 msgid "Last update" msgstr "Última actualización" @@ -3886,8 +3893,9 @@ msgstr "" #: ../../update_manager_client/views/offline.php:80 #: ../../extensions/dbmanager.php:114 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1059 -#: ../../godmode/users/configure_user.php:1914 +#: ../../godmode/groups/group_list.php:1064 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1979 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 @@ -3899,30 +3907,31 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:3785 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 #: ../../include/functions_reporting_html.php:2485 -#: ../../include/functions.php:1055 ../../include/functions.php:1293 -#: ../../include/functions.php:1296 ../../include/functions.php:1335 -#: ../../include/functions_graph.php:3497 ../../include/functions_graph.php:3498 -#: ../../include/functions_graph.php:5072 ../../include/functions_ui.php:298 -#: ../../include/functions_ui.php:2610 +#: ../../include/functions.php:1081 ../../include/functions.php:1319 +#: ../../include/functions.php:1322 ../../include/functions.php:1361 +#: ../../include/functions_graph.php:3342 ../../include/functions_graph.php:3344 +#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:298 +#: ../../include/functions_ui.php:2614 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 #: ../../include/functions_massive_operations.php:149 #: ../../include/class/SatelliteAgent.class.php:1358 #: ../../include/class/SatelliteAgent.class.php:1383 -#: ../../include/class/Diagnostics.class.php:1812 +#: ../../include/class/Diagnostics.class.php:1817 #: ../../include/class/AgentWizard.class.php:1398 #: ../../include/class/AgentWizard.class.php:4144 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 #: ../../include/lib/Dashboard/Widgets/tree_view.php:386 #: ../../include/lib/Dashboard/Widgets/tree_view.php:419 #: ../../include/lib/Dashboard/Widgets/tree_view.php:668 -#: ../../include/functions_events.php:3102 ../../index.php:1226 +#: ../../include/functions_events.php:3081 ../../index.php:1229 #: ../../operation/tree.php:213 ../../operation/tree.php:270 -#: ../../operation/tree.php:471 ../../operation/agentes/estado_agente.php:269 +#: ../../operation/tree.php:471 ../../operation/users/user_edit.php:277 +#: ../../operation/agentes/estado_agente.php:269 #: ../../operation/agentes/status_monitor.php:493 #: ../../operation/agentes/group_view.php:227 #: ../../operation/agentes/group_view.php:232 #: ../../operation/agentes/estado_monitores.php:525 -#: ../../operation/agentes/tactical.php:179 +#: ../../operation/agentes/tactical.php:180 #: ../../operation/netflow/nf_live_view.php:459 #: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:143 msgid "Warning" @@ -3944,13 +3953,13 @@ msgstr "icono" #: ../../enterprise/views/ipam/sites/edit.php:64 #: ../../godmode/modules/manage_nc_groups_form.php:71 #: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/group_list.php:848 +#: ../../godmode/groups/group_list.php:853 #: ../../godmode/agentes/agent_manager.php:574 #: ../../godmode/massive/massive_edit_agents.php:655 #: ../../godmode/reporting/visual_console_builder.elements.php:108 #: ../../include/functions_visual_map_editor.php:956 -#: ../../include/rest-api/models/VisualConsole/Item.php:2175 -#: ../../operation/agentes/ver_agente.php:1230 +#: ../../include/rest-api/models/VisualConsole/Item.php:2176 +#: ../../operation/agentes/ver_agente.php:1236 #: ../../operation/agentes/estado_generalagente.php:425 msgid "Parent" msgstr "Padre" @@ -3984,10 +3993,10 @@ msgstr "Padre" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167 #: ../../enterprise/godmode/policies/policy_alerts.php:583 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:588 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:697 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:590 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:699 #: ../../enterprise/godmode/policies/policy_agents.php:391 -#: ../../enterprise/godmode/policies/policy_agents.php:1694 +#: ../../enterprise/godmode/policies/policy_agents.php:1730 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:211 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 @@ -4016,10 +4025,6 @@ msgstr "Padre" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1126 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1173 -#: ../../enterprise/godmode/setup/setup.php:614 -#: ../../enterprise/godmode/setup/setup.php:631 -#: ../../enterprise/godmode/setup/setup.php:640 -#: ../../enterprise/godmode/setup/setup.php:657 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:262 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:795 @@ -4133,10 +4138,10 @@ msgstr "Padre" #: ../../godmode/modules/manage_network_components_form.php:666 #: ../../godmode/groups/configure_group.php:188 #: ../../godmode/groups/configure_group.php:210 -#: ../../godmode/users/configure_user.php:1253 -#: ../../godmode/users/configure_user.php:1267 -#: ../../godmode/users/configure_user.php:1461 -#: ../../godmode/users/configure_user.php:1473 +#: ../../godmode/users/configure_user.php:1312 +#: ../../godmode/users/configure_user.php:1326 +#: ../../godmode/users/configure_user.php:1519 +#: ../../godmode/users/configure_user.php:1531 #: ../../godmode/agentes/status_monitor_custom_fields.php:218 #: ../../godmode/agentes/status_monitor_custom_fields.php:266 #: ../../godmode/agentes/module_manager_editor_plugin.php:55 @@ -4194,10 +4199,10 @@ msgstr "Padre" #: ../../godmode/massive/massive_edit_modules.php:1829 #: ../../godmode/alerts/alert_actions.php:291 #: ../../godmode/alerts/alert_list.list.php:762 -#: ../../godmode/alerts/alert_commands.php:303 -#: ../../godmode/alerts/alert_commands.php:317 -#: ../../godmode/alerts/alert_commands.php:462 -#: ../../godmode/alerts/alert_commands.php:475 +#: ../../godmode/alerts/alert_commands.php:304 +#: ../../godmode/alerts/alert_commands.php:318 +#: ../../godmode/alerts/alert_commands.php:463 +#: ../../godmode/alerts/alert_commands.php:476 #: ../../godmode/alerts/configure_alert_template.php:650 #: ../../godmode/alerts/configure_alert_template.php:777 #: ../../godmode/alerts/configure_alert_template.php:798 @@ -4205,6 +4210,10 @@ msgstr "Padre" #: ../../godmode/setup/setup_visuals.php:401 #: ../../godmode/setup/setup_visuals.php:420 #: ../../godmode/setup/setup_visuals.php:950 +#: ../../godmode/setup/setup_general.php:903 +#: ../../godmode/setup/setup_general.php:920 +#: ../../godmode/setup/setup_general.php:929 +#: ../../godmode/setup/setup_general.php:946 #: ../../godmode/reporting/create_container.php:489 #: ../../godmode/reporting/graph_builder.graph_editor.php:329 #: ../../godmode/reporting/reporting_builder.item_editor.php:208 @@ -4228,7 +4237,7 @@ msgstr "Padre" #: ../../godmode/reporting/visual_console_builder.wizard.php:732 #: ../../godmode/reporting/visual_console_builder.wizard.php:742 #: ../../godmode/reporting/visual_console_builder.wizard.php:774 -#: ../../godmode/events/event_edit_filter.php:740 +#: ../../godmode/events/event_edit_filter.php:799 #: ../../godmode/events/custom_events.php:200 #: ../../godmode/events/custom_events.php:248 #: ../../godmode/wizards/HostDevices.class.php:1102 @@ -4239,23 +4248,23 @@ msgstr "Padre" #: ../../include/functions_visual_map_editor.php:957 #: ../../include/functions_visual_map_editor.php:1010 #: ../../include/functions_visual_map_editor.php:1072 -#: ../../include/functions.php:1093 ../../include/functions_cron.php:682 +#: ../../include/functions.php:1119 ../../include/functions_cron.php:682 #: ../../include/functions_networkmap.php:1519 #: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589 +#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590 #: ../../include/functions_integriaims.php:135 -#: ../../include/functions_profile.php:318 -#: ../../include/functions_profile.php:336 -#: ../../include/functions_profile.php:351 +#: ../../include/functions_profile.php:332 +#: ../../include/functions_profile.php:350 +#: ../../include/functions_profile.php:365 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:632 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644 -#: ../../include/rest-api/models/VisualConsole/Item.php:2087 -#: ../../include/rest-api/models/VisualConsole/Item.php:2206 -#: ../../include/rest-api/models/VisualConsole/Item.php:2324 -#: ../../include/rest-api/models/VisualConsole/Item.php:2446 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634 +#: ../../include/rest-api/models/VisualConsole/Item.php:2088 +#: ../../include/rest-api/models/VisualConsole/Item.php:2207 +#: ../../include/rest-api/models/VisualConsole/Item.php:2325 +#: ../../include/rest-api/models/VisualConsole/Item.php:2447 #: ../../include/functions_html.php:376 ../../include/functions_html.php:816 #: ../../include/functions_html.php:1239 ../../include/functions_html.php:1291 #: ../../include/functions_html.php:1338 ../../include/functions_html.php:1339 @@ -4269,7 +4278,7 @@ msgstr "Padre" #: ../../include/class/NetworkMap.class.php:3347 #: ../../include/class/NetworkMap.class.php:3363 #: ../../include/class/SnmpConsole.class.php:377 -#: ../../include/class/SnmpConsole.class.php:1372 +#: ../../include/class/SnmpConsole.class.php:1373 #: ../../include/class/AgentWizard.class.php:728 #: ../../include/class/AgentWizard.class.php:784 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:365 @@ -4295,25 +4304,25 @@ msgstr "Padre" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3381 -#: ../../operation/users/user_edit.php:405 -#: ../../operation/users/user_edit.php:417 -#: ../../operation/users/user_edit.php:455 +#: ../../include/functions_events.php:3360 +#: ../../operation/users/user_edit.php:479 #: ../../operation/users/user_edit.php:491 -#: ../../operation/users/user_edit.php:506 -#: ../../operation/users/user_edit.php:923 -#: ../../operation/users/user_edit.php:930 -#: ../../operation/users/user_edit.php:939 -#: ../../operation/users/user_edit.php:946 +#: ../../operation/users/user_edit.php:529 +#: ../../operation/users/user_edit.php:565 +#: ../../operation/users/user_edit.php:580 +#: ../../operation/users/user_edit.php:997 +#: ../../operation/users/user_edit.php:1004 +#: ../../operation/users/user_edit.php:1013 +#: ../../operation/users/user_edit.php:1020 #: ../../operation/agentes/pandora_networkmap.editor.php:367 #: ../../operation/agentes/pandora_networkmap.view.php:211 -#: ../../operation/agentes/ver_agente.php:1176 -#: ../../operation/agentes/ver_agente.php:1232 -#: ../../operation/agentes/ver_agente.php:1247 -#: ../../operation/snmpconsole/snmp_browser.php:389 -#: ../../operation/snmpconsole/snmp_browser.php:404 -#: ../../operation/snmpconsole/snmp_browser.php:414 -#: ../../operation/snmpconsole/snmp_browser.php:533 +#: ../../operation/agentes/ver_agente.php:1182 +#: ../../operation/agentes/ver_agente.php:1238 +#: ../../operation/agentes/ver_agente.php:1253 +#: ../../operation/snmpconsole/snmp_browser.php:387 +#: ../../operation/snmpconsole/snmp_browser.php:402 +#: ../../operation/snmpconsole/snmp_browser.php:412 +#: ../../operation/snmpconsole/snmp_browser.php:531 #: ../../operation/gis_maps/render_view.php:163 #: ../../operation/incidents/list_integriaims_incidents.php:530 #: ../../operation/incidents/list_integriaims_incidents.php:534 @@ -4332,7 +4341,7 @@ msgstr "Crear mapa visual" #: ../../godmode/agentes/configurar_agente.php:384 #: ../../godmode/agentes/modificar_agente.php:82 #: ../../godmode/agentes/modificar_agente.php:832 -#: ../../godmode/agentes/modificar_agente.php:836 ../../godmode/menu.php:571 +#: ../../godmode/agentes/modificar_agente.php:836 ../../godmode/menu.php:574 #: ../../godmode/setup/setup_visuals.php:163 #: ../../godmode/setup/setup_visuals.php:228 #: ../../godmode/setup/setup_visuals.php:282 @@ -4347,13 +4356,13 @@ msgstr "Crear mapa visual" #: ../../godmode/setup/setup_visuals.php:609 #: ../../godmode/reporting/visual_console_builder.php:851 #: ../../godmode/module_library/module_library_view.php:59 -#: ../../include/lib/ClusterViewer/ClusterManager.php:604 +#: ../../include/lib/ClusterViewer/ClusterManager.php:601 #: ../../operation/tree.php:187 ../../operation/visual_console/view.php:200 #: ../../operation/visual_console/legacy_view.php:193 #: ../../operation/agentes/estado_agente.php:857 #: ../../operation/agentes/estado_agente.php:859 #: ../../operation/agentes/status_monitor.php:75 -#: ../../operation/agentes/ver_agente.php:1928 +#: ../../operation/agentes/ver_agente.php:1946 msgid "View" msgstr "Vista" @@ -4426,7 +4435,7 @@ msgstr "Nueva consola visual" #: ../../enterprise/godmode/reporting/visual_console_template.php:122 #: ../../enterprise/godmode/reporting/visual_console_template.php:128 #: ../../extensions/resource_exportation.php:436 -#: ../../godmode/users/configure_user.php:1290 +#: ../../godmode/users/configure_user.php:1349 #: ../../godmode/massive/massive_edit_users.php:275 #: ../../godmode/reporting/visual_console_builder.php:882 #: ../../godmode/reporting/map_builder.php:134 @@ -4434,9 +4443,9 @@ msgstr "Nueva consola visual" #: ../../godmode/reporting/visual_console_favorite.php:131 #: ../../godmode/reporting/visual_console_favorite.php:137 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 -#: ../../operation/users/user_edit.php:360 -#: ../../operation/visual_console/view.php:232 ../../operation/menu.php:182 -#: ../../operation/menu.php:186 +#: ../../operation/users/user_edit.php:434 +#: ../../operation/visual_console/view.php:232 ../../operation/menu.php:186 +#: ../../operation/menu.php:190 msgid "Visual console" msgstr "Consola visual" @@ -4464,6 +4473,7 @@ msgstr "No hay ningún servidor configurado en la base de datos" #: ../../godmode/reporting/reporting_builder.item_editor.php:78 #: ../../godmode/servers/servers.build_table.php:82 #: ../../include/functions_reporting_html.php:1593 +#: ../../include/functions_menu.php:834 #: ../../include/functions_snmp_browser.php:746 #: ../../general/reporting_console_node.php:69 msgid "Version" @@ -4489,7 +4499,7 @@ msgstr "Versión" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:244 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 -#: ../../enterprise/include/functions_reporting_pdf.php:886 +#: ../../enterprise/include/functions_reporting_pdf.php:887 #: ../../enterprise/include/functions_policies.php:3723 #: ../../enterprise/operation/agentes/tag_view.php:606 #: ../../enterprise/operation/services/massive/services.create.php:989 @@ -4497,7 +4507,7 @@ msgstr "Versión" #: ../../enterprise/operation/services/services.service_map.php:163 #: ../../extensions/agents_modules.php:758 #: ../../godmode/agentes/configurar_agente.php:417 -#: ../../godmode/agentes/configurar_agente.php:735 +#: ../../godmode/agentes/configurar_agente.php:748 #: ../../godmode/agentes/modificar_agente.php:814 #: ../../godmode/agentes/planned_downtime.list.php:85 #: ../../godmode/agentes/planned_downtime.list.php:115 @@ -4517,7 +4527,7 @@ msgstr "Versión" #: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 #: ../../mobile/operation/agent.php:327 #: ../../include/functions_reporting_html.php:2005 -#: ../../include/functions_reporting_html.php:5556 +#: ../../include/functions_reporting_html.php:5575 #: ../../include/functions_reports.php:733 #: ../../include/functions_reports.php:737 #: ../../include/functions_reports.php:741 @@ -4671,7 +4681,7 @@ msgid "Successfully update" msgstr "Actualizado correctamente" #: ../../enterprise/meta/advanced/metasetup.visual.php:98 -#: ../../godmode/menu.php:353 ../../godmode/setup/setup.php:137 +#: ../../godmode/menu.php:356 ../../godmode/setup/setup.php:137 #: ../../godmode/setup/setup.php:266 msgid "Visual styles" msgstr "Estilos visuales" @@ -4679,7 +4689,7 @@ msgstr "Estilos visuales" #: ../../enterprise/meta/advanced/metasetup.visual.php:105 #: ../../enterprise/meta/include/functions_meta.php:1329 #: ../../godmode/setup/setup_visuals.php:1310 -#: ../../include/functions_config.php:962 +#: ../../include/functions_config.php:943 msgid "Date format string" msgstr "Formato de fecha a mostrar" @@ -4710,19 +4720,19 @@ msgstr "Modo compacto" #: ../../enterprise/meta/advanced/metasetup.visual.php:166 #: ../../godmode/setup/setup_visuals.php:699 -#: ../../include/functions_config.php:970 +#: ../../include/functions_config.php:951 msgid "Graph color #1" msgstr "Color de la gráfica #1" #: ../../enterprise/meta/advanced/metasetup.visual.php:176 #: ../../godmode/setup/setup_visuals.php:710 -#: ../../include/functions_config.php:974 +#: ../../include/functions_config.php:955 msgid "Graph color #2" msgstr "Color de la gráfica #2" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 #: ../../godmode/setup/setup_visuals.php:721 -#: ../../include/functions_config.php:978 +#: ../../include/functions_config.php:959 msgid "Graph color #3" msgstr "Color de la gráfica #3" @@ -4751,18 +4761,18 @@ msgstr "Mostrar el percentil 95 en los gráficos" #: ../../enterprise/meta/advanced/metasetup.visual.php:232 #: ../../enterprise/meta/include/functions_meta.php:1464 #: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:1010 +#: ../../include/functions_config.php:991 msgid "Value to interface graphics" msgstr "Valor para la interfaz gráfica" #: ../../enterprise/meta/advanced/metasetup.visual.php:242 #: ../../enterprise/meta/include/functions_meta.php:1477 -#: ../../godmode/users/configure_user.php:1363 +#: ../../godmode/users/configure_user.php:1422 #: ../../godmode/massive/massive_edit_users.php:264 #: ../../godmode/setup/setup_visuals.php:66 -#: ../../godmode/events/event_edit_filter.php:419 -#: ../../include/functions_config.php:1027 -#: ../../operation/users/user_edit.php:311 +#: ../../godmode/events/event_edit_filter.php:429 +#: ../../include/functions_config.php:1008 +#: ../../operation/users/user_edit.php:385 msgid "Block size for pagination" msgstr "Tamaño de bloque para la paginación" @@ -4775,20 +4785,20 @@ msgstr "Número de elementos en gráfica personalizada" #: ../../enterprise/meta/advanced/metasetup.visual.php:265 #: ../../enterprise/meta/include/functions_meta.php:1487 #: ../../godmode/setup/setup_visuals.php:884 -#: ../../include/functions_config.php:1031 +#: ../../include/functions_config.php:1012 msgid "Use round corners" msgstr "Usar bordes redondeados" #: ../../enterprise/meta/advanced/metasetup.visual.php:273 #: ../../enterprise/meta/include/functions_meta.php:1498 #: ../../godmode/setup/setup_visuals.php:893 -#: ../../include/functions_config.php:1035 +#: ../../include/functions_config.php:1016 msgid "Chart fit to content" msgstr "Tabla adaptada al contenido" #: ../../enterprise/meta/advanced/metasetup.visual.php:281 #: ../../enterprise/meta/include/functions_meta.php:1509 -#: ../../include/functions_config.php:1247 +#: ../../include/functions_config.php:1228 msgid "Disable help" msgstr "Deshabilitar ayuda" @@ -4820,8 +4830,10 @@ msgstr "Deshabilitar ayuda" #: ../../enterprise/godmode/policies/policy_queue.php:608 #: ../../enterprise/godmode/policies/policy_queue.php:619 #: ../../enterprise/godmode/policies/policy_queue.php:692 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:367 -#: ../../enterprise/godmode/policies/policy_agents.php:833 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:369 +#: ../../enterprise/godmode/policies/policy_agents.php:506 +#: ../../enterprise/godmode/policies/policy_agents.php:524 +#: ../../enterprise/godmode/policies/policy_agents.php:869 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 #: ../../enterprise/godmode/setup/setup_acl.php:487 @@ -4842,29 +4854,21 @@ msgstr "Deshabilitar ayuda" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2887 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2914 #: ../../enterprise/include/class/ManageBackups.class.php:191 -#: ../../enterprise/include/functions_metaconsole.php:881 #: ../../enterprise/include/functions_metaconsole.php:882 -#: ../../enterprise/include/functions_metaconsole.php:1239 -#: ../../enterprise/include/functions_ipam.php:1688 -#: ../../enterprise/include/functions_ipam.php:1733 +#: ../../enterprise/include/functions_metaconsole.php:883 +#: ../../enterprise/include/functions_metaconsole.php:1240 +#: ../../enterprise/include/functions_ipam.php:1696 +#: ../../enterprise/include/functions_ipam.php:1741 #: ../../enterprise/operation/agentes/tag_view.php:145 #: ../../enterprise/operation/agentes/tag_view.php:171 #: ../../enterprise/operation/agentes/tag_view.php:237 #: ../../enterprise/operation/agentes/tag_view.php:301 #: ../../enterprise/operation/agentes/tag_view.php:304 #: ../../enterprise/operation/agentes/tag_view.php:390 -#: ../../enterprise/operation/agentes/agent_inventory.php:122 #: ../../enterprise/operation/log/log_viewer.php:621 #: ../../enterprise/operation/log/log_viewer.php:639 #: ../../enterprise/operation/log/log_viewer.php:689 #: ../../enterprise/operation/snmpconsole/snmp_view.php:33 -#: ../../enterprise/operation/inventory/inventory.php:75 -#: ../../enterprise/operation/inventory/inventory.php:76 -#: ../../enterprise/operation/inventory/inventory.php:155 -#: ../../enterprise/operation/inventory/inventory.php:156 -#: ../../enterprise/operation/inventory/inventory.php:332 -#: ../../enterprise/operation/inventory/inventory.php:360 -#: ../../enterprise/operation/inventory/inventory.php:369 #: ../../extensions/agents_modules.php:416 #: ../../extensions/files_repo/files_repo_form.php:46 #: ../../godmode/modules/manage_network_templates_form.php:303 @@ -4884,9 +4888,9 @@ msgstr "Deshabilitar ayuda" #: ../../godmode/alerts/alert_list.list.php:146 #: ../../godmode/alerts/alert_list.list.php:155 #: ../../godmode/alerts/alert_templates.php:308 -#: ../../godmode/alerts/alert_list.php:467 -#: ../../godmode/alerts/alert_list.php:516 -#: ../../godmode/alerts/alert_list.php:530 ../../godmode/setup/gis_step_2.php:218 +#: ../../godmode/alerts/alert_list.php:485 +#: ../../godmode/alerts/alert_list.php:534 +#: ../../godmode/alerts/alert_list.php:548 ../../godmode/setup/gis_step_2.php:218 #: ../../godmode/setup/setup_visuals.php:951 #: ../../godmode/reporting/reporting_builder.list_items.php:209 #: ../../godmode/reporting/reporting_builder.list_items.php:211 @@ -4907,16 +4911,16 @@ msgstr "Deshabilitar ayuda" #: ../../godmode/reporting/reporting_builder.item_editor.php:3903 #: ../../godmode/reporting/visual_console_builder.wizard.php:340 #: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../godmode/events/event_edit_filter.php:340 -#: ../../godmode/events/event_edit_filter.php:355 -#: ../../godmode/events/event_edit_filter.php:647 +#: ../../godmode/events/event_edit_filter.php:350 +#: ../../godmode/events/event_edit_filter.php:365 +#: ../../godmode/events/event_edit_filter.php:657 #: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68 #: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304 #: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72 #: ../../mobile/operation/events.php:974 ../../mobile/operation/events.php:984 #: ../../mobile/operation/events.php:1460 ../../mobile/operation/events.php:1489 -#: ../../include/functions.php:1091 ../../include/functions.php:1351 -#: ../../include/ajax/events.php:518 ../../include/functions_groupview.php:96 +#: ../../include/functions.php:1117 ../../include/functions.php:1377 +#: ../../include/ajax/events.php:519 ../../include/functions_groupview.php:96 #: ../../include/functions_modules.php:3576 #: ../../include/functions_modules.php:3578 ../../include/functions_users.php:420 #: ../../include/functions_users.php:678 @@ -4930,8 +4934,8 @@ msgstr "Deshabilitar ayuda" #: ../../include/class/SnmpConsole.class.php:371 #: ../../include/class/AuditLog.class.php:202 #: ../../include/class/AuditLog.class.php:212 -#: ../../include/functions_reporting.php:3121 -#: ../../include/functions_reporting.php:3218 +#: ../../include/functions_reporting.php:3239 +#: ../../include/functions_reporting.php:3336 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 #: ../../include/lib/Dashboard/Widgets/tree_view.php:384 @@ -4942,6 +4946,7 @@ msgstr "Deshabilitar ayuda" #: ../../operation/agentes/status_monitor.php:651 #: ../../operation/agentes/estado_monitores.php:520 #: ../../operation/agentes/estado_monitores.php:565 +#: ../../operation/agentes/agent_inventory.php:122 #: ../../operation/agentes/alerts_status.functions.php:96 #: ../../operation/agentes/alerts_status.functions.php:115 #: ../../operation/agentes/alerts_status.functions.php:125 @@ -4950,6 +4955,13 @@ msgstr "Deshabilitar ayuda" #: ../../operation/incidents/list_integriaims_incidents.php:337 #: ../../operation/incidents/list_integriaims_incidents.php:354 #: ../../operation/incidents/list_integriaims_incidents.php:365 +#: ../../operation/inventory/inventory.php:75 +#: ../../operation/inventory/inventory.php:76 +#: ../../operation/inventory/inventory.php:158 +#: ../../operation/inventory/inventory.php:159 +#: ../../operation/inventory/inventory.php:335 +#: ../../operation/inventory/inventory.php:363 +#: ../../operation/inventory/inventory.php:372 #: ../../operation/events/events.php:810 ../../operation/events/events.php:1670 #: ../../operation/events/events.php:1759 ../../operation/events/events.php:1990 #: ../../general/subselect_data_module.php:62 @@ -5001,11 +5013,11 @@ msgstr "Tipo de gráficos de módulos" #: ../../godmode/reporting/create_container.php:358 #: ../../godmode/reporting/graph_builder.main.php:214 #: ../../include/functions_visual_map_editor.php:558 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 #: ../../operation/agentes/graphs.php:236 ../../operation/agentes/graphs.php:243 #: ../../operation/agentes/graphs.php:408 ../../operation/agentes/graphs.php:426 -#: ../../operation/reporting/graph_viewer.php:370 +#: ../../operation/reporting/graph_viewer.php:342 msgid "Area" msgstr "Área" @@ -5019,12 +5031,12 @@ msgstr "Área" #: ../../include/functions_visual_map_editor.php:72 #: ../../include/functions_visual_map_editor.php:557 #: ../../include/functions_visual_map_editor.php:1399 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 #: ../../operation/visual_console/view.php:363 #: ../../operation/agentes/graphs.php:238 ../../operation/agentes/graphs.php:244 #: ../../operation/agentes/graphs.php:416 ../../operation/agentes/graphs.php:430 -#: ../../operation/reporting/graph_viewer.php:372 +#: ../../operation/reporting/graph_viewer.php:344 msgid "Line" msgstr "Línea" @@ -5041,8 +5053,8 @@ msgstr "Número de elementos recuperados para cada instancia en algunas vistas" #: ../../enterprise/meta/advanced/metasetup.visual.php:849 #: ../../enterprise/meta/advanced/metasetup.visual.php:850 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:439 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:453 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:466 #: ../../enterprise/include/ajax/log_viewer.ajax.php:274 #: ../../godmode/snmpconsole/snmp_alert.php:1102 #: ../../godmode/setup/setup_visuals.php:1031 @@ -5050,12 +5062,12 @@ msgstr "Número de elementos recuperados para cada instancia en algunas vistas" #: ../../godmode/setup/setup_visuals.php:1417 #: ../../include/functions_visual_map_editor.php:1223 #: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/functions.php:495 ../../include/functions.php:626 -#: ../../include/ajax/events.php:2256 ../../include/ajax/events.php:2257 -#: ../../include/ajax/events.php:2258 ../../include/ajax/events.php:2259 -#: ../../include/ajax/events.php:2263 ../../include/ajax/events.php:2264 -#: ../../include/ajax/events.php:2265 ../../include/ajax/events.php:2266 +#: ../../include/functions.php:499 ../../include/functions.php:630 #: ../../include/ajax/events.php:2267 ../../include/ajax/events.php:2268 +#: ../../include/ajax/events.php:2269 ../../include/ajax/events.php:2270 +#: ../../include/ajax/events.php:2274 ../../include/ajax/events.php:2275 +#: ../../include/ajax/events.php:2276 ../../include/ajax/events.php:2277 +#: ../../include/ajax/events.php:2278 ../../include/ajax/events.php:2279 #: ../../include/functions_html.php:2103 #: ../../include/class/AgentsAlerts.class.php:387 #: ../../operation/events/sound_events.php:199 @@ -5086,15 +5098,15 @@ msgstr "segundos" #: ../../include/functions_visual_map_editor.php:1226 #: ../../include/functions_visual_map_editor.php:1227 #: ../../include/functions_visual_map_editor.php:1228 -#: ../../include/functions.php:499 ../../include/functions.php:630 +#: ../../include/functions.php:503 ../../include/functions.php:634 #: ../../include/functions_html.php:2104 msgid "minutes" msgstr "minutos" #: ../../enterprise/meta/advanced/metasetup.visual.php:384 #: ../../enterprise/include/ajax/log_viewer.ajax.php:278 -#: ../../godmode/setup/setup_visuals.php:1419 ../../include/functions.php:500 -#: ../../include/functions.php:631 ../../include/functions_snmp.php:402 +#: ../../godmode/setup/setup_visuals.php:1419 ../../include/functions.php:504 +#: ../../include/functions.php:635 ../../include/functions_snmp.php:402 #: ../../include/functions_html.php:2105 msgid "hours" msgstr "horas" @@ -5102,20 +5114,20 @@ msgstr "horas" #: ../../enterprise/meta/advanced/metasetup.visual.php:385 #: ../../enterprise/include/ajax/log_viewer.ajax.php:280 #: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 -#: ../../godmode/setup/setup_visuals.php:1420 ../../include/functions.php:496 -#: ../../include/functions.php:627 ../../include/functions_html.php:2106 +#: ../../godmode/setup/setup_visuals.php:1420 ../../include/functions.php:500 +#: ../../include/functions.php:631 ../../include/functions_html.php:2106 msgid "days" msgstr "días" #: ../../enterprise/meta/advanced/metasetup.visual.php:386 -#: ../../godmode/setup/setup_visuals.php:1421 ../../include/functions.php:497 -#: ../../include/functions.php:628 ../../include/functions_html.php:2108 +#: ../../godmode/setup/setup_visuals.php:1421 ../../include/functions.php:501 +#: ../../include/functions.php:632 ../../include/functions_html.php:2108 msgid "months" msgstr "meses" #: ../../enterprise/meta/advanced/metasetup.visual.php:387 -#: ../../godmode/setup/setup_visuals.php:1422 ../../include/functions.php:498 -#: ../../include/functions.php:629 ../../include/functions_html.php:2109 +#: ../../godmode/setup/setup_visuals.php:1422 ../../include/functions.php:502 +#: ../../include/functions.php:633 ../../include/functions_html.php:2109 msgid "years" msgstr "años" @@ -5130,14 +5142,13 @@ msgstr "Añadir nuevo valor personalizado para intervalos" #: ../../enterprise/meta/include/functions_wizard_meta.php:1365 #: ../../enterprise/godmode/agentes/collection_manager.php:113 #: ../../enterprise/godmode/agentes/collection_manager.php:142 -#: ../../enterprise/godmode/agentes/inventory_manager.php:185 #: ../../enterprise/godmode/agentes/plugins_manager.php:163 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230 #: ../../enterprise/godmode/policies/policy_plugins.php:162 #: ../../enterprise/godmode/policies/policy_alerts.php:605 #: ../../enterprise/godmode/policies/policy_alerts.php:670 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:616 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:712 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:618 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:714 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 #: ../../enterprise/godmode/policies/policy_collections.php:267 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 @@ -5168,6 +5179,7 @@ msgstr "Añadir nuevo valor personalizado para intervalos" #: ../../extensions/files_repo/files_repo_form.php:105 #: ../../godmode/modules/manage_network_templates_form.php:347 #: ../../godmode/users/configure_profile.php:403 +#: ../../godmode/agentes/inventory_manager.php:185 #: ../../godmode/agentes/planned_downtime.editor.php:1168 #: ../../godmode/agentes/planned_downtime.editor.php:1341 #: ../../godmode/snmpconsole/snmp_alert.php:1494 @@ -5178,8 +5190,8 @@ msgstr "Añadir nuevo valor personalizado para intervalos" #: ../../godmode/setup/setup_visuals.php:1447 #: ../../godmode/reporting/graph_builder.graph_editor.php:352 #: ../../godmode/reporting/visual_console_builder.wizard.php:531 -#: ../../godmode/events/event_edit_filter.php:555 -#: ../../godmode/events/event_edit_filter.php:608 +#: ../../godmode/events/event_edit_filter.php:565 +#: ../../godmode/events/event_edit_filter.php:618 #: ../../godmode/servers/plugin.php:890 #: ../../include/functions_notifications.php:962 #: ../../include/class/SatelliteAgent.class.php:1168 @@ -5193,7 +5205,7 @@ msgstr "Añadir" #: ../../enterprise/meta/advanced/metasetup.visual.php:420 #: ../../enterprise/meta/include/functions_meta.php:1798 #: ../../godmode/setup/setup_visuals.php:1432 -#: ../../include/functions_config.php:1418 +#: ../../include/functions_config.php:1399 msgid "Delete interval" msgstr "Borrar intervalo" @@ -5204,35 +5216,35 @@ msgid "Show only the group name" msgstr "Mostrar solo el nombre del grupo" #: ../../enterprise/meta/advanced/metasetup.visual.php:456 -#: ../../include/functions_config.php:1275 +#: ../../include/functions_config.php:1256 msgid "Show the group name instead the group icon." msgstr "Mostrar el nombre del grupo en lugar de icono del grupo" #: ../../enterprise/meta/advanced/metasetup.visual.php:466 #: ../../enterprise/meta/include/functions_meta.php:1890 #: ../../godmode/setup/setup_visuals.php:88 -#: ../../include/functions_config.php:1299 +#: ../../include/functions_config.php:1280 msgid "Display data of proc modules in other format" msgstr "Mostrar los datos de los módulos proc en otro formato" #: ../../enterprise/meta/advanced/metasetup.visual.php:474 #: ../../enterprise/meta/include/functions_meta.php:1900 #: ../../godmode/setup/setup_visuals.php:97 -#: ../../include/functions_config.php:1303 +#: ../../include/functions_config.php:1284 msgid "Display text proc modules have state is ok" msgstr "Texto mostrado cuando el estado del módulo proc es OK" #: ../../enterprise/meta/advanced/metasetup.visual.php:484 #: ../../enterprise/meta/include/functions_meta.php:1910 #: ../../godmode/setup/setup_visuals.php:101 -#: ../../include/functions_config.php:1307 +#: ../../include/functions_config.php:1288 msgid "Display text when proc modules have state critical" msgstr "Texto mostrado cuando el estado del módulo proc es Crítico" #: ../../enterprise/meta/advanced/metasetup.visual.php:503 #: ../../enterprise/meta/include/functions_meta.php:1629 #: ../../godmode/setup/setup_visuals.php:191 -#: ../../include/functions_config.php:1055 +#: ../../include/functions_config.php:1036 msgid "Custom favicon" msgstr "Personalizar favicon" @@ -5282,7 +5294,7 @@ msgstr "Splash personalizado (inicio de sesión)" #: ../../enterprise/meta/advanced/metasetup.visual.php:795 #: ../../enterprise/meta/include/functions_meta.php:1659 #: ../../godmode/setup/setup_visuals.php:508 -#: ../../include/functions_config.php:1131 +#: ../../include/functions_config.php:1112 msgid "Product name" msgstr "Nombre del producto" @@ -5290,7 +5302,7 @@ msgstr "Nombre del producto" #: ../../enterprise/meta/advanced/metasetup.visual.php:805 #: ../../enterprise/meta/include/functions_meta.php:1669 #: ../../godmode/setup/setup_visuals.php:514 -#: ../../include/functions_config.php:1135 +#: ../../include/functions_config.php:1116 msgid "Copyright notice" msgstr "Aviso de copyright" @@ -5365,7 +5377,7 @@ msgstr "No hay chaché" #: ../../enterprise/meta/advanced/metasetup.visual.php:874 #: ../../enterprise/meta/include/functions_meta.php:1937 #: ../../godmode/setup/setup_visuals.php:1056 -#: ../../include/functions_config.php:1179 +#: ../../include/functions_config.php:1160 msgid "Default interval for refresh on Visual Console" msgstr "Intervalo de actualización por defecto en la consola visual" @@ -5396,7 +5408,7 @@ msgstr "Utilizar siempre 1024" #: ../../enterprise/meta/advanced/metasetup.visual.php:923 #: ../../enterprise/meta/include/functions_meta.php:1942 #: ../../godmode/setup/setup_visuals.php:1098 -#: ../../include/functions_config.php:1195 +#: ../../include/functions_config.php:1176 msgid "Mobile view not allow visual console orientation" msgstr "No permitir orientación de la consola visual en la vista móvil" @@ -5433,14 +5445,14 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:971 #: ../../enterprise/meta/include/functions_meta.php:1424 #: ../../godmode/setup/setup_visuals.php:1151 -#: ../../include/functions_config.php:1449 +#: ../../include/functions_config.php:1430 msgid "PDF font size (px)" msgstr "Tamaño de fuente de PDF (px)" #: ../../enterprise/meta/advanced/metasetup.visual.php:974 #: ../../enterprise/meta/include/functions_meta.php:1414 #: ../../godmode/setup/setup_visuals.php:1156 -#: ../../include/functions_config.php:1445 +#: ../../include/functions_config.php:1426 msgid "HTML font size for SLA (em)" msgstr "Tamaño de fuente en SLA (em)" @@ -5461,14 +5473,14 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:996 #: ../../enterprise/meta/include/functions_meta.php:1444 #: ../../godmode/setup/setup_visuals.php:1475 -#: ../../include/functions_config.php:1477 +#: ../../include/functions_config.php:1458 msgid "CSV divider" msgstr "Separador CSV" #: ../../enterprise/meta/advanced/metasetup.visual.php:1036 #: ../../enterprise/meta/include/functions_meta.php:1454 #: ../../godmode/setup/setup_visuals.php:1521 -#: ../../include/functions_config.php:1481 +#: ../../include/functions_config.php:1462 msgid "CSV decimal separator" msgstr "Separador decimal CSV" @@ -5501,12 +5513,12 @@ msgstr "" #: ../../godmode/setup/setup_visuals.php:1217 #: ../../godmode/setup/setup_visuals.php:1237 #: ../../godmode/setup/setup_visuals.php:1253 -#: ../../include/functions_config.php:1453 -#: ../../include/functions_config.php:1457 -#: ../../include/functions_config.php:1461 -#: ../../include/functions_config.php:1465 -#: ../../include/functions_config.php:1469 -#: ../../include/functions_config.php:1473 +#: ../../include/functions_config.php:1434 +#: ../../include/functions_config.php:1438 +#: ../../include/functions_config.php:1442 +#: ../../include/functions_config.php:1446 +#: ../../include/functions_config.php:1450 +#: ../../include/functions_config.php:1454 msgid "Custom report front" msgstr "Portada de informe personalizado" @@ -5516,8 +5528,8 @@ msgstr "Portada de informe personalizado" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 #: ../../godmode/setup/setup_visuals.php:1194 -#: ../../include/functions_config.php:1059 -#: ../../include/functions_config.php:1461 +#: ../../include/functions_config.php:1040 +#: ../../include/functions_config.php:1442 msgid "Custom logo" msgstr "Logo personalizado" @@ -5537,7 +5549,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:143 #: ../../godmode/setup/setup_visuals.php:1217 -#: ../../include/functions_config.php:1465 +#: ../../include/functions_config.php:1446 msgid "Header" msgstr "Encabezado" @@ -5546,7 +5558,7 @@ msgstr "Encabezado" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:153 #: ../../godmode/setup/setup_visuals.php:1237 -#: ../../include/functions_config.php:1469 +#: ../../include/functions_config.php:1450 msgid "First page" msgstr "Primera página" @@ -5619,12 +5631,12 @@ msgid " please remove configuration file from target node." msgstr " por favor, borra el archivo de configuración del nodo de destino." #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:166 -#: ../../enterprise/include/functions_metaconsole.php:2856 +#: ../../enterprise/include/functions_metaconsole.php:2857 msgid "There are differences between MR versions" msgstr "Hay diferencias entre las versiones de las actualizaciones menores" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:170 -#: ../../enterprise/include/functions_metaconsole.php:2849 +#: ../../enterprise/include/functions_metaconsole.php:2850 msgid "Target server ip address is set" msgstr "Dirección IP del servidor de destino configurada" @@ -5680,8 +5692,8 @@ msgstr "Servidor de origen" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:472 #: ../../enterprise/godmode/policies/policy_agents.php:454 #: ../../enterprise/godmode/policies/policy_agents.php:485 -#: ../../enterprise/godmode/policies/policy_agents.php:549 -#: ../../enterprise/godmode/policies/policy_agents.php:814 +#: ../../enterprise/godmode/policies/policy_agents.php:585 +#: ../../enterprise/godmode/policies/policy_agents.php:850 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115 #: ../../godmode/massive/massive_copy_modules.php:112 #: ../../godmode/massive/massive_copy_modules.php:265 @@ -5704,8 +5716,8 @@ msgstr "Recursión de grupos" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:359 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:475 -#: ../../enterprise/godmode/policies/policy_agents.php:499 -#: ../../enterprise/godmode/policies/policy_agents.php:513 +#: ../../enterprise/godmode/policies/policy_agents.php:535 +#: ../../enterprise/godmode/policies/policy_agents.php:549 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264 @@ -5815,8 +5827,8 @@ msgstr "Comprueba que la IP del servidor de destino está configurada." #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:578 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 -#: ../../enterprise/include/functions_inventory.php:142 -#: ../../enterprise/include/functions_inventory.php:176 +#: ../../include/functions_inventory.php:142 +#: ../../include/functions_inventory.php:176 #: ../../include/functions_events.php:250 msgid "Agent alias" msgstr "Alias del agente" @@ -5847,8 +5859,8 @@ msgstr "Nodo de destino" #: ../../godmode/alerts/alert_view.php:124 #: ../../godmode/setup/setup_integria.php:379 #: ../../godmode/setup/setup_integria.php:501 -#: ../../include/functions_reporting_html.php:5268 -#: ../../include/functions_events.php:4419 +#: ../../include/functions_reporting_html.php:5287 +#: ../../include/functions_events.php:4398 #: ../../operation/agentes/estado_generalagente.php:667 #: ../../operation/incidents/integriaims_export_csv.php:85 #: ../../operation/incidents/configure_integriaims_incident.php:296 @@ -5859,28 +5871,28 @@ msgid "Priority" msgstr "Prioridad" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 -#: ../../enterprise/meta/include/functions_meta.php:2154 +#: ../../enterprise/meta/include/functions_meta.php:2135 #: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:825 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1130 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1225 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1860 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2185 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2616 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2629 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2957 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3134 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3224 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3263 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3328 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:835 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1141 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1236 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1588 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1885 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2214 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2645 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2658 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2986 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3163 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3253 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3292 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3357 #: ../../godmode/alerts/configure_alert_template.php:228 #: ../../godmode/alerts/configure_alert_template.php:232 #: ../../godmode/alerts/configure_alert_template.php:249 #: ../../godmode/alerts/configure_alert_template.php:253 #: ../../godmode/alerts/configure_alert_template.php:270 #: ../../godmode/alerts/configure_alert_template.php:274 -#: ../../include/functions_config.php:1650 +#: ../../include/functions_config.php:1631 msgid "Step" msgstr "Paso" @@ -5919,10 +5931,10 @@ msgstr "Creando agente en el nodo de destino" #: ../../enterprise/include/class/LogSource.class.php:800 #: ../../enterprise/include/class/ManageBackups.class.php:484 #: ../../enterprise/include/class/ManageBackups.class.php:489 -#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/include/functions_ux_console.php:483 #: ../../enterprise/operation/agentes/ux_console_view.php:210 -#: ../../enterprise/operation/agentes/ux_console_view.php:352 -#: ../../enterprise/operation/agentes/wux_console_view.php:452 +#: ../../enterprise/operation/agentes/ux_console_view.php:359 +#: ../../enterprise/operation/agentes/wux_console_view.php:431 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1060 #: ../../include/ajax/snmp_browser.ajax.php:259 #: ../../include/class/ConfigPEN.class.php:744 @@ -5930,7 +5942,7 @@ msgstr "Creando agente en el nodo de destino" #: ../../include/class/SatelliteAgent.class.php:1076 #: ../../include/class/SatelliteAgent.class.php:1081 #: ../../include/class/HelpFeedBack.class.php:355 -#: ../../include/class/Diagnostics.class.php:2089 +#: ../../include/class/Diagnostics.class.php:2094 #: ../../include/class/CredentialStore.class.php:1619 #: ../../include/class/CredentialStore.class.php:1624 #: ../../include/class/ModuleTemplates.class.php:1425 @@ -5953,9 +5965,9 @@ msgstr "Fallo" #: ../../enterprise/godmode/policies/policy_queue.php:674 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443 #: ../../enterprise/include/class/Omnishell.class.php:362 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4146 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4171 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4290 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4444 msgid "Finished" msgstr "Terminado" @@ -6010,9 +6022,9 @@ msgstr "No se ha podido actualizar la cadena de traducción" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 #: ../../enterprise/extensions/translate_string.php:302 -#: ../../godmode/users/configure_user.php:1080 +#: ../../godmode/users/configure_user.php:1139 #: ../../godmode/massive/massive_edit_users.php:249 -#: ../../operation/users/user_edit.php:328 +#: ../../operation/users/user_edit.php:402 msgid "Language" msgstr "Idioma" @@ -6034,19 +6046,15 @@ msgstr "Idioma" #: ../../enterprise/godmode/modules/local_components.php:576 #: ../../enterprise/godmode/modules/local_components.php:601 #: ../../enterprise/godmode/agentes/collection_manager.php:48 -#: ../../enterprise/godmode/agentes/collections.php:414 +#: ../../enterprise/godmode/agentes/collections.php:426 #: ../../enterprise/godmode/policies/policy_collections.php:254 -#: ../../enterprise/godmode/policies/policy_agents.php:822 -#: ../../enterprise/godmode/policies/policy_agents.php:835 +#: ../../enterprise/godmode/policies/policy_agents.php:858 +#: ../../enterprise/godmode/policies/policy_agents.php:871 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:151 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:162 #: ../../enterprise/operation/agentes/tag_view.php:219 -#: ../../enterprise/operation/agentes/agent_inventory.php:138 -#: ../../enterprise/operation/agentes/agent_inventory.php:140 #: ../../enterprise/operation/log/log_viewer.php:514 #: ../../enterprise/operation/log/log_viewer.php:797 -#: ../../enterprise/operation/inventory/inventory.php:374 -#: ../../enterprise/operation/inventory/inventory.php:427 #: ../../enterprise/operation/services/services.treeview_services.php:134 #: ../../enterprise/operation/services/services.list.php:225 #: ../../enterprise/operation/services/services.list.php:318 @@ -6062,8 +6070,8 @@ msgstr "Idioma" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 #: ../../extensions/module_groups.php:283 #: ../../godmode/modules/manage_network_components.php:681 -#: ../../godmode/groups/group_list.php:785 -#: ../../godmode/groups/group_list.php:795 ../../godmode/users/user_list.php:462 +#: ../../godmode/groups/group_list.php:790 +#: ../../godmode/groups/group_list.php:800 ../../godmode/users/user_list.php:462 #: ../../godmode/users/user_list.php:472 #: ../../godmode/agentes/modificar_agente.php:363 #: ../../godmode/agentes/modificar_agente.php:372 @@ -6096,6 +6104,10 @@ msgstr "Idioma" #: ../../operation/agentes/estado_agente.php:280 #: ../../operation/agentes/estado_agente.php:291 #: ../../operation/agentes/status_monitor.php:547 +#: ../../operation/agentes/agent_inventory.php:138 +#: ../../operation/agentes/agent_inventory.php:140 +#: ../../operation/inventory/inventory.php:377 +#: ../../operation/inventory/inventory.php:430 #: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "Buscar" @@ -6105,7 +6117,7 @@ msgstr "Buscar" #: ../../enterprise/extensions/translate_string.php:313 #: ../../enterprise/extensions/translate_string.php:314 #: ../../enterprise/godmode/agentes/collection_manager.php:42 -#: ../../enterprise/godmode/agentes/collections.php:410 +#: ../../enterprise/godmode/agentes/collections.php:422 #: ../../enterprise/godmode/policies/policies.php:330 #: ../../enterprise/godmode/policies/policy_collections.php:248 msgid "Free text for search (*)" @@ -6217,11 +6229,11 @@ msgstr "Mostrar lista de relaciones" #: ../../godmode/reporting/reporting_builder.item_editor.php:2662 #: ../../godmode/reporting/visual_console_builder.wizard.php:319 #: ../../include/functions_visual_map_editor.php:693 -#: ../../include/functions_reporting_html.php:944 +#: ../../include/functions_reporting_html.php:945 #: ../../include/functions_reporting_html.php:2371 #: ../../include/functions_reporting_html.php:4875 -#: ../../include/functions_reporting_html.php:5386 -#: ../../include/ajax/events.php:2077 ../../include/functions_graph.php:5398 +#: ../../include/functions_reporting_html.php:5405 +#: ../../include/ajax/events.php:2088 ../../include/functions_graph.php:5186 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 #: ../../include/functions_reports.php:1075 #: ../../include/functions_netflow.php:212 @@ -6239,7 +6251,6 @@ msgstr "Dirección del nodo" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 #: ../../enterprise/godmode/policies/policy_alerts.php:575 #: ../../enterprise/godmode/policies/policy_modules.php:1471 #: ../../enterprise/godmode/admin_access_logs.php:54 @@ -6261,11 +6272,12 @@ msgstr "Dirección del nodo" #: ../../enterprise/tools/ipam/ipam_list.php:663 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 #: ../../godmode/modules/manage_nc_groups.php:243 +#: ../../godmode/modules/manage_inventory_modules.php:284 #: ../../godmode/modules/manage_network_components.php:758 #: ../../godmode/modules/manage_network_templates.php:250 -#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/agent_template.php:239 #: ../../godmode/agentes/planned_downtime.editor.php:1294 -#: ../../godmode/agentes/module_manager.php:909 +#: ../../godmode/agentes/module_manager.php:910 #: ../../godmode/netflow/nf_item_list.php:178 #: ../../godmode/netflow/nf_edit.php:161 #: ../../godmode/snmpconsole/snmp_alert.php:1278 @@ -6285,8 +6297,8 @@ msgstr "Dirección del nodo" #: ../../godmode/events/event_filter.php:141 #: ../../mobile/operation/tactical.php:348 #: ../../include/functions_reporting_html.php:3357 -#: ../../include/functions_reporting_html.php:5906 -#: ../../include/functions.php:3073 ../../include/ajax/alert_list.ajax.php:294 +#: ../../include/functions_reporting_html.php:5925 +#: ../../include/functions.php:3099 ../../include/ajax/alert_list.ajax.php:294 #: ../../include/ajax/alert_list.ajax.php:319 #: ../../include/ajax/alert_list.ajax.php:495 #: ../../include/functions_profile.php:217 @@ -6315,7 +6327,7 @@ msgstr "Contraseñas" #: ../../enterprise/meta/advanced/metasetup.password.php:93 #: ../../enterprise/meta/include/functions_meta.php:356 -#: ../../enterprise/godmode/setup/setup.php:383 +#: ../../enterprise/godmode/setup/setup.php:299 #: ../../include/functions_config.php:472 msgid "Enable password policy" msgstr "Habilitar política de contraseñas" @@ -6359,7 +6371,7 @@ msgstr "Habilitar política de contraseñas" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2339 #: ../../godmode/update_manager/update_manager.setup.php:372 -#: ../../godmode/users/configure_user.php:1279 +#: ../../godmode/users/configure_user.php:1338 #: ../../godmode/agentes/agent_conf_gis.php:126 #: ../../godmode/massive/massive_edit_agents.php:671 #: ../../godmode/massive/massive_edit_agents.php:1084 @@ -6383,7 +6395,7 @@ msgstr "Habilitar política de contraseñas" #: ../../include/functions_cron.php:688 ../../include/functions_profile.php:297 #: ../../include/functions_snmp.php:390 #: ../../include/class/SnmpConsole.class.php:463 -#: ../../operation/users/user_edit.php:324 +#: ../../operation/users/user_edit.php:398 #: ../../operation/netflow/nf_live_view.php:460 msgid "Yes" msgstr "Sí" @@ -6428,7 +6440,7 @@ msgstr "Sí" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2339 #: ../../godmode/update_manager/update_manager.setup.php:373 -#: ../../godmode/users/configure_user.php:1280 +#: ../../godmode/users/configure_user.php:1339 #: ../../godmode/agentes/agent_conf_gis.php:127 #: ../../godmode/massive/massive_edit_agents.php:672 #: ../../godmode/massive/massive_edit_agents.php:1095 @@ -6454,28 +6466,28 @@ msgstr "Sí" #: ../../include/functions_cron.php:688 ../../include/functions_profile.php:297 #: ../../include/functions_snmp.php:382 #: ../../include/class/SnmpConsole.class.php:462 -#: ../../include/functions_events.php:4790 -#: ../../include/functions_events.php:4795 -#: ../../operation/users/user_edit.php:325 +#: ../../include/functions_events.php:4769 +#: ../../include/functions_events.php:4774 +#: ../../operation/users/user_edit.php:399 #: ../../operation/netflow/nf_live_view.php:470 msgid "No" msgstr "No" #: ../../enterprise/meta/advanced/metasetup.password.php:115 #: ../../enterprise/meta/include/functions_meta.php:366 -#: ../../enterprise/godmode/setup/setup.php:392 +#: ../../enterprise/godmode/setup/setup.php:308 #: ../../include/functions_config.php:476 msgid "Min. size password" msgstr "Contraseña con tamaño mínimo" #: ../../enterprise/meta/advanced/metasetup.password.php:116 -#: ../../enterprise/godmode/setup/setup.php:400 +#: ../../enterprise/godmode/setup/setup.php:316 msgid " Caracters" msgstr " Caracteres" #: ../../enterprise/meta/advanced/metasetup.password.php:119 #: ../../enterprise/meta/include/functions_meta.php:396 -#: ../../enterprise/godmode/setup/setup.php:421 +#: ../../enterprise/godmode/setup/setup.php:337 #: ../../include/functions_config.php:480 msgid "Password expiration" msgstr "Expiración de contraseña" @@ -6485,25 +6497,25 @@ msgid "Set 0 if never expire." msgstr "Introduce 0 para que nunca expire." #: ../../enterprise/meta/advanced/metasetup.password.php:120 -#: ../../enterprise/godmode/setup/setup.php:429 +#: ../../enterprise/godmode/setup/setup.php:345 msgid " Days" msgstr " Días" #: ../../enterprise/meta/advanced/metasetup.password.php:123 #: ../../enterprise/meta/include/functions_meta.php:416 -#: ../../enterprise/godmode/setup/setup.php:441 +#: ../../enterprise/godmode/setup/setup.php:357 #: ../../include/functions_config.php:488 msgid "User blocked if login fails" msgstr "Usuario bloqueado si la identificación falla" #: ../../enterprise/meta/advanced/metasetup.password.php:124 -#: ../../enterprise/godmode/setup/setup.php:449 +#: ../../enterprise/godmode/setup/setup.php:365 msgid " Minutes" msgstr " Minutos" #: ../../enterprise/meta/advanced/metasetup.password.php:127 #: ../../enterprise/meta/include/functions_meta.php:426 -#: ../../enterprise/godmode/setup/setup.php:452 +#: ../../enterprise/godmode/setup/setup.php:368 #: ../../include/functions_config.php:492 msgid "Number of failed login attempts" msgstr "Número de intentos de identificación fallidos" @@ -6513,68 +6525,68 @@ msgid "Two attempts minimum" msgstr "2 intentos mínimo" #: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/godmode/setup/setup.php:460 +#: ../../enterprise/godmode/setup/setup.php:376 msgid " Attempts" msgstr " Intentos" #: ../../enterprise/meta/advanced/metasetup.password.php:131 #: ../../enterprise/meta/include/functions_meta.php:448 -#: ../../enterprise/godmode/setup/setup.php:481 +#: ../../enterprise/godmode/setup/setup.php:397 #: ../../include/functions_config.php:512 msgid "Compare previous password" msgstr "Comparar la contraseña anterior" #: ../../enterprise/meta/advanced/metasetup.password.php:135 #: ../../enterprise/meta/include/functions_meta.php:436 -#: ../../enterprise/godmode/setup/setup.php:472 +#: ../../enterprise/godmode/setup/setup.php:388 #: ../../include/functions_config.php:508 msgid "Enable password history" msgstr "Activar histórico de contraseñas" #: ../../enterprise/meta/advanced/metasetup.password.php:140 #: ../../enterprise/meta/include/functions_meta.php:459 -#: ../../enterprise/godmode/setup/setup.php:463 +#: ../../enterprise/godmode/setup/setup.php:379 #: ../../include/functions_config.php:504 msgid "Apply password policy to admin users" msgstr "Aplicar la política de contraseñas a los usuarios administradores" #: ../../enterprise/meta/advanced/metasetup.password.php:146 #: ../../enterprise/meta/include/functions_meta.php:406 -#: ../../enterprise/godmode/setup/setup.php:432 +#: ../../enterprise/godmode/setup/setup.php:348 #: ../../include/functions_config.php:484 msgid "Force change password on first login" msgstr "Forzar cambio de contraseña en el primer inicio de sesión" #: ../../enterprise/meta/advanced/metasetup.password.php:152 #: ../../enterprise/meta/include/functions_meta.php:376 -#: ../../enterprise/godmode/setup/setup.php:403 +#: ../../enterprise/godmode/setup/setup.php:319 #: ../../include/functions_config.php:496 msgid "Password must have numbers" msgstr "La contraseña debe contener números." #: ../../enterprise/meta/advanced/metasetup.password.php:156 #: ../../enterprise/meta/include/functions_meta.php:386 -#: ../../enterprise/godmode/setup/setup.php:412 +#: ../../enterprise/godmode/setup/setup.php:328 #: ../../include/functions_config.php:500 msgid "Password must have symbols" msgstr "La contraseña debe contener símbolos." #: ../../enterprise/meta/advanced/metasetup.password.php:160 #: ../../enterprise/meta/include/functions_meta.php:470 -#: ../../enterprise/godmode/setup/setup.php:493 +#: ../../enterprise/godmode/setup/setup.php:409 #: ../../include/functions_config.php:516 msgid "Activate reset password" msgstr "Activar reseteo de contraseña" #: ../../enterprise/meta/advanced/metasetup.password.php:165 #: ../../enterprise/meta/include/functions_meta.php:480 -#: ../../enterprise/godmode/setup/setup.php:504 +#: ../../enterprise/godmode/setup/setup.php:420 #: ../../include/functions_config.php:520 msgid "Exclusion word list for passwords" msgstr "Lista de contraseñas prohibidas" #: ../../enterprise/meta/advanced/metasetup.password.php:193 -#: ../../enterprise/godmode/setup/setup.php:574 +#: ../../enterprise/godmode/setup/setup.php:497 msgid "Enter restricted passwords..." msgstr "Introduzca contraseñas restringidas..." @@ -6590,7 +6602,7 @@ msgstr "Introduzca contraseñas restringidas..." #: ../../enterprise/include/class/CommandCenter.class.php:142 #: ../../godmode/netflow/nf_item_list.php:49 ../../godmode/netflow/nf_edit.php:53 #: ../../godmode/netflow/nf_edit_form.php:69 -#: ../../operation/agentes/ver_agente.php:1389 +#: ../../operation/agentes/ver_agente.php:1395 #: ../../operation/netflow/nf_live_view.php:149 msgid "Main" msgstr "Principal" @@ -6659,7 +6671,7 @@ msgstr "" "que dichos ajustes ignorarán los ajustes de la consola." #: ../../enterprise/meta/advanced/metasetup.mail.php:117 -#: ../../godmode/setup/setup_general.php:529 +#: ../../godmode/setup/setup_general.php:610 msgid "Mail configuration" msgstr "Configuración de email" @@ -6669,7 +6681,7 @@ msgid "From dir" msgstr "Desde dir" #: ../../enterprise/meta/advanced/metasetup.mail.php:125 -#: ../../godmode/setup/setup_general.php:549 +#: ../../godmode/setup/setup_general.php:630 #: ../../include/functions_config.php:380 msgid "From name" msgstr "Desde nombre" @@ -6685,29 +6697,29 @@ msgid "Port SMTP" msgstr "Puerto SMTP" #: ../../enterprise/meta/advanced/metasetup.mail.php:134 -#: ../../godmode/setup/setup_general.php:579 +#: ../../godmode/setup/setup_general.php:660 #: ../../include/functions_config.php:388 msgid "Encryption" msgstr "Encriptación" #: ../../enterprise/meta/advanced/metasetup.mail.php:140 #: ../../godmode/gis_maps/configure_gis_map.php:575 -#: ../../godmode/setup/setup_general.php:585 +#: ../../godmode/setup/setup_general.php:666 #: ../../godmode/reporting/create_container.php:294 #: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/events.php:1042 ../../include/ajax/graph.ajax.php:145 +#: ../../include/ajax/events.php:1043 ../../include/ajax/graph.ajax.php:145 #: ../../include/functions_html.php:4742 msgid "none" msgstr "ninguno" #: ../../enterprise/meta/advanced/metasetup.mail.php:145 -#: ../../godmode/setup/setup_general.php:590 +#: ../../godmode/setup/setup_general.php:671 #: ../../include/functions_config.php:392 msgid "Email user" msgstr "Usuario de email" #: ../../enterprise/meta/advanced/metasetup.mail.php:148 -#: ../../godmode/setup/setup_general.php:600 +#: ../../godmode/setup/setup_general.php:681 #: ../../include/functions_config.php:396 msgid "Email password" msgstr "Contraseña de email" @@ -6734,12 +6746,12 @@ msgstr "Configuración de contraseñas" #: ../../enterprise/operation/log/elasticsearch_interface.php:31 #: ../../enterprise/operation/log/log_viewer.php:378 #: ../../enterprise/operation/log/log_viewer.php:418 -#: ../../enterprise/operation/menu.php:164 +#: ../../enterprise/operation/menu.php:151 msgid "Log viewer" msgstr "Visor de logs" #: ../../enterprise/meta/advanced/metasetup.php:91 -#: ../../enterprise/godmode/menu.php:136 +#: ../../enterprise/godmode/menu.php:127 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 #: ../../operation/agentes/datos_agente.php:180 @@ -6747,7 +6759,7 @@ msgid "History database" msgstr "Base de datos histórica" #: ../../enterprise/meta/advanced/metasetup.php:102 -#: ../../enterprise/meta/advanced/metasetup.php:257 ../../godmode/menu.php:347 +#: ../../enterprise/meta/advanced/metasetup.php:257 ../../godmode/menu.php:350 #: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 msgid "Authentication" msgstr "Autentificación" @@ -6764,7 +6776,7 @@ msgstr "Configuración del rendimiento" #: ../../enterprise/meta/advanced/metasetup.php:128 #: ../../enterprise/meta/advanced/metasetup.php:227 -#: ../../enterprise/meta/advanced/metasetup.php:273 ../../godmode/menu.php:418 +#: ../../enterprise/meta/advanced/metasetup.php:273 ../../godmode/menu.php:421 #: ../../godmode/setup/file_manager.php:47 #: ../../godmode/setup/file_manager.php:60 msgid "File manager" @@ -6781,7 +6793,7 @@ msgid "Mail" msgstr "Correo electrónico" #: ../../enterprise/meta/advanced/metasetup.php:152 -#: ../../enterprise/meta/advanced/metasetup.php:285 ../../godmode/menu.php:371 +#: ../../enterprise/meta/advanced/metasetup.php:285 ../../godmode/menu.php:374 #: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 msgid "Notifications" msgstr "Notificaciones" @@ -6866,7 +6878,7 @@ msgstr "Aplicar políticas" #: ../../enterprise/meta/advanced/policymanager.apply.php:198 #: ../../enterprise/include/functions_groups.php:33 -#: ../../enterprise/operation/agentes/ver_agente.php:239 +#: ../../enterprise/operation/agentes/ver_agente.php:216 #: ../../include/functions_networkmap.php:1299 #: ../../include/functions_maps.php:42 #: ../../include/lib/Dashboard/Widgets/tree_view.php:333 @@ -6876,7 +6888,7 @@ msgid "Policies" msgstr "Políticas" #: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 ../../godmode/menu.php:294 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 ../../godmode/menu.php:297 #: ../../godmode/setup/os.php:225 #: ../../godmode/reporting/visual_console_builder.wizard.php:333 #: ../../mobile/include/functions_web.php:28 @@ -6886,8 +6898,8 @@ msgstr "Servidores" #: ../../enterprise/meta/advanced/policymanager.apply.php:213 #: ../../enterprise/meta/advanced/policymanager.queue.php:311 #: ../../enterprise/godmode/policies/policy_queue.php:714 -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/policies/policy_agents.php:890 +#: ../../enterprise/godmode/policies/policy_agents.php:1405 #: ../../include/functions_visual_map_editor.php:641 msgid "Apply" msgstr "Aplicar" @@ -6985,10 +6997,10 @@ msgstr "No se puede eliminar" #: ../../enterprise/godmode/policies/policy_modules.php:518 #: ../../enterprise/godmode/setup/setup_metaconsole.php:147 #: ../../godmode/users/user_list.php:432 -#: ../../godmode/agentes/configurar_agente.php:2208 +#: ../../godmode/agentes/configurar_agente.php:2224 #: ../../godmode/agentes/modificar_agente.php:234 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:373 +#: ../../godmode/alerts/alert_list.php:382 #: ../../include/ajax/alert_list.ajax.php:358 msgid "Successfully enabled" msgstr "Activado correctamente" @@ -6997,10 +7009,10 @@ msgstr "Activado correctamente" #: ../../enterprise/godmode/policies/policy_alerts.php:127 #: ../../enterprise/godmode/policies/policy_modules.php:519 #: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../godmode/agentes/configurar_agente.php:2209 +#: ../../godmode/agentes/configurar_agente.php:2225 #: ../../godmode/agentes/modificar_agente.php:235 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:374 +#: ../../godmode/alerts/alert_list.php:383 #: ../../include/ajax/alert_list.ajax.php:360 msgid "Could not be enabled" msgstr "No se pudo activar" @@ -7010,10 +7022,10 @@ msgstr "No se pudo activar" #: ../../enterprise/godmode/policies/policy_modules.php:535 #: ../../enterprise/godmode/setup/setup_metaconsole.php:156 #: ../../godmode/users/user_list.php:426 -#: ../../godmode/agentes/configurar_agente.php:2233 +#: ../../godmode/agentes/configurar_agente.php:2249 #: ../../godmode/agentes/modificar_agente.php:277 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/alerts/alert_list.php:400 +#: ../../godmode/alerts/alert_list.php:418 #: ../../include/ajax/alert_list.ajax.php:379 msgid "Successfully disabled" msgstr "Desactivado correctamente" @@ -7090,9 +7102,9 @@ msgstr "Edición de elemento de Metaconsola %s" #: ../../include/functions_visual_map_editor.php:193 #: ../../include/functions_visual_map_editor.php:779 #: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/functions_visual_map.php:4259 -#: ../../include/rest-api/models/VisualConsole/Item.php:1941 -#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../include/functions_visual_map.php:4210 +#: ../../include/rest-api/models/VisualConsole/Item.php:1942 +#: ../../include/rest-api/models/VisualConsole/Item.php:2136 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:325 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365 @@ -7186,7 +7198,7 @@ msgstr "Puerto de la BD" #: ../../enterprise/meta/advanced/metasetup.consoles.php:744 #: ../../enterprise/meta/advanced/metasetup.consoles.php:749 #: ../../enterprise/godmode/policies/policy_modules.php:413 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:609 #: ../../enterprise/godmode/setup/setup_history.php:265 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 @@ -7305,7 +7317,7 @@ msgstr "Sincronización de bases de datos" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 #: ../../enterprise/tools/ipam/ipam.php:426 ../../operation/search_agents.php:132 #: ../../operation/search_agents.php:133 -#: ../../operation/agentes/ver_agente.php:1369 +#: ../../operation/agentes/ver_agente.php:1375 msgid "Manage" msgstr "Gestionar" @@ -7348,20 +7360,20 @@ msgstr "Error al crear el enlace" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 #: ../../godmode/modules/manage_nc_groups.php:84 #: ../../godmode/users/profile_list.php:269 -#: ../../godmode/users/configure_user.php:554 -#: ../../godmode/agentes/configurar_agente.php:892 +#: ../../godmode/users/configure_user.php:568 +#: ../../godmode/agentes/configurar_agente.php:905 #: ../../godmode/agentes/planned_downtime.editor.php:652 #: ../../godmode/snmpconsole/snmp_alert.php:302 #: ../../godmode/snmpconsole/snmp_filters.php:164 -#: ../../godmode/alerts/alert_commands.php:658 +#: ../../godmode/alerts/alert_commands.php:659 #: ../../godmode/alerts/configure_alert_template.php:536 #: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:66 #: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:44 -#: ../../include/functions_alerts.php:2750 +#: ../../include/functions_alerts.php:2754 #: ../../include/class/CalendarManager.class.php:537 #: ../../include/class/CalendarManager.class.php:894 -#: ../../include/functions_planned_downtimes.php:114 -#: ../../include/functions_planned_downtimes.php:849 +#: ../../include/functions_planned_downtimes.php:115 +#: ../../include/functions_planned_downtimes.php:850 msgid "Successfully created" msgstr "Creado correctamente" @@ -7381,7 +7393,7 @@ msgstr "Error al modificar el enlace" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1333 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1359 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 @@ -7393,7 +7405,7 @@ msgstr "Error al modificar el enlace" #: ../../godmode/modules/manage_nc_groups.php:118 #: ../../godmode/users/profile_list.php:252 #: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1202 +#: ../../godmode/agentes/configurar_agente.php:1215 #: ../../godmode/agentes/planned_downtime.editor.php:654 #: ../../godmode/netflow/nf_edit_form.php:139 #: ../../godmode/snmpconsole/snmp_alert.php:444 @@ -7405,11 +7417,11 @@ msgstr "Error al modificar el enlace" #: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319 #: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39 #: ../../godmode/setup/links.php:63 -#: ../../godmode/events/event_edit_filter.php:232 -#: ../../include/functions_alerts.php:2750 +#: ../../godmode/events/event_edit_filter.php:242 +#: ../../include/functions_alerts.php:2754 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 -#: ../../include/functions_planned_downtimes.php:124 +#: ../../include/functions_planned_downtimes.php:125 msgid "Successfully updated" msgstr "Actualizado correctamente" @@ -7463,7 +7475,7 @@ msgstr "Aplicar políticas" #: ../../enterprise/godmode/policies/policies.php:509 #: ../../enterprise/godmode/policies/policy_collections.php:31 #: ../../enterprise/godmode/menu.php:58 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2188 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2217 #: ../../enterprise/include/functions_policies.php:3799 #: ../../godmode/servers/modificar_server.php:146 #: ../../general/first_task/collections.php:22 @@ -7539,10 +7551,9 @@ msgstr "Colecciones" #: ../../include/functions_reporting_html.php:2839 #: ../../include/functions_reporting_html.php:2912 #: ../../include/ajax/module.php:995 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_graph.php:3713 ../../include/functions_netflow.php:301 -#: ../../include/functions_reporting.php:4362 -#: ../../include/functions_reporting.php:4403 -#: ../../include/functions_reporting.php:5154 +#: ../../include/functions_graph.php:3504 ../../include/functions_netflow.php:301 +#: ../../include/functions_reporting.php:4625 +#: ../../include/functions_reporting.php:4666 #: ../../include/functions_events.php:218 ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:83 @@ -7615,7 +7626,7 @@ msgstr "Colección de ficheros creada correctamente" #: ../../enterprise/godmode/agentes/collections.editor.php:424 #: ../../enterprise/godmode/agentes/collections.editor.php:446 #: ../../enterprise/include/functions_collection.php:186 -#: ../../operation/agentes/ver_agente.php:1677 +#: ../../operation/agentes/ver_agente.php:1695 msgid "Files" msgstr "Archivos" @@ -7719,7 +7730,7 @@ msgstr "" #: ../../enterprise/meta/advanced/collections.data.php:435 #: ../../enterprise/meta/include/functions_autoprovision.php:569 #: ../../enterprise/godmode/agentes/collections.data.php:523 -#: ../../include/class/SnmpConsole.class.php:1407 +#: ../../include/class/SnmpConsole.class.php:1408 msgid "Description:" msgstr "Descripción:" @@ -7851,7 +7862,7 @@ msgstr "El formato de hora en Pandora FMS es horas(24h):minutos:segundos" #: ../../enterprise/meta/advanced/cron_main.php:450 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 #: ../../godmode/events/event_responses.editor.php:146 -#: ../../include/ajax/events.php:2072 ../../include/ajax/events.php:2537 +#: ../../include/ajax/events.php:2083 ../../include/ajax/events.php:2548 #: ../../include/class/ExternalTools.class.php:354 #: ../../include/lib/Dashboard/Widgets/events_list.php:640 #: ../../operation/events/events.php:2550 @@ -7868,7 +7879,7 @@ msgstr "Parámetros" #: ../../enterprise/operation/log/log_viewer.php:994 #: ../../enterprise/operation/services/services.treeview_services.php:384 #: ../../extensions/insert_data.php:224 -#: ../../godmode/agentes/planned_downtime.editor.php:1855 +#: ../../godmode/agentes/planned_downtime.editor.php:1859 #: ../../godmode/alerts/configure_alert_template.php:1456 #: ../../godmode/alerts/configure_alert_template.php:1540 #: ../../godmode/setup/news.php:322 @@ -7878,12 +7889,12 @@ msgstr "Parámetros" #: ../../operation/agentes/interface_traffic_graph_win.php:436 #: ../../operation/agentes/datos_agente.php:312 #: ../../operation/agentes/estado_monitores.php:455 -#: ../../operation/network/network_report.php:338 +#: ../../operation/network/network_report.php:348 #: ../../operation/network/network_usage_map.php:184 #: ../../operation/netflow/nf_live_view.php:753 #: ../../operation/reporting/reporting_viewer.php:367 #: ../../operation/reporting/reporting_viewer.php:387 -#: ../../operation/reporting/graph_viewer.php:423 +#: ../../operation/reporting/graph_viewer.php:420 #: ../../operation/events/events.php:3136 msgid "Choose time" msgstr "Seleccionar hora" @@ -7900,7 +7911,7 @@ msgstr "Seleccionar hora" #: ../../enterprise/operation/log/log_viewer.php:995 #: ../../enterprise/operation/services/services.treeview_services.php:385 #: ../../extensions/insert_data.php:225 -#: ../../godmode/agentes/planned_downtime.editor.php:1856 +#: ../../godmode/agentes/planned_downtime.editor.php:1860 #: ../../godmode/alerts/configure_alert_template.php:1457 #: ../../godmode/alerts/configure_alert_template.php:1541 #: ../../godmode/setup/news.php:323 @@ -7910,12 +7921,12 @@ msgstr "Seleccionar hora" #: ../../operation/agentes/interface_traffic_graph_win.php:437 #: ../../operation/agentes/datos_agente.php:313 #: ../../operation/agentes/estado_monitores.php:456 -#: ../../operation/network/network_report.php:339 +#: ../../operation/network/network_report.php:349 #: ../../operation/network/network_usage_map.php:185 #: ../../operation/netflow/nf_live_view.php:754 #: ../../operation/reporting/reporting_viewer.php:368 #: ../../operation/reporting/reporting_viewer.php:388 -#: ../../operation/reporting/graph_viewer.php:424 +#: ../../operation/reporting/graph_viewer.php:421 #: ../../operation/events/events.php:3137 msgid "Time" msgstr "Hora" @@ -7931,7 +7942,7 @@ msgstr "Hora" #: ../../enterprise/operation/log/log_viewer.php:996 #: ../../enterprise/operation/services/services.treeview_services.php:386 #: ../../extensions/insert_data.php:226 -#: ../../godmode/agentes/planned_downtime.editor.php:1857 +#: ../../godmode/agentes/planned_downtime.editor.php:1861 #: ../../godmode/alerts/configure_alert_template.php:1458 #: ../../godmode/alerts/configure_alert_template.php:1542 #: ../../godmode/setup/news.php:324 @@ -7942,12 +7953,12 @@ msgstr "Hora" #: ../../operation/agentes/interface_traffic_graph_win.php:438 #: ../../operation/agentes/datos_agente.php:314 #: ../../operation/agentes/estado_monitores.php:457 -#: ../../operation/network/network_report.php:340 +#: ../../operation/network/network_report.php:350 #: ../../operation/network/network_usage_map.php:186 #: ../../operation/netflow/nf_live_view.php:755 #: ../../operation/reporting/reporting_viewer.php:369 #: ../../operation/reporting/reporting_viewer.php:389 -#: ../../operation/reporting/graph_viewer.php:425 +#: ../../operation/reporting/graph_viewer.php:422 #: ../../operation/events/events.php:3138 msgid "Hour" msgstr "Hora" @@ -7963,7 +7974,7 @@ msgstr "Hora" #: ../../enterprise/operation/log/log_viewer.php:997 #: ../../enterprise/operation/services/services.treeview_services.php:387 #: ../../extensions/insert_data.php:227 -#: ../../godmode/agentes/planned_downtime.editor.php:1858 +#: ../../godmode/agentes/planned_downtime.editor.php:1862 #: ../../godmode/alerts/configure_alert_template.php:1459 #: ../../godmode/alerts/configure_alert_template.php:1543 #: ../../godmode/setup/news.php:325 @@ -7974,12 +7985,12 @@ msgstr "Hora" #: ../../operation/agentes/interface_traffic_graph_win.php:439 #: ../../operation/agentes/datos_agente.php:315 #: ../../operation/agentes/estado_monitores.php:458 -#: ../../operation/network/network_report.php:341 +#: ../../operation/network/network_report.php:351 #: ../../operation/network/network_usage_map.php:187 #: ../../operation/netflow/nf_live_view.php:756 #: ../../operation/reporting/reporting_viewer.php:370 #: ../../operation/reporting/reporting_viewer.php:390 -#: ../../operation/reporting/graph_viewer.php:426 +#: ../../operation/reporting/graph_viewer.php:423 #: ../../operation/events/events.php:3139 msgid "Minute" msgstr "Minuto" @@ -7995,7 +8006,7 @@ msgstr "Minuto" #: ../../enterprise/operation/log/log_viewer.php:998 #: ../../enterprise/operation/services/services.treeview_services.php:388 #: ../../extensions/insert_data.php:228 -#: ../../godmode/agentes/planned_downtime.editor.php:1859 +#: ../../godmode/agentes/planned_downtime.editor.php:1863 #: ../../godmode/alerts/configure_alert_template.php:1460 #: ../../godmode/alerts/configure_alert_template.php:1544 #: ../../godmode/setup/news.php:326 @@ -8005,12 +8016,12 @@ msgstr "Minuto" #: ../../operation/agentes/interface_traffic_graph_win.php:440 #: ../../operation/agentes/datos_agente.php:316 #: ../../operation/agentes/estado_monitores.php:459 -#: ../../operation/network/network_report.php:342 +#: ../../operation/network/network_report.php:352 #: ../../operation/network/network_usage_map.php:188 #: ../../operation/netflow/nf_live_view.php:757 #: ../../operation/reporting/reporting_viewer.php:371 #: ../../operation/reporting/reporting_viewer.php:391 -#: ../../operation/reporting/graph_viewer.php:427 +#: ../../operation/reporting/graph_viewer.php:424 #: ../../operation/events/events.php:3140 msgid "Second" msgstr "Segundo" @@ -8022,28 +8033,28 @@ msgstr "Segundo" #: ../../enterprise/godmode/wizards/consoletask_js.php:46 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4036 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4346 -#: ../../enterprise/operation/agentes/agent_inventory.php:133 #: ../../enterprise/operation/log/log_viewer.php:987 #: ../../enterprise/operation/log/log_viewer.php:999 #: ../../enterprise/operation/services/services.treeview_services.php:389 #: ../../extensions/insert_data.php:229 -#: ../../godmode/agentes/planned_downtime.editor.php:1860 +#: ../../godmode/agentes/planned_downtime.editor.php:1864 #: ../../godmode/alerts/configure_alert_template.php:1461 #: ../../godmode/alerts/configure_alert_template.php:1545 #: ../../godmode/setup/news.php:327 #: ../../godmode/reporting/reporting_builder.item_editor.php:5062 -#: ../../include/functions.php:501 ../../include/functions.php:632 +#: ../../include/functions.php:505 ../../include/functions.php:636 #: ../../include/lib/Dashboard/Widgets/tree_view.php:691 #: ../../operation/tree.php:578 ../../operation/agentes/stat_win.php:609 #: ../../operation/agentes/interface_traffic_graph_win.php:441 #: ../../operation/agentes/datos_agente.php:317 #: ../../operation/agentes/estado_monitores.php:460 -#: ../../operation/network/network_report.php:343 +#: ../../operation/agentes/agent_inventory.php:133 +#: ../../operation/network/network_report.php:353 #: ../../operation/network/network_usage_map.php:189 #: ../../operation/netflow/nf_live_view.php:758 #: ../../operation/reporting/reporting_viewer.php:372 #: ../../operation/reporting/reporting_viewer.php:392 -#: ../../operation/reporting/graph_viewer.php:428 +#: ../../operation/reporting/graph_viewer.php:425 #: ../../operation/events/events.php:3141 msgid "Now" msgstr "Ahora" @@ -8059,13 +8070,14 @@ msgstr "Ahora" #: ../../enterprise/operation/log/log_viewer.php:1000 #: ../../enterprise/operation/services/services.treeview_services.php:390 #: ../../extensions/insert_data.php:230 -#: ../../godmode/agentes/planned_downtime.editor.php:1861 +#: ../../godmode/agentes/planned_downtime.editor.php:1865 #: ../../godmode/alerts/configure_alert_template.php:1462 #: ../../godmode/alerts/configure_alert_template.php:1546 #: ../../godmode/setup/news.php:328 #: ../../godmode/reporting/reporting_builder.item_editor.php:5063 #: ../../godmode/wizards/HostDevices.class.php:798 #: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 +#: ../../include/functions_menu.php:822 #: ../../include/class/WelcomeWindow.class.php:159 #: ../../include/lib/Dashboard/Widgets/tree_view.php:692 #: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:579 @@ -8073,12 +8085,12 @@ msgstr "Ahora" #: ../../operation/agentes/interface_traffic_graph_win.php:442 #: ../../operation/agentes/datos_agente.php:318 #: ../../operation/agentes/estado_monitores.php:461 -#: ../../operation/network/network_report.php:344 +#: ../../operation/network/network_report.php:354 #: ../../operation/network/network_usage_map.php:190 #: ../../operation/netflow/nf_live_view.php:759 #: ../../operation/reporting/reporting_viewer.php:373 #: ../../operation/reporting/reporting_viewer.php:393 -#: ../../operation/reporting/graph_viewer.php:429 +#: ../../operation/reporting/graph_viewer.php:426 #: ../../operation/events/events.php:3142 msgid "Close" msgstr "Cerrar" @@ -8086,9 +8098,9 @@ msgstr "Cerrar" #: ../../enterprise/meta/advanced/metasetup.setup.php:108 #: ../../enterprise/godmode/modules/configure_local_component.php:166 #: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/users/configure_user.php:1390 -#: ../../godmode/alerts/alert_commands.php:142 -#: ../../godmode/alerts/alert_commands.php:183 +#: ../../godmode/users/configure_user.php:1449 +#: ../../godmode/alerts/alert_commands.php:143 +#: ../../godmode/alerts/alert_commands.php:184 #: ../../godmode/alerts/configure_alert_template.php:933 #: ../../godmode/alerts/configure_alert_template.php:974 #: ../../godmode/alerts/configure_alert_template.php:1137 @@ -8120,17 +8132,16 @@ msgstr "Hora de referencia" #: ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1151 #: ../../include/functions_reporting_html.php:2621 -#: ../../include/functions.php:1255 ../../include/functions_graph.php:2873 -#: ../../include/functions_graph.php:3574 ../../include/functions_graph.php:3576 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:433 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:429 +#: ../../include/functions.php:1281 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 #: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:3042 ../../operation/events/events.php:803 +#: ../../include/functions_events.php:3021 ../../operation/events/events.php:803 msgid "System" msgstr "Sistema" #: ../../enterprise/meta/advanced/metasetup.setup.php:145 -#: ../../godmode/setup/setup_general.php:126 +#: ../../godmode/setup/setup_general.php:126 ../../include/functions_menu.php:818 msgid "Database" msgstr "Base de datos" @@ -8171,13 +8182,14 @@ msgstr "Directorio remoto de configuración" #: ../../enterprise/meta/advanced/metasetup.setup.php:158 #: ../../enterprise/meta/include/functions_meta.php:150 #: ../../godmode/setup/setup_general.php:98 -msgid "Phantomjs bin directory" -msgstr "Directorio Phantomjs bin" +msgid "Chromium path" +msgstr "Ruta de Chromium" #: ../../enterprise/meta/advanced/metasetup.setup.php:158 -msgid "Directory where phantomjs binary file exists and has execution grants." +msgid "Directory where Chromium binary file exists and has execution grants." msgstr "" -"Directorio que contiene en archivo binario phantomjs con permisos de ejecución." +"Directorio donde se encuentra el archivo binario de Chromium y tiene permisos " +"de ejecución." #: ../../enterprise/meta/advanced/metasetup.setup.php:162 #: ../../godmode/setup/setup_general.php:249 @@ -8325,7 +8337,7 @@ msgstr "Exclusiones del host de URL pública" #: ../../enterprise/meta/advanced/metasetup.setup.php:218 #: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:1524 +#: ../../include/functions_config.php:1505 msgid "Disable custom live view filters" msgstr "Desactiva los filtros de vista activa personalizados" @@ -8339,7 +8351,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:222 #: ../../enterprise/meta/include/functions_meta.php:210 -#: ../../godmode/setup/setup_general.php:370 +#: ../../godmode/setup/setup_general.php:451 #: ../../include/functions_config.php:312 msgid "Command Snapshot" msgstr "Salida de comandos como capturas" @@ -8390,7 +8402,7 @@ msgstr "Habilitar actualización de Warp" #: ../../enterprise/meta/advanced/metasetup.setup.php:288 #: ../../enterprise/meta/include/functions_meta.php:275 #: ../../enterprise/godmode/setup/setup.php:90 -#: ../../include/functions_config.php:415 +#: ../../include/functions_config.php:420 msgid "Size of collection" msgstr "Tamaño de la colección" @@ -8438,7 +8450,7 @@ msgstr "Habilitar el visor de logs" #: ../../enterprise/meta/advanced/metasetup.setup.php:324 #: ../../enterprise/meta/include/functions_meta.php:305 -#: ../../godmode/setup/setup_general.php:467 +#: ../../godmode/setup/setup_general.php:548 msgid "Enable console log" msgstr "Habilitar log de consola" @@ -8448,7 +8460,7 @@ msgstr "Localización de logs: pandora_console/log/console.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:345 #: ../../enterprise/meta/include/functions_meta.php:315 -#: ../../godmode/setup/setup_general.php:478 +#: ../../godmode/setup/setup_general.php:559 msgid "Enable audit log" msgstr "Habilitar auditoría de logs" @@ -8459,15 +8471,15 @@ msgstr "Localización de logs: pandora_console/log/audit.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:368 #: ../../enterprise/meta/advanced/metasetup.setup.php:369 #: ../../enterprise/meta/include/functions_meta.php:325 -#: ../../godmode/setup/setup_general.php:500 -#: ../../godmode/setup/setup_general.php:501 +#: ../../godmode/setup/setup_general.php:581 +#: ../../godmode/setup/setup_general.php:582 #: ../../include/functions_config.php:364 msgid "Enable console report" msgstr "Habilitar informe de consola" #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:667 +#: ../../godmode/groups/group_list.php:672 #, php-format msgid "Error connecting to %s" msgstr "Error al conectar con %s" @@ -8531,11 +8543,11 @@ msgstr "%s alertas de políticas eliminadas correctamente" #: ../../enterprise/operation/log/log_viewer.php:655 #: ../../godmode/massive/massive_copy_modules.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:1649 -#: ../../godmode/events/event_edit_filter.php:673 +#: ../../godmode/events/event_edit_filter.php:683 #: ../../godmode/events/custom_events.php:109 #: ../../include/functions_events.php:212 ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4381 -#: ../../include/functions_events.php:4462 +#: ../../include/functions_events.php:4360 +#: ../../include/functions_events.php:4441 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:354 #: ../../operation/agentes/pandora_networkmap.view.php:173 @@ -8553,7 +8565,6 @@ msgstr "Esta Metaconsola" #: ../../enterprise/meta/advanced/policymanager.queue.php:257 #: ../../enterprise/extensions/resource_exportation/functions.php:18 #: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 #: ../../enterprise/godmode/agentes/plugins_manager.php:193 #: ../../enterprise/godmode/policies/policy_queue.php:593 #: ../../enterprise/godmode/policies/policy_queue.php:647 @@ -8568,7 +8579,8 @@ msgstr "Esta Metaconsola" #: ../../enterprise/operation/agentes/collection_view.php:74 #: ../../godmode/agentes/status_monitor_custom_fields.php:73 #: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../godmode/agentes/module_manager.php:883 +#: ../../godmode/agentes/inventory_manager.php:220 +#: ../../godmode/agentes/module_manager.php:884 #: ../../godmode/alerts/alert_view.php:148 #: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:987 #: ../../operation/agentes/status_monitor.php:1315 @@ -8606,7 +8618,7 @@ msgstr "" "de grupo del nodo" #: ../../enterprise/meta/advanced/metasetup.performance.php:74 -#: ../../godmode/menu.php:350 ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:353 ../../godmode/setup/setup.php:125 #: ../../godmode/setup/setup.php:260 msgid "Performance" msgstr "Rendimiento" @@ -8667,36 +8679,6 @@ msgstr "Límite de líneas en log CSV" msgid "Max. macro data fields" msgstr "Nº máx. de campos de macro de datos" -#: ../../enterprise/meta/advanced/metasetup.performance.php:154 -#: ../../godmode/setup/performance.php:671 -#, php-format -msgid "" -"%s web2image cache system cleanup. It is always cleaned up after perform an " -"upgrade" -msgstr "" -"%s limpieza del sistema de caché web2image. Siempre se limpia después de " -"realizar una actualización" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:159 -#: ../../godmode/setup/performance.php:688 -msgid "PhantomJS cache cleanup " -msgstr "Limpieza de caché de PhantomJS " - -#: ../../enterprise/meta/advanced/metasetup.performance.php:166 -#: ../../godmode/setup/performance.php:695 -msgid "No scheduled" -msgstr "No programado" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:167 -#: ../../godmode/setup/performance.php:696 -msgid "Each week" -msgstr "Cada semana" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:168 -#: ../../godmode/setup/performance.php:697 -msgid "Each day" -msgstr "Cada día" - #: ../../enterprise/meta/advanced/collections.php:111 msgid "Collection has been deleted" msgstr "Se ha eliminado la colección" @@ -8773,7 +8755,7 @@ msgstr "Filtro de control de usuarios" #: ../../enterprise/meta/advanced/collections.php:251 #: ../../enterprise/godmode/policies/policy_queue.php:524 #: ../../enterprise/godmode/policies/policy_queue.php:636 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:384 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 #: ../../godmode/users/user_list.php:512 #: ../../godmode/snmpconsole/snmp_alert.php:1180 @@ -8788,67 +8770,67 @@ msgid "Error: The main directory of collections does not exist." msgstr "Error: el directorio principal de las colecciones no existe" #: ../../enterprise/meta/advanced/collections.php:341 -#: ../../enterprise/godmode/agentes/collections.php:428 +#: ../../enterprise/godmode/agentes/collections.php:442 #: ../../enterprise/include/functions_groups.php:81 -#: ../../enterprise/operation/agentes/ver_agente.php:215 -#: ../../godmode/agentes/configurar_agente.php:713 +#: ../../enterprise/operation/agentes/ver_agente.php:192 +#: ../../godmode/agentes/configurar_agente.php:726 msgid "Collection" msgstr "Colección" #: ../../enterprise/meta/advanced/collections.php:364 #: ../../enterprise/godmode/agentes/collection_manager.php:110 -#: ../../enterprise/godmode/agentes/collections.php:429 +#: ../../enterprise/godmode/agentes/collections.php:443 #: ../../enterprise/godmode/policies/policy_collections.php:170 #: ../../enterprise/godmode/policies/policy_collections.php:264 msgid "Short Name" msgstr "Nombre corto" #: ../../enterprise/meta/advanced/collections.php:425 -#: ../../enterprise/godmode/agentes/collections.php:461 +#: ../../enterprise/godmode/agentes/collections.php:475 msgid "Are you sure to delete?" msgstr "¿Estás seguro de que quieres eliminarlo?" #: ../../enterprise/meta/advanced/collections.php:430 #: ../../enterprise/meta/advanced/collections.php:431 -#: ../../enterprise/godmode/agentes/collections.php:462 +#: ../../enterprise/godmode/agentes/collections.php:476 #: ../../include/class/SatelliteCollection.class.php:590 msgid "Delete collection" msgstr "Eliminar colección" #: ../../enterprise/meta/advanced/collections.php:440 -#: ../../enterprise/godmode/agentes/collections.php:469 +#: ../../enterprise/godmode/agentes/collections.php:483 msgid "Are you sure to re-apply?" msgstr "¿Estás seguro de que quieres volver a aplicarlo?" #: ../../enterprise/meta/advanced/collections.php:441 -#: ../../enterprise/godmode/agentes/collections.php:470 +#: ../../enterprise/godmode/agentes/collections.php:484 msgid "Re-Apply changes" msgstr "Volver a aplicar los cambios" #: ../../enterprise/meta/advanced/collections.php:448 -#: ../../enterprise/godmode/agentes/collections.php:477 +#: ../../enterprise/godmode/agentes/collections.php:491 msgid "Are you sure to apply?" msgstr "¿Estás seguro de que quieres aplicarlo?" #: ../../enterprise/meta/advanced/collections.php:449 -#: ../../enterprise/godmode/agentes/collections.php:478 +#: ../../enterprise/godmode/agentes/collections.php:492 msgid "Apply changes" msgstr "Aplicar cambios" #: ../../enterprise/meta/advanced/collections.php:454 -#: ../../enterprise/godmode/agentes/collections.php:483 +#: ../../enterprise/godmode/agentes/collections.php:497 msgid "Are you sure to re-create directory?" msgstr "Está seguro de que desea volver a crear el directorio?" #: ../../enterprise/meta/advanced/collections.php:459 #: ../../enterprise/meta/advanced/collections.php:460 -#: ../../enterprise/godmode/agentes/collections.php:488 -#: ../../enterprise/godmode/agentes/collections.php:489 +#: ../../enterprise/godmode/agentes/collections.php:502 +#: ../../enterprise/godmode/agentes/collections.php:503 msgid "The collection directory does not exist. Re-create directory" msgstr "El directorio de la colección no existe. Vuelva a crear el directorio" #: ../../enterprise/meta/advanced/collections.php:492 -#: ../../enterprise/godmode/agentes/collections.php:509 +#: ../../enterprise/godmode/agentes/collections.php:525 msgid "Re-create directories" msgstr "Volver a crear directorios" @@ -8878,7 +8860,7 @@ msgstr "La operación no puede ser eliminada de la cola." #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 #: ../../enterprise/include/functions_reporting_csv.php:1064 #: ../../enterprise/include/class/CommandCenter.class.php:451 -#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 +#: ../../extensions/api_checker.php:240 ../../godmode/extensions.php:148 #: ../../godmode/reporting/reporting_builder.item_editor.php:4537 #: ../../include/functions_reporting_html.php:2370 #: ../../include/functions_reporting_html.php:4872 @@ -8919,7 +8901,7 @@ msgstr "Incompleto" #: ../../enterprise/godmode/setup/setup_acl.php:574 #: ../../enterprise/include/class/SAPView.class.php:409 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2870 -#: ../../enterprise/include/functions_ipam.php:1779 +#: ../../enterprise/include/functions_ipam.php:1787 #: ../../enterprise/operation/services/services.treeview_services.php:164 #: ../../enterprise/operation/services/services.treeview_services.php:168 #: ../../enterprise/operation/services/services.list.php:454 @@ -8936,8 +8918,8 @@ msgstr "Incompleto" #: ../../godmode/reporting/reporting_builder.list_items.php:217 #: ../../godmode/reporting/reporting_builder.list_items.php:261 #: ../../godmode/reporting/reporting_builder.item_editor.php:1123 -#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3386 -#: ../../include/functions_ui.php:3408 ../../include/functions_ui.php:3420 +#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3390 +#: ../../include/functions_ui.php:3412 ../../include/functions_ui.php:3424 #: ../../include/class/ModuleTemplates.class.php:766 ../../operation/tree.php:260 #: ../../operation/agentes/graphs.php:265 #: ../../operation/agentes/estado_monitores.php:594 @@ -8962,17 +8944,18 @@ msgstr "Filtro" #: ../../enterprise/include/class/SAPView.class.php:226 #: ../../enterprise/include/functions_events.php:216 #: ../../enterprise/operation/log/log_viewer.php:614 -#: ../../enterprise/operation/inventory/inventory.php:331 #: ../../godmode/modules/manage_network_components.php:752 #: ../../godmode/agentes/agent_manager.php:423 -#: ../../godmode/agentes/module_manager.php:886 +#: ../../godmode/agentes/module_manager.php:887 #: ../../godmode/massive/massive_edit_agents.php:757 #: ../../godmode/reporting/reporting_builder.item_editor.php:1218 #: ../../godmode/reporting/reporting_builder.item_editor.php:1240 #: ../../godmode/reporting/reporting_builder.item_editor.php:3649 +#: ../../godmode/events/event_edit_filter.php:753 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1045 #: ../../include/functions_reporting_html.php:2261 #: ../../include/class/AgentWizard.class.php:1279 +#: ../../operation/inventory/inventory.php:334 #: ../../operation/events/events.php:1914 msgid "Server" msgstr "Servidor" @@ -8990,9 +8973,9 @@ msgstr "Servidor" #: ../../enterprise/godmode/policies/policy_queue.php:648 #: ../../enterprise/godmode/policies/policies.php:411 #: ../../enterprise/godmode/policies/policies.php:535 -#: ../../enterprise/godmode/policies/policy_agents.php:531 -#: ../../enterprise/godmode/policies/policy_agents.php:664 -#: ../../enterprise/godmode/policies/policy_agents.php:778 +#: ../../enterprise/godmode/policies/policy_agents.php:567 +#: ../../enterprise/godmode/policies/policy_agents.php:700 +#: ../../enterprise/godmode/policies/policy_agents.php:814 #: ../../enterprise/godmode/policies/policy.php:71 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 @@ -9000,7 +8983,7 @@ msgstr "Servidor" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 #: ../../enterprise/include/functions_cron.php:215 #: ../../enterprise/include/functions_tasklist.php:366 -#: ../../enterprise/include/functions_reporting_pdf.php:886 +#: ../../enterprise/include/functions_reporting_pdf.php:887 #: ../../enterprise/include/functions_policies.php:3825 #: ../../enterprise/operation/services/massive/services.create.php:988 #: ../../enterprise/operation/services/massive/service.create.elements.php:383 @@ -9089,9 +9072,8 @@ msgstr "Cola vacía" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:441 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:709 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:788 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3505 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3506 #: ../../enterprise/meta/agentsearch.php:135 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 #: ../../enterprise/godmode/agentes/collections.agents.php:94 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 #: ../../enterprise/godmode/policies/policy_linking.php:150 @@ -9108,9 +9090,6 @@ msgstr "Cola vacía" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_inventory.php:393 -#: ../../enterprise/include/functions_inventory.php:880 -#: ../../enterprise/include/functions_inventory.php:936 #: ../../enterprise/include/functions_reporting_pdf.php:528 #: ../../enterprise/include/functions_reporting_pdf.php:536 #: ../../enterprise/include/functions_reporting_pdf.php:544 @@ -9156,10 +9135,10 @@ msgstr "Cola vacía" #: ../../enterprise/include/functions_events.php:80 #: ../../enterprise/operation/agentes/tag_view.php:599 #: ../../enterprise/operation/log/log_viewer.php:633 -#: ../../enterprise/operation/inventory/inventory.php:401 #: ../../enterprise/tools/ipam/ipam_network.php:398 #: ../../enterprise/tools/ipam/ipam_ajax.php:379 #: ../../extensions/insert_data.php:158 +#: ../../godmode/modules/manage_inventory_modules.php:305 #: ../../godmode/agentes/status_monitor_custom_fields.php:77 #: ../../godmode/agentes/status_monitor_custom_fields.php:143 #: ../../godmode/agentes/module_manager_editor_prediction.php:126 @@ -9199,8 +9178,8 @@ msgstr "Cola vacía" #: ../../mobile/operation/events.php:841 #: ../../include/functions_visual_map_editor.php:422 #: ../../include/functions_visual_map_editor.php:455 -#: ../../include/functions_reporting_html.php:546 -#: ../../include/functions_reporting_html.php:942 +#: ../../include/functions_reporting_html.php:547 +#: ../../include/functions_reporting_html.php:943 #: ../../include/functions_reporting_html.php:1054 #: ../../include/functions_reporting_html.php:1062 #: ../../include/functions_reporting_html.php:1927 @@ -9219,23 +9198,26 @@ msgstr "Cola vacía" #: ../../include/functions_reporting_html.php:4869 #: ../../include/functions_reporting_html.php:4917 #: ../../include/functions_reporting_html.php:4956 -#: ../../include/functions_reporting_html.php:5265 -#: ../../include/functions_reporting_html.php:5305 -#: ../../include/functions_reporting_html.php:5555 +#: ../../include/functions_reporting_html.php:5284 +#: ../../include/functions_reporting_html.php:5324 +#: ../../include/functions_reporting_html.php:5574 #: ../../include/ajax/heatmap.ajax.php:244 #: ../../include/ajax/heatmap.ajax.php:283 #: ../../include/ajax/heatmap.ajax.php:318 #: ../../include/ajax/alert_list.ajax.php:459 -#: ../../include/functions_graph.php:5288 ../../include/functions_gis.php:229 +#: ../../include/functions_inventory.php:393 +#: ../../include/functions_inventory.php:880 +#: ../../include/functions_inventory.php:936 +#: ../../include/functions_graph.php:5076 ../../include/functions_gis.php:229 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:371 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 #: ../../include/functions_reports.php:1320 #: ../../include/class/NetworkMap.class.php:2968 @@ -9243,7 +9225,7 @@ msgstr "Cola vacía" #: ../../include/class/NetworkMap.class.php:3295 #: ../../include/class/AgentsAlerts.class.php:410 #: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/functions_reporting.php:7013 +#: ../../include/functions_reporting.php:7228 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:337 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360 @@ -9266,11 +9248,12 @@ msgstr "Cola vacía" #: ../../operation/agentes/exportdata.php:83 #: ../../operation/agentes/status_monitor.php:1320 #: ../../operation/agentes/estado_monitores.php:123 -#: ../../operation/agentes/ver_agente.php:1181 +#: ../../operation/agentes/ver_agente.php:1187 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 -#: ../../operation/search_alerts.php:34 ../../operation/search_modules.php:33 -#: ../../operation/events/events.php:2611 +#: ../../operation/search_alerts.php:34 +#: ../../operation/inventory/inventory.php:404 +#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2611 msgid "Agent" msgstr "Agente" @@ -9284,11 +9267,11 @@ msgstr "Agente" #: ../../enterprise/include/class/DeploymentCenter.class.php:1280 #: ../../enterprise/include/class/DeploymentCenter.class.php:1397 #: ../../enterprise/include/class/Aws.S3.php:564 -#: ../../enterprise/include/class/Aws.cloud.php:547 +#: ../../enterprise/include/class/Aws.cloud.php:546 #: ../../enterprise/include/functions_reporting.php:2317 -#: ../../enterprise/include/functions_ipam.php:1646 -#: ../../enterprise/include/functions_ipam.php:1647 -#: ../../extensions/api_checker.php:123 ../../extensions/users_connected.php:144 +#: ../../enterprise/include/functions_ipam.php:1654 +#: ../../enterprise/include/functions_ipam.php:1655 +#: ../../extensions/api_checker.php:202 ../../extensions/users_connected.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:70 #: ../../godmode/reporting/visual_console_builder.elements.php:790 #: ../../include/functions_visual_map_editor.php:1460 @@ -9316,7 +9299,7 @@ msgstr "Estado de agente" #: ../../enterprise/include/functions_services.php:1428 #: ../../enterprise/operation/agentes/tag_view.php:131 #: ../../enterprise/operation/services/services.treeview_services.php:295 -#: ../../godmode/groups/group_list.php:1074 +#: ../../godmode/groups/group_list.php:1079 #: ../../godmode/netflow/nf_edit_form.php:236 #: ../../godmode/massive/massive_copy_modules.php:115 #: ../../godmode/massive/massive_copy_modules.php:275 @@ -9327,24 +9310,24 @@ msgstr "Estado de agente" #: ../../godmode/reporting/reporting_builder.item_editor.php:3784 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 #: ../../include/functions_reporting_html.php:2483 -#: ../../include/functions.php:1051 ../../include/functions.php:1291 -#: ../../include/functions.php:1298 ../../include/functions.php:1331 -#: ../../include/functions_graph.php:3487 ../../include/functions_graph.php:3488 -#: ../../include/functions_graph.php:5068 +#: ../../include/functions.php:1077 ../../include/functions.php:1317 +#: ../../include/functions.php:1324 ../../include/functions.php:1357 +#: ../../include/functions_graph.php:3330 ../../include/functions_graph.php:3332 +#: ../../include/functions_graph.php:4856 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 #: ../../include/functions_massive_operations.php:148 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 #: ../../include/lib/Dashboard/Widgets/tree_view.php:385 #: ../../include/lib/Dashboard/Widgets/tree_view.php:418 #: ../../include/lib/Dashboard/Widgets/tree_view.php:683 -#: ../../include/functions_events.php:3098 ../../operation/tree.php:212 +#: ../../include/functions_events.php:3077 ../../operation/tree.php:212 #: ../../operation/tree.php:269 ../../operation/tree.php:486 #: ../../operation/agentes/estado_agente.php:268 #: ../../operation/agentes/status_monitor.php:492 #: ../../operation/agentes/group_view.php:226 #: ../../operation/agentes/group_view.php:231 #: ../../operation/agentes/estado_monitores.php:523 -#: ../../operation/agentes/tactical.php:180 +#: ../../operation/agentes/tactical.php:181 #: ../../operation/netflow/nf_live_view.php:392 ../../general/logon_ok.php:144 msgid "Normal" msgstr "Normal" @@ -9382,7 +9365,7 @@ msgstr "Normal" #: ../../enterprise/operation/services/services.table_services.php:161 #: ../../extensions/module_groups.php:50 #: ../../godmode/modules/manage_network_components_form_wizard.php:418 -#: ../../godmode/groups/group_list.php:1054 +#: ../../godmode/groups/group_list.php:1059 #: ../../godmode/massive/massive_copy_modules.php:117 #: ../../godmode/massive/massive_copy_modules.php:277 #: ../../godmode/massive/massive_delete_modules.php:420 @@ -9391,14 +9374,14 @@ msgstr "Normal" #: ../../godmode/massive/massive_edit_modules.php:473 #: ../../godmode/reporting/reporting_builder.item_editor.php:3786 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 -#: ../../include/functions_reporting_html.php:863 +#: ../../include/functions_reporting_html.php:864 #: ../../include/functions_reporting_html.php:2484 #: ../../include/functions_reporting_html.php:4785 -#: ../../include/functions.php:1059 ../../include/functions.php:1295 -#: ../../include/functions.php:1296 ../../include/functions.php:1298 -#: ../../include/functions.php:1339 ../../include/functions_graph.php:3507 -#: ../../include/functions_graph.php:3508 ../../include/functions_graph.php:5076 -#: ../../include/functions_ui.php:2610 +#: ../../include/functions.php:1085 ../../include/functions.php:1321 +#: ../../include/functions.php:1322 ../../include/functions.php:1324 +#: ../../include/functions.php:1365 ../../include/functions_graph.php:3354 +#: ../../include/functions_graph.php:3356 ../../include/functions_graph.php:4864 +#: ../../include/functions_ui.php:2614 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 #: ../../include/functions_massive_operations.php:150 #: ../../include/class/AgentWizard.class.php:1401 @@ -9407,14 +9390,14 @@ msgstr "Normal" #: ../../include/lib/Dashboard/Widgets/tree_view.php:387 #: ../../include/lib/Dashboard/Widgets/tree_view.php:420 #: ../../include/lib/Dashboard/Widgets/tree_view.php:663 -#: ../../include/functions_events.php:3106 ../../operation/tree.php:214 +#: ../../include/functions_events.php:3085 ../../operation/tree.php:214 #: ../../operation/tree.php:271 ../../operation/tree.php:466 #: ../../operation/agentes/estado_agente.php:270 #: ../../operation/agentes/status_monitor.php:494 #: ../../operation/agentes/group_view.php:228 #: ../../operation/agentes/group_view.php:233 #: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/tactical.php:178 +#: ../../operation/agentes/tactical.php:179 #: ../../operation/gis_maps/render_view.php:164 ../../general/logon_ok.php:142 msgid "Critical" msgstr "Crítico" @@ -9456,11 +9439,11 @@ msgstr "Recurrencia" #: ../../godmode/massive/massive_edit_modules.php:389 #: ../../godmode/massive/massive_edit_modules.php:475 #: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/events/event_edit_filter.php:332 -#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1297 +#: ../../godmode/events/event_edit_filter.php:342 +#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1323 #: ../../include/functions_massive_operations.php:152 #: ../../include/lib/Dashboard/Widgets/events_list.php:319 -#: ../../include/functions_events.php:3054 +#: ../../include/functions_events.php:3033 #: ../../operation/agentes/estado_agente.php:272 #: ../../operation/agentes/status_monitor.php:496 #: ../../operation/events/events.php:1664 @@ -9474,7 +9457,7 @@ msgstr "No normal" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 #: ../../enterprise/operation/agentes/tag_view.php:137 #: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1069 +#: ../../godmode/groups/group_list.php:1074 #: ../../godmode/massive/massive_copy_modules.php:120 #: ../../godmode/massive/massive_copy_modules.php:280 #: ../../godmode/massive/massive_delete_modules.php:423 @@ -9483,7 +9466,7 @@ msgstr "No normal" #: ../../godmode/massive/massive_edit_modules.php:476 #: ../../godmode/reporting/reporting_builder.item_editor.php:3789 #: ../../mobile/operation/modules.php:75 -#: ../../include/functions_reporting_html.php:656 +#: ../../include/functions_reporting_html.php:657 #: ../../include/functions_reporting_html.php:2487 #: ../../include/functions_reporting_html.php:4593 #: ../../include/functions_massive_operations.php:153 @@ -9495,7 +9478,7 @@ msgstr "No normal" #: ../../operation/agentes/status_monitor.php:498 #: ../../operation/agentes/group_view.php:225 #: ../../operation/agentes/group_view.php:230 -#: ../../operation/agentes/tactical.php:182 ../../general/logon_ok.php:146 +#: ../../operation/agentes/tactical.php:183 ../../general/logon_ok.php:146 msgid "Not init" msgstr "No iniciados" @@ -9510,15 +9493,15 @@ msgstr "Módulo de estado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:222 #: ../../enterprise/meta/monitoring/custom_fields_view.php:228 #: ../../enterprise/meta/monitoring/custom_fields_view.php:229 -#: ../../include/ajax/events.php:847 ../../operation/events/events.php:1834 +#: ../../include/ajax/events.php:848 ../../operation/events/events.php:1834 msgid "Save filter" msgstr "Guardar filtro" #: ../../enterprise/meta/monitoring/custom_fields_view.php:236 #: ../../enterprise/meta/monitoring/custom_fields_view.php:242 #: ../../enterprise/meta/monitoring/custom_fields_view.php:243 -#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583 -#: ../../include/ajax/events.php:599 ../../operation/netflow/nf_live_view.php:397 +#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 +#: ../../include/ajax/events.php:600 ../../operation/netflow/nf_live_view.php:397 #: ../../operation/events/sound_events.php:184 #: ../../operation/events/events.php:1826 msgid "Load filter" @@ -9534,7 +9517,7 @@ msgid "Custom Fields Data" msgstr "Datos de campos personalizados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:293 -#: ../../godmode/events/event_edit_filter.php:660 +#: ../../godmode/events/event_edit_filter.php:670 #: ../../operation/events/events.php:1930 msgid "Module search" msgstr "Búsqueda por módulo" @@ -9562,7 +9545,7 @@ msgstr "Mostrar" #: ../../enterprise/operation/reporting/custom_reporting.php:80 #: ../../godmode/modules/manage_network_templates.php:290 #: ../../godmode/agentes/planned_downtime.list.php:907 -#: ../../include/graphs/functions_flot.php:377 +#: ../../include/graphs/functions_flot.php:382 #: ../../include/class/ModuleTemplates.class.php:935 #: ../../operation/network/network_report.php:140 #: ../../operation/incidents/list_integriaims_incidents.php:428 @@ -9573,25 +9556,25 @@ msgstr "Exportar a CSV" #: ../../enterprise/meta/monitoring/custom_fields_view.php:349 #: ../../enterprise/include/class/DatabaseHA.class.php:217 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 -#: ../../include/functions_ui.php:3432 +#: ../../include/functions_ui.php:3436 msgid "Processing" msgstr "Procesando" #: ../../enterprise/meta/monitoring/custom_fields_view.php:374 #: ../../mobile/operation/groups.php:153 -#: ../../include/functions_reporting_html.php:5737 +#: ../../include/functions_reporting_html.php:5756 #: ../../include/functions_agents.php:3881 msgid "Agents critical" msgstr "Agentes críticos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:387 -#: ../../include/functions_reporting_html.php:5740 +#: ../../include/functions_reporting_html.php:5759 #: ../../include/functions_agents.php:3891 msgid "Agents warning" msgstr "Agentes en estado de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:400 -#: ../../include/functions_reporting_html.php:5746 +#: ../../include/functions_reporting_html.php:5765 #: ../../include/functions_agents.php:3871 #: ../../include/functions_agents.php:3925 msgid "Agents ok" @@ -9599,58 +9582,58 @@ msgstr "Agentes OK" #: ../../enterprise/meta/monitoring/custom_fields_view.php:413 #: ../../mobile/operation/groups.php:156 -#: ../../include/functions_reporting_html.php:5749 +#: ../../include/functions_reporting_html.php:5768 #: ../../include/functions_agents.php:3901 msgid "Agents unknown" msgstr "Agentes desconocidos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:426 #: ../../mobile/operation/groups.php:150 -#: ../../include/functions_reporting_html.php:5755 +#: ../../include/functions_reporting_html.php:5774 #: ../../include/functions_agents.php:3915 msgid "Agents not init" msgstr "Agentes no iniciados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:452 -#: ../../include/functions_reporting.php:11751 +#: ../../include/functions_reporting.php:12037 msgid "Monitor critical" msgstr "Monitor crítico" #: ../../enterprise/meta/monitoring/custom_fields_view.php:463 -#: ../../include/functions_reporting.php:11755 +#: ../../include/functions_reporting.php:12041 msgid "Monitor warning" msgstr "Monitor en estado de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:474 -#: ../../include/functions_reporting.php:11762 +#: ../../include/functions_reporting.php:12048 msgid "Monitor normal" msgstr "Monitor normal" #: ../../enterprise/meta/monitoring/custom_fields_view.php:485 -#: ../../include/functions_reporting.php:11766 +#: ../../include/functions_reporting.php:12052 msgid "Monitor unknown" msgstr "Monitor en estado desconocido" #: ../../enterprise/meta/monitoring/custom_fields_view.php:496 -#: ../../include/functions_reporting.php:11773 +#: ../../include/functions_reporting.php:12059 msgid "Monitor not init" msgstr "Monitor en estado no iniciado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:511 -#: ../../include/functions_reporting_html.php:5764 -#: ../../include/functions_reporting_html.php:5769 +#: ../../include/functions_reporting_html.php:5783 +#: ../../include/functions_reporting_html.php:5788 msgid "Agents by status" msgstr "Agentes por estado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:519 -#: ../../include/functions_reporting.php:11793 -#: ../../include/functions_reporting.php:11799 +#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12085 msgid "Monitors by status" msgstr "Monitores por estado" #: ../../enterprise/meta/monitoring/custom_fields_view.php:533 #: ../../enterprise/operation/services/services.treeview_services.php:273 -#: ../../godmode/groups/group_list.php:1052 +#: ../../godmode/groups/group_list.php:1057 #: ../../include/lib/Dashboard/Widgets/tree_view.php:661 #: ../../operation/tree.php:464 msgid "Critical agents" @@ -9658,7 +9641,7 @@ msgstr "Agentes críticos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:543 #: ../../enterprise/operation/services/services.treeview_services.php:278 -#: ../../godmode/groups/group_list.php:1057 +#: ../../godmode/groups/group_list.php:1062 #: ../../include/lib/Dashboard/Widgets/tree_view.php:666 #: ../../operation/tree.php:469 msgid "Warning agents" @@ -9666,7 +9649,7 @@ msgstr "Agentes en estado de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:553 #: ../../enterprise/operation/services/services.treeview_services.php:293 -#: ../../godmode/groups/group_list.php:1072 +#: ../../godmode/groups/group_list.php:1077 #: ../../include/lib/Dashboard/Widgets/tree_view.php:681 #: ../../operation/tree.php:484 msgid "Normal agents" @@ -9674,7 +9657,7 @@ msgstr "Agentes en normal" #: ../../enterprise/meta/monitoring/custom_fields_view.php:563 #: ../../enterprise/operation/services/services.treeview_services.php:283 -#: ../../godmode/groups/group_list.php:1062 +#: ../../godmode/groups/group_list.php:1067 #: ../../include/lib/Dashboard/Widgets/tree_view.php:671 #: ../../operation/tree.php:474 msgid "Unknown agents" @@ -9682,7 +9665,7 @@ msgstr "Agentes en desconocido" #: ../../enterprise/meta/monitoring/custom_fields_view.php:573 #: ../../enterprise/operation/services/services.treeview_services.php:288 -#: ../../godmode/groups/group_list.php:1067 +#: ../../godmode/groups/group_list.php:1072 #: ../../include/lib/Dashboard/Widgets/tree_view.php:676 #: ../../operation/tree.php:479 msgid "Not init agents" @@ -9691,7 +9674,7 @@ msgstr "Agentes no iniciados" #: ../../enterprise/meta/monitoring/custom_fields_view.php:602 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:274 -#: ../../godmode/groups/group_list.php:1053 ../../mobile/operation/groups.php:171 +#: ../../godmode/groups/group_list.php:1058 ../../mobile/operation/groups.php:171 #: ../../include/lib/Dashboard/Widgets/tree_view.php:662 #: ../../operation/tree.php:465 msgid "Critical modules" @@ -9700,7 +9683,7 @@ msgstr "Módulos críticos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:613 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:279 -#: ../../godmode/groups/group_list.php:1058 ../../mobile/operation/groups.php:168 +#: ../../godmode/groups/group_list.php:1063 ../../mobile/operation/groups.php:168 #: ../../include/lib/Dashboard/Widgets/tree_view.php:667 #: ../../operation/tree.php:470 msgid "Warning modules" @@ -9709,7 +9692,7 @@ msgstr "Módulos de advertencia" #: ../../enterprise/meta/monitoring/custom_fields_view.php:624 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:294 -#: ../../godmode/groups/group_list.php:1073 ../../mobile/operation/groups.php:165 +#: ../../godmode/groups/group_list.php:1078 ../../mobile/operation/groups.php:165 #: ../../include/lib/Dashboard/Widgets/tree_view.php:682 #: ../../operation/tree.php:485 msgid "Normal modules" @@ -9718,7 +9701,7 @@ msgstr "Módulos normales" #: ../../enterprise/meta/monitoring/custom_fields_view.php:635 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:284 -#: ../../godmode/groups/group_list.php:1063 ../../mobile/operation/groups.php:159 +#: ../../godmode/groups/group_list.php:1068 ../../mobile/operation/groups.php:159 #: ../../include/lib/Dashboard/Widgets/tree_view.php:672 #: ../../operation/tree.php:475 msgid "Unknown modules" @@ -9727,7 +9710,7 @@ msgstr "Módulos desconocidos" #: ../../enterprise/meta/monitoring/custom_fields_view.php:646 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/groups/group_list.php:1068 ../../mobile/operation/groups.php:162 +#: ../../godmode/groups/group_list.php:1073 ../../mobile/operation/groups.php:162 #: ../../include/lib/Dashboard/Widgets/tree_view.php:677 #: ../../operation/tree.php:480 msgid "Not init modules" @@ -9768,9 +9751,9 @@ msgstr "Confirmar" #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:229 -#: ../../godmode/agentes/configurar_agente.php:853 +#: ../../godmode/agentes/configurar_agente.php:866 #: ../../godmode/agentes/modificar_agente.php:947 -#: ../../include/class/SnmpConsole.class.php:814 +#: ../../include/class/SnmpConsole.class.php:815 #: ../../operation/agentes/estado_agente.php:964 #: ../../operation/agentes/estado_agente.php:974 #: ../../operation/snmpconsole/snmp_statistics.php:193 @@ -9803,7 +9786,7 @@ msgstr "Crear alerta" #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3513 #: ../../enterprise/extensions/disabled/check_acls.php:133 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 #: ../../enterprise/godmode/policies/policy_alerts.php:352 @@ -9822,8 +9805,6 @@ msgstr "Crear alerta" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3790 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3808 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/include/functions_inventory.php:881 -#: ../../enterprise/include/functions_inventory.php:937 #: ../../enterprise/include/functions_ui.php:47 #: ../../enterprise/include/functions_reporting_pdf.php:529 #: ../../enterprise/include/functions_reporting_pdf.php:537 @@ -9861,8 +9842,6 @@ msgstr "Crear alerta" #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 #: ../../enterprise/operation/agentes/policy_view.php:258 -#: ../../enterprise/operation/agentes/agent_inventory.php:116 -#: ../../enterprise/operation/inventory/inventory.php:357 #: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175 #: ../../godmode/agentes/module_manager_editor_prediction.php:154 #: ../../godmode/agentes/planned_downtime.list.php:395 @@ -9898,8 +9877,8 @@ msgstr "Crear alerta" #: ../../godmode/reporting/visual_console_builder.wizard.php:770 #: ../../godmode/servers/plugin.php:88 ../../mobile/operation/alerts.php:338 #: ../../include/functions_visual_map_editor.php:497 -#: ../../include/functions_reporting_html.php:547 -#: ../../include/functions_reporting_html.php:943 +#: ../../include/functions_reporting_html.php:548 +#: ../../include/functions_reporting_html.php:944 #: ../../include/functions_reporting_html.php:1928 #: ../../include/functions_reporting_html.php:2265 #: ../../include/functions_reporting_html.php:2369 @@ -9916,21 +9895,24 @@ msgstr "Crear alerta" #: ../../include/ajax/alert_list.ajax.php:292 #: ../../include/ajax/alert_list.ajax.php:317 #: ../../include/ajax/alert_list.ajax.php:480 -#: ../../include/functions_graph.php:5395 ../../include/functions_treeview.php:64 +#: ../../include/functions_inventory.php:881 +#: ../../include/functions_inventory.php:937 +#: ../../include/functions_graph.php:5183 ../../include/functions_treeview.php:64 +#: ../../include/functions_ui.php:6863 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:388 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 #: ../../include/functions_reports.php:1351 #: ../../include/class/AgentsAlerts.class.php:412 #: ../../include/class/AgentsAlerts.class.php:891 -#: ../../include/functions_reporting.php:7014 +#: ../../include/functions_reporting.php:7229 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:355 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359 @@ -9947,15 +9929,18 @@ msgstr "Crear alerta" #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:83 #: ../../operation/agentes/estado_monitores.php:125 +#: ../../operation/agentes/agent_inventory.php:116 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_alerts.php:35 ../../operation/search_modules.php:32 +#: ../../operation/search_alerts.php:35 +#: ../../operation/inventory/inventory.php:360 +#: ../../operation/search_modules.php:32 msgid "Module" msgstr "Módulo" #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224 #: ../../enterprise/godmode/policies/policy_alerts.php:351 #: ../../enterprise/godmode/policies/policy_alerts.php:557 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:340 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1417 #: ../../enterprise/include/functions_tasklist.php:356 @@ -9992,7 +9977,7 @@ msgstr "Plantilla" #: ../../enterprise/meta/general/header.php:125 #: ../../enterprise/meta/general/main_header.php:558 #: ../../enterprise/godmode/policies/policy_alerts.php:648 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:685 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:687 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 #: ../../enterprise/godmode/services/services.service.php:906 #: ../../enterprise/godmode/services/services.service.php:918 @@ -10057,7 +10042,7 @@ msgstr "Crear nueva acción" #: ../../godmode/alerts/alert_view.php:361 #: ../../godmode/alerts/alert_list.builder.php:173 #: ../../include/functions_reporting_html.php:3616 -#: ../../include/functions_reporting_html.php:5387 +#: ../../include/functions_reporting_html.php:5406 #: ../../include/ajax/alert_list.ajax.php:540 #: ../../include/ajax/custom_fields.php:413 #: ../../include/class/AgentsAlerts.class.php:385 @@ -10078,7 +10063,7 @@ msgstr "Configuración avanzada" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 -#: ../../operation/snmpconsole/snmp_browser.php:639 +#: ../../operation/snmpconsole/snmp_browser.php:637 msgid "Create module" msgstr "Crear módulo" @@ -10109,9 +10094,9 @@ msgid "Invalid characters founded in module name" msgstr "Se han encontrado caracteres no válidos en el nombre del módulo." #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:234 -#: ../../godmode/agentes/configurar_agente.php:830 -#: ../../godmode/agentes/configurar_agente.php:852 -#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:93 +#: ../../godmode/agentes/configurar_agente.php:843 +#: ../../godmode/agentes/configurar_agente.php:865 +#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:94 #: ../../godmode/servers/modificar_server.php:140 msgid "Manage agents" msgstr "Gestionar agentes" @@ -10123,7 +10108,7 @@ msgstr "Gestionar agentes" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 #: ../../enterprise/meta/agentsearch.php:52 #: ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:397 +#: ../../godmode/events/event_edit_filter.php:407 #: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1908 msgid "Agent search" msgstr "Búsqueda de agente" @@ -10210,8 +10195,8 @@ msgstr "Se debe establecer la plantilla." #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:653 #: ../../godmode/users/configure_profile.php:291 -#: ../../godmode/alerts/alert_list.php:501 -#: ../../godmode/alerts/alert_list.php:503 +#: ../../godmode/alerts/alert_list.php:519 +#: ../../godmode/alerts/alert_list.php:521 msgid "Manage alerts" msgstr "Gestionar alertas" @@ -10240,8 +10225,8 @@ msgstr "Tipo módulo" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5306 -#: ../../include/functions_reporting_html.php:5460 +#: ../../include/functions_reporting_html.php:5325 +#: ../../include/functions_reporting_html.php:5479 msgid "Monitor" msgstr "Monitor" @@ -10267,12 +10252,12 @@ msgstr "Comprobación web" #: ../../include/functions_reporting_html.php:1717 #: ../../include/ajax/heatmap.ajax.php:191 #: ../../include/ajax/heatmap.ajax.php:255 -#: ../../include/ajax/heatmap.ajax.php:294 ../../include/functions_graph.php:5311 +#: ../../include/ajax/heatmap.ajax.php:294 ../../include/functions_graph.php:5099 #: ../../include/functions_treeview.php:122 ../../include/functions_html.php:1570 -#: ../../include/functions_events.php:4302 ../../operation/heatmap.php:100 +#: ../../include/functions_events.php:4281 ../../operation/heatmap.php:100 #: ../../operation/heatmap.php:102 ../../operation/agentes/status_monitor.php:517 #: ../../operation/agentes/estado_monitores.php:552 -#: ../../operation/agentes/ver_agente.php:1169 +#: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "Grupo del módulo" @@ -10291,10 +10276,10 @@ msgstr "Wizard paso a paso" #: ../../enterprise/godmode/agentes/plugins_manager.php:126 #: ../../enterprise/godmode/policies/policy_plugins.php:126 #: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/users/configure_user.php:1391 +#: ../../godmode/users/configure_user.php:1450 #: ../../godmode/netflow/nf_edit_form.php:237 -#: ../../godmode/alerts/alert_commands.php:158 -#: ../../godmode/alerts/alert_commands.php:195 +#: ../../godmode/alerts/alert_commands.php:159 +#: ../../godmode/alerts/alert_commands.php:196 #: ../../godmode/alerts/configure_alert_template.php:946 #: ../../godmode/alerts/configure_alert_template.php:987 #: ../../godmode/alerts/configure_alert_template.php:1138 @@ -10319,13 +10304,13 @@ msgstr "Por favor, selecciona un módulo." #: ../../enterprise/include/class/Omnishell.class.php:854 #: ../../enterprise/include/class/DB2.app.php:841 #: ../../enterprise/include/class/SAP.app.php:803 -#: ../../enterprise/include/class/Aws.cloud.php:1425 +#: ../../enterprise/include/class/Aws.cloud.php:1424 #: ../../enterprise/include/class/MySQL.app.php:909 #: ../../enterprise/include/class/Oracle.app.php:950 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:794 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2182 #: ../../godmode/alerts/configure_alert_template.php:1171 -#: ../../godmode/wizards/HostDevices.class.php:1594 +#: ../../godmode/wizards/HostDevices.class.php:1593 #: ../../include/class/CustomNetScan.class.php:726 #: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 msgid "Finish" @@ -10350,14 +10335,14 @@ msgstr "Sin descripción disponible" #: ../../godmode/modules/manage_network_components_form_wmi.php:60 #: ../../godmode/alerts/configure_alert_template.php:1288 #: ../../godmode/alerts/alert_list.builder.php:293 -#: ../../include/functions.php:2732 +#: ../../include/functions.php:2758 #: ../../include/class/AgentWizard.class.php:2626 msgid "Empty" msgstr "Vacío" #: ../../enterprise/meta/monitoring/wizard/wizard.php:139 -#: ../../include/functions_events.php:3148 -#: ../../include/functions_events.php:3419 +#: ../../include/functions_events.php:3127 +#: ../../include/functions_events.php:3398 msgid "New" msgstr "Nuevo" @@ -10385,16 +10370,16 @@ msgstr "Por favor, selecciona un agente." #: ../../godmode/massive/massive_copy_modules.php:235 #: ../../godmode/massive/massive_operations.php:344 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/functions_events.php:4150 +#: ../../include/functions_events.php:4129 #: ../../operation/reporting/reporting_viewer.php:347 -#: ../../operation/reporting/graph_viewer.php:316 +#: ../../operation/reporting/graph_viewer.php:384 #: ../../general/ui/agents_list.php:146 msgid "Loading" msgstr "Cargando" #: ../../enterprise/meta/monitoring/wizard/wizard.php:151 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:227 ../../include/functions_reporting.php:7151 +#: ../../godmode/tag/edit_tag.php:227 ../../include/functions_reporting.php:7366 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "URL" @@ -10429,10 +10414,10 @@ msgid "Group View" msgstr "Vista de grupo" #: ../../enterprise/meta/monitoring/group_view.php:72 -#: ../../godmode/groups/group_list.php:321 -#: ../../godmode/users/configure_user.php:1292 +#: ../../godmode/groups/group_list.php:326 +#: ../../godmode/users/configure_user.php:1351 #: ../../godmode/massive/massive_edit_users.php:277 -#: ../../operation/users/user_edit.php:362 +#: ../../operation/users/user_edit.php:436 #: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:50 msgid "Group view" msgstr "Vista de grupo" @@ -10495,16 +10480,16 @@ msgid "Group or Tag" msgstr "Grupo o etiqueta" #: ../../enterprise/meta/monitoring/group_view.php:235 -#: ../../enterprise/include/functions_inventory.php:511 -#: ../../enterprise/include/functions_inventory.php:654 -#: ../../enterprise/operation/agentes/agent_inventory.php:266 #: ../../enterprise/operation/services/services.treeview_services.php:265 -#: ../../godmode/groups/group_list.php:1044 +#: ../../godmode/groups/group_list.php:1049 #: ../../include/functions_reporting_html.php:2472 #: ../../include/functions_reporting_html.php:2482 -#: ../../include/functions_alerts.php:3363 +#: ../../include/functions_inventory.php:511 +#: ../../include/functions_inventory.php:654 +#: ../../include/functions_alerts.php:3386 #: ../../include/lib/Dashboard/Widgets/tree_view.php:653 #: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223 +#: ../../operation/agentes/agent_inventory.php:266 msgid "Total" msgstr "Total" @@ -10512,13 +10497,13 @@ msgstr "Total" #: ../../enterprise/operation/agentes/policy_view.php:345 #: ../../godmode/alerts/alert_list.list.php:573 #: ../../godmode/alerts/alert_view.php:105 ../../mobile/operation/alerts.php:324 -#: ../../include/functions.php:1248 ../../include/functions_agents.php:2942 +#: ../../include/functions.php:1274 ../../include/functions_agents.php:2942 #: ../../include/functions_agents.php:2953 ../../include/functions_ui.php:1253 #: ../../include/class/AgentsAlerts.class.php:937 -#: ../../include/class/SnmpConsole.class.php:874 -#: ../../include/functions_reporting.php:12667 -#: ../../include/functions_events.php:2822 -#: ../../include/functions_events.php:3022 +#: ../../include/class/SnmpConsole.class.php:875 +#: ../../include/functions_reporting.php:12953 +#: ../../include/functions_events.php:2801 +#: ../../include/functions_events.php:3001 #: ../../operation/agentes/group_view.php:234 msgid "Alert fired" msgstr "Alerta disparada" @@ -10541,13 +10526,13 @@ msgstr "Vista táctica" #: ../../enterprise/meta/monitoring/tactical.php:63 #: ../../enterprise/meta/general/main_header.php:103 #: ../../enterprise/meta/general/main_menu.php:202 -#: ../../godmode/users/configure_user.php:1293 +#: ../../godmode/users/configure_user.php:1352 #: ../../godmode/massive/massive_edit_users.php:278 #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 -#: ../../operation/users/user_edit.php:363 -#: ../../operation/agentes/tactical.php:69 ../../operation/menu.php:47 +#: ../../operation/users/user_edit.php:437 +#: ../../operation/agentes/tactical.php:70 ../../operation/menu.php:47 msgid "Tactical view" msgstr "Vista táctica" @@ -10561,13 +10546,13 @@ msgstr "Informe de estado" #: ../../enterprise/meta/general/main_menu.php:267 #: ../../enterprise/include/class/CommandCenter.class.php:1078 #: ../../enterprise/tools/ipam/ipam_network.php:400 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:240 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:243 #: ../../godmode/events/events.php:128 ../../mobile/include/functions_web.php:25 #: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 -#: ../../include/functions.php:4119 ../../include/ajax/events.php:2123 +#: ../../include/functions.php:4145 ../../include/ajax/events.php:2134 #: ../../include/functions_reports.php:864 #: ../../include/functions_reports.php:868 -#: ../../include/functions_reports.php:872 ../../operation/menu.php:383 +#: ../../include/functions_reports.php:872 ../../operation/menu.php:387 #: ../../operation/events/events.php:1558 ../../operation/events/events.php:1566 msgid "Events" msgstr "Eventos" @@ -10586,7 +10571,7 @@ msgstr "Más eventos" #: ../../enterprise/meta/event/custom_events.php:38 #: ../../enterprise/godmode/reporting/graph_template_editor.php:255 -#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:389 +#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:393 msgid "View events" msgstr "Ver eventos" @@ -10599,7 +10584,7 @@ msgstr "Ver eventos" msgid "Create filter" msgstr "Crear filtro" -#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:235 +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:238 #: ../../godmode/events/events.php:68 msgid "Event responses" msgstr "Respuestas de evento" @@ -10609,14 +10594,14 @@ msgstr "Respuestas de evento" #: ../../enterprise/meta/event/custom_events.php:74 #: ../../enterprise/meta/event/custom_events.php:92 #: ../../godmode/agentes/agent_manager.php:945 -#: ../../godmode/agentes/agent_manager.php:970 ../../godmode/menu.php:99 +#: ../../godmode/agentes/agent_manager.php:970 ../../godmode/menu.php:100 #: ../../godmode/massive/massive_edit_agents.php:1251 #: ../../godmode/reporting/reporting_builder.item_editor.php:76 #: ../../include/functions_reporting_html.php:1585 -#: ../../include/functions_events.php:4264 +#: ../../include/functions_events.php:4243 #: ../../operation/agentes/status_monitor.php:62 #: ../../operation/agentes/status_monitor.php:85 -#: ../../operation/agentes/ver_agente.php:1556 +#: ../../operation/agentes/ver_agente.php:1574 msgid "Custom fields" msgstr "Campos personalizados" @@ -10631,7 +10616,7 @@ msgid "Filters" msgstr "Filtros" #: ../../enterprise/meta/event/custom_events.php:79 -#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1710 +#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1717 msgid "Responses" msgstr "Respuestas" @@ -10731,7 +10716,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_autoprovision.php:640 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2946 -#: ../../enterprise/include/functions_ipam.php:1643 +#: ../../enterprise/include/functions_ipam.php:1651 #: ../../godmode/reporting/reporting_builder.list_items.php:440 #: ../../godmode/reporting/reporting_builder.list_items.php:740 #: ../../godmode/reporting/graph_builder.graph_editor.php:217 @@ -10829,7 +10814,7 @@ msgstr "Error al duplicar nombre" #: ../../godmode/users/configure_profile.php:76 #: ../../godmode/users/user_list.php:253 ../../godmode/users/user_list.php:278 #: ../../godmode/users/user_list.php:289 -#: ../../godmode/users/configure_user.php:293 +#: ../../godmode/users/configure_user.php:287 #: ../../operation/users/user_edit_header.php:91 msgid "User management" msgstr "Gestión de usuarios" @@ -10839,7 +10824,7 @@ msgstr "Gestión de usuarios" #: ../../godmode/users/profile_list.php:74 #: ../../godmode/users/configure_profile.php:66 #: ../../godmode/users/user_list.php:264 -#: ../../godmode/users/configure_user.php:304 ../../godmode/menu.php:155 +#: ../../godmode/users/configure_user.php:298 ../../godmode/menu.php:156 msgid "Profile management" msgstr "Gestionar perfiles" @@ -10848,7 +10833,7 @@ msgstr "Gestionar perfiles" #: ../../enterprise/meta/general/header.php:211 #: ../../enterprise/meta/general/header.php:221 #: ../../enterprise/meta/general/main_header.php:624 -#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:488 +#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:492 #: ../../general/header.php:407 ../../general/header.php:417 msgid "Edit my user" msgstr "Editar mi usuario" @@ -10883,7 +10868,7 @@ msgstr "Alias" #: ../../include/functions_reporting_html.php:4054 #: ../../include/functions_reporting_html.php:4148 #: ../../include/functions_treeview.php:640 -#: ../../include/functions_events.php:4240 ../../operation/gis_maps/ajax.php:290 +#: ../../include/functions_events.php:4219 ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "Dirección IP" @@ -10892,13 +10877,13 @@ msgstr "Dirección IP" #: ../../enterprise/godmode/modules/configure_local_component.php:515 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 #: ../../enterprise/godmode/setup/setup_log_collector.php:49 -#: ../../enterprise/include/functions_metaconsole.php:1338 -#: ../../enterprise/include/functions_metaconsole.php:1371 -#: ../../enterprise/include/functions_metaconsole.php:1404 -#: ../../enterprise/include/functions_metaconsole.php:1437 -#: ../../enterprise/include/functions_metaconsole.php:1470 -#: ../../enterprise/include/functions_metaconsole.php:1501 -#: ../../enterprise/include/functions_metaconsole.php:1534 +#: ../../enterprise/include/functions_metaconsole.php:1339 +#: ../../enterprise/include/functions_metaconsole.php:1372 +#: ../../enterprise/include/functions_metaconsole.php:1405 +#: ../../enterprise/include/functions_metaconsole.php:1438 +#: ../../enterprise/include/functions_metaconsole.php:1471 +#: ../../enterprise/include/functions_metaconsole.php:1502 +#: ../../enterprise/include/functions_metaconsole.php:1535 #: ../../godmode/agentes/module_manager_editor_web.php:172 msgid "Check" msgstr "Comprobar" @@ -10914,8 +10899,8 @@ msgstr "Comprobar" #: ../../godmode/alerts/configure_alert_template.php:233 #: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249 #: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372 -#: ../../include/ajax/events.php:1660 ../../include/functions_reports.php:771 -#: ../../include/functions_reporting.php:9764 +#: ../../include/ajax/events.php:1667 ../../include/functions_reports.php:771 +#: ../../include/functions_reporting.php:9982 msgid "General" msgstr "General" @@ -10972,7 +10957,7 @@ msgstr "Forzar clave primaria" #: ../../enterprise/include/class/MySQL.app.php:523 #: ../../enterprise/include/class/Oracle.app.php:508 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502 -#: ../../extensions/api_checker.php:138 ../../extensions/users_connected.php:143 +#: ../../extensions/api_checker.php:222 ../../extensions/users_connected.php:143 #: ../../godmode/update_manager/update_manager.history.php:43 #: ../../godmode/setup/setup_ehorus.php:80 #: ../../godmode/setup/setup_integria.php:283 @@ -10980,16 +10965,16 @@ msgstr "Forzar clave primaria" #: ../../godmode/events/custom_events.php:99 #: ../../mobile/include/user.class.php:396 #: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:5904 -#: ../../include/functions.php:3073 ../../include/functions_cron.php:500 +#: ../../include/functions_reporting_html.php:5923 +#: ../../include/functions.php:3099 ../../include/functions_cron.php:500 #: ../../include/functions_config.php:705 ../../include/functions_config.php:725 #: ../../include/class/CredentialStore.class.php:843 #: ../../include/class/CredentialStore.class.php:1322 #: ../../include/class/AuditLog.class.php:107 #: ../../include/class/AuditLog.class.php:210 #: ../../include/functions_events.php:202 ../../include/functions_events.php:253 -#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:721 -#: ../../operation/users/user_edit.php:767 +#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:795 +#: ../../operation/users/user_edit.php:841 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 #: ../../general/logon_ok.php:249 ../../general/login_page.php:230 @@ -11022,23 +11007,23 @@ msgstr "Usuario" #: ../../enterprise/include/class/MySQL.app.php:535 #: ../../enterprise/include/class/Oracle.app.php:520 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514 -#: ../../extensions/api_checker.php:143 +#: ../../extensions/api_checker.php:227 #: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/users/configure_user.php:1110 +#: ../../godmode/users/configure_user.php:1169 #: ../../godmode/agentes/module_manager_editor_wmi.php:116 #: ../../godmode/massive/massive_edit_modules.php:908 #: ../../godmode/setup/setup_ehorus.php:86 #: ../../godmode/setup/setup_integria.php:289 -#: ../../mobile/include/user.class.php:403 ../../include/functions_config.php:709 -#: ../../include/functions_config.php:729 +#: ../../mobile/include/user.class.php:403 ../../include/functions_ui.php:6920 +#: ../../include/functions_config.php:709 ../../include/functions_config.php:729 #: ../../include/class/CredentialStore.class.php:998 #: ../../include/class/CredentialStore.class.php:1048 #: ../../include/class/CredentialStore.class.php:1323 #: ../../include/class/CredentialStore.class.php:1346 #: ../../include/class/CredentialStore.class.php:1368 #: ../../include/class/AgentWizard.class.php:689 -#: ../../operation/users/user_edit.php:727 -#: ../../operation/users/user_edit.php:773 ../../general/login_page.php:244 +#: ../../operation/users/user_edit.php:801 +#: ../../operation/users/user_edit.php:847 ../../general/login_page.php:244 #: ../../general/login_page.php:285 msgid "Password" msgstr "Contraseña" @@ -11131,7 +11116,6 @@ msgstr "Las comprobaciones web se han efectuado correctamente." #: ../../enterprise/meta/include/functions_wizard_meta.php:1742 #: ../../enterprise/meta/agentsearch.php:138 #: ../../enterprise/godmode/modules/configure_local_component.php:291 -#: ../../enterprise/godmode/agentes/inventory_manager.php:224 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:465 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:507 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:304 @@ -11144,8 +11128,8 @@ msgstr "Las comprobaciones web se han efectuado correctamente." #: ../../enterprise/include/class/DB2.app.php:536 #: ../../enterprise/include/class/Aws.S3.php:506 #: ../../enterprise/include/class/SAP.app.php:513 -#: ../../enterprise/include/class/Aws.cloud.php:592 -#: ../../enterprise/include/class/Aws.cloud.php:1319 +#: ../../enterprise/include/class/Aws.cloud.php:591 +#: ../../enterprise/include/class/Aws.cloud.php:1318 #: ../../enterprise/include/class/MySQL.app.php:558 #: ../../enterprise/include/class/Google.cloud.php:797 #: ../../enterprise/include/class/Oracle.app.php:543 @@ -11157,10 +11141,11 @@ msgstr "Las comprobaciones web se han efectuado correctamente." #: ../../godmode/modules/manage_network_components_form_common.php:143 #: ../../godmode/agentes/status_monitor_custom_fields.php:93 #: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/agentes/inventory_manager.php:224 #: ../../godmode/agentes/agent_manager.php:378 #: ../../godmode/agentes/module_manager_editor_common.php:632 #: ../../godmode/agentes/module_manager_editor_common.php:657 -#: ../../godmode/agentes/module_manager.php:898 +#: ../../godmode/agentes/module_manager.php:899 #: ../../godmode/massive/massive_edit_agents.php:714 #: ../../godmode/massive/massive_edit_modules.php:754 #: ../../godmode/wizards/HostDevices.class.php:800 @@ -11168,8 +11153,8 @@ msgstr "Las comprobaciones web se han efectuado correctamente." #: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 #: ../../mobile/operation/modules.php:851 #: ../../include/functions_reporting_html.php:3619 -#: ../../include/ajax/events.php:2276 ../../include/functions_treeview.php:84 -#: ../../include/functions_treeview.php:646 +#: ../../include/ajax/events.php:2287 ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:646 ../../include/functions_ui.php:6900 #: ../../include/class/CustomNetScan.class.php:520 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:372 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 @@ -11221,8 +11206,8 @@ msgstr "Comunidad SNMP" #: ../../enterprise/include/class/DeploymentCenter.class.php:1189 #: ../../enterprise/include/class/DeploymentCenter.class.php:1316 #: ../../enterprise/include/class/DeploymentCenter.class.php:1326 -#: ../../extensions/api_checker.php:195 -#: ../../godmode/wizards/HostDevices.class.php:1492 +#: ../../extensions/api_checker.php:279 +#: ../../godmode/wizards/HostDevices.class.php:1491 msgid "Credentials" msgstr "Credenciales" @@ -11249,7 +11234,7 @@ msgstr "Credenciales" #: ../../godmode/reporting/reporting_builder.item_editor.php:1455 #: ../../godmode/reporting/reporting_builder.item_editor.php:2529 #: ../../include/functions_reporting_html.php:4921 -#: ../../include/functions_ui.php:2610 ../../include/functions_reporting.php:1533 +#: ../../include/functions_ui.php:2614 ../../include/functions_reporting.php:1534 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439 @@ -11279,7 +11264,7 @@ msgstr "Mín." #: ../../godmode/reporting/reporting_builder.item_editor.php:1457 #: ../../godmode/reporting/reporting_builder.item_editor.php:2522 #: ../../include/functions_reporting_html.php:4920 -#: ../../include/functions_ui.php:2610 ../../include/functions_reporting.php:1529 +#: ../../include/functions_ui.php:2614 ../../include/functions_reporting.php:1530 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448 @@ -11348,7 +11333,7 @@ msgid "Alerts in module" msgstr "Alertas en el módulo" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5266 +#: ../../include/functions_reporting_html.php:5285 msgid "Alert description" msgstr "Descripción de la alerta" @@ -11445,7 +11430,7 @@ msgstr "Error al actualizar las alertas, operación cancelada" msgid "Successfully updated module." msgstr "Módulo actualizado correctamente" -#: ../../enterprise/meta/include/functions_wizard_meta.php:3507 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3508 msgid "Manage agent modules" msgstr "Gestionar módulos de agentes" @@ -11455,11 +11440,11 @@ msgid "Everyday" msgstr "Cada día" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../enterprise/meta/include/functions_meta.php:2136 +#: ../../enterprise/meta/include/functions_meta.php:2117 #: ../../enterprise/include/ajax/ipam.ajax.php:521 #: ../../enterprise/tools/ipam/ipam_editor.php:327 #: ../../godmode/alerts/alert_templates.php:73 -#: ../../include/functions_config.php:1605 +#: ../../include/functions_config.php:1586 msgid "Days" msgstr "Días" @@ -11486,10 +11471,10 @@ msgstr "Umbral de tiempo" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 #: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 -#: ../../enterprise/include/functions_reporting_pdf.php:1819 -#: ../../enterprise/include/functions_reporting_pdf.php:1892 -#: ../../enterprise/include/functions_reporting_pdf.php:2007 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:478 +#: ../../enterprise/include/functions_reporting_pdf.php:1820 +#: ../../enterprise/include/functions_reporting_pdf.php:1893 +#: ../../enterprise/include/functions_reporting_pdf.php:2008 #: ../../enterprise/include/functions_reporting_csv.php:722 #: ../../enterprise/include/functions_reporting_csv.php:1001 #: ../../enterprise/include/functions_reporting_csv.php:1375 @@ -11500,10 +11485,10 @@ msgstr "Umbral de tiempo" #: ../../godmode/alerts/alert_list.list.php:658 #: ../../godmode/alerts/alert_list.list.php:661 #: ../../godmode/alerts/alert_templates.php:96 -#: ../../include/functions_reporting_html.php:147 +#: ../../include/functions_reporting_html.php:148 #: ../../include/functions_reporting_html.php:3118 #: ../../include/functions_reporting_html.php:3929 -#: ../../include/rest-api/index.php:371 +#: ../../include/rest-api/index.php:372 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 #: ../../operation/agentes/gis_view.php:220 @@ -11514,9 +11499,9 @@ msgstr "De" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 #: ../../enterprise/godmode/policies/policy_alerts.php:436 #: ../../enterprise/godmode/policies/policy_alerts.php:600 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:611 -#: ../../enterprise/include/functions_reporting_pdf.php:1825 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:478 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:613 +#: ../../enterprise/include/functions_reporting_pdf.php:1826 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1019 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2377 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2381 @@ -11528,11 +11513,11 @@ msgstr "De" #: ../../godmode/alerts/alert_list.list.php:778 #: ../../godmode/alerts/alert_templates.php:98 #: ../../godmode/alerts/alert_list.builder.php:129 -#: ../../include/functions_reporting_html.php:148 +#: ../../include/functions_reporting_html.php:149 #: ../../include/functions_reporting_html.php:3123 #: ../../include/ajax/alert_list.ajax.php:527 #: ../../include/class/AgentsAlerts.class.php:316 -#: ../../include/functions_reporting.php:14390 +#: ../../include/functions_reporting.php:14676 #: ../../operation/reporting/reporting_viewer.php:308 msgid "to" msgstr "a" @@ -11556,15 +11541,15 @@ msgstr "Identificación del evento" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 #: ../../include/functions_reporting_html.php:1314 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:5198 +#: ../../include/functions_reporting_html.php:5217 #: ../../include/functions_events.php:200 ../../include/functions_events.php:2528 -#: ../../include/functions_events.php:4727 +#: ../../include/functions_events.php:4706 msgid "Event name" msgstr "Nombre del evento" #: ../../enterprise/meta/include/functions_events_meta.php:66 #: ../../enterprise/include/functions_reporting_csv.php:921 -#: ../../enterprise/include/functions_ipam.php:2045 +#: ../../enterprise/include/functions_ipam.php:2053 #: ../../godmode/agentes/modificar_agente.php:647 #: ../../godmode/agentes/agent_manager.php:213 #: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 @@ -11577,11 +11562,6 @@ msgid "Agent name" msgstr "Nombre del agente" #: ../../enterprise/meta/include/functions_events_meta.php:82 -#: ../../enterprise/include/functions_inventory.php:143 -#: ../../enterprise/include/functions_inventory.php:177 -#: ../../enterprise/include/functions_inventory.php:379 -#: ../../enterprise/include/functions_inventory.php:399 -#: ../../enterprise/include/functions_inventory.php:585 #: ../../enterprise/include/functions_reporting_csv.php:852 #: ../../enterprise/include/functions_reporting_csv.php:925 #: ../../enterprise/include/functions_reporting_csv.php:1508 @@ -11602,14 +11582,19 @@ msgstr "Nombre del agente" #: ../../include/functions_reporting_html.php:1318 #: ../../include/functions_reporting_html.php:1325 #: ../../include/functions_reporting_html.php:2555 -#: ../../include/functions_reporting_html.php:5200 +#: ../../include/functions_reporting_html.php:5219 #: ../../include/ajax/events_extended.php:90 #: ../../include/ajax/custom_fields.php:415 +#: ../../include/functions_inventory.php:143 +#: ../../include/functions_inventory.php:177 +#: ../../include/functions_inventory.php:379 +#: ../../include/functions_inventory.php:399 +#: ../../include/functions_inventory.php:585 #: ../../include/functions_netflow.php:278 #: ../../include/class/SnmpConsole.class.php:342 #: ../../include/functions_events.php:205 ../../include/functions_events.php:262 #: ../../include/functions_events.php:2538 -#: ../../include/functions_events.php:4740 +#: ../../include/functions_events.php:4719 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:83 #: ../../operation/agentes/status_monitor.php:1377 @@ -11626,24 +11611,24 @@ msgstr "Marca temporal" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:658 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2905 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1384 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1123 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1124 #: ../../enterprise/include/functions_events.php:60 #: ../../godmode/reporting/reporting_builder.item_editor.php:2979 #: ../../godmode/events/event_filter.php:138 -#: ../../godmode/events/event_edit_filter.php:334 +#: ../../godmode/events/event_edit_filter.php:344 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 #: ../../include/functions_events.php:206 ../../operation/events/events.php:1674 msgid "Event type" msgstr "Tipo de evento" #: ../../enterprise/meta/include/functions_events_meta.php:90 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:347 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:349 #: ../../enterprise/include/functions_reporting_csv.php:923 #: ../../enterprise/operation/agentes/tag_view.php:205 #: ../../godmode/modules/manage_network_templates_form.php:231 #: ../../godmode/modules/manage_network_components.php:751 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 -#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/agent_template.php:236 #: ../../godmode/agentes/status_monitor_custom_fields.php:85 #: ../../godmode/agentes/status_monitor_custom_fields.php:145 #: ../../godmode/alerts/alert_list.list.php:99 @@ -11657,12 +11642,12 @@ msgid "Module name" msgstr "Nombre del módulo" #: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:391 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:393 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4353 -#: ../../godmode/agentes/configurar_agente.php:745 +#: ../../godmode/agentes/configurar_agente.php:758 #: ../../godmode/alerts/configure_alert_template.php:1552 -#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4126 +#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4152 #: ../../include/functions_snmp.php:324 #: ../../include/class/SnmpConsole.class.php:343 #: ../../include/class/SnmpConsole.class.php:416 @@ -11673,7 +11658,7 @@ msgid "Alert" msgstr "Alerta" #: ../../enterprise/meta/include/functions_events_meta.php:98 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:90 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:93 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:632 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2878 @@ -11681,7 +11666,7 @@ msgstr "Alerta" #: ../../enterprise/include/functions_events.php:70 #: ../../godmode/reporting/reporting_builder.item_editor.php:2952 #: ../../godmode/events/event_filter.php:140 -#: ../../godmode/events/event_edit_filter.php:349 +#: ../../godmode/events/event_edit_filter.php:359 #: ../../godmode/events/custom_events.php:106 #: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 #: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 @@ -11697,17 +11682,17 @@ msgstr "Alerta" #: ../../include/lib/Dashboard/Widgets/events_list.php:404 #: ../../include/functions_events.php:209 ../../include/functions_events.php:274 #: ../../include/functions_events.php:2520 -#: ../../include/functions_events.php:4801 ../../operation/events/events.php:1770 +#: ../../include/functions_events.php:4780 ../../operation/events/events.php:1770 msgid "Severity" msgstr "Gravedad" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:679 +#: ../../godmode/events/event_edit_filter.php:689 #: ../../godmode/events/custom_events.php:107 #: ../../godmode/wizards/HostDevices.class.php:961 #: ../../include/class/CustomNetScan.class.php:468 #: ../../include/functions_events.php:210 ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3496 ../../operation/events/events.php:1868 +#: ../../include/functions_events.php:3475 ../../operation/events/events.php:1868 msgid "Comment" msgstr "Comentar" @@ -11740,8 +11725,8 @@ msgstr "Comentar" #: ../../include/lib/Dashboard/Widgets/events_list.php:461 #: ../../include/lib/Dashboard/Widgets/tree_view.php:329 #: ../../include/functions_events.php:211 ../../include/functions_events.php:280 -#: ../../include/functions_events.php:4888 ../../operation/tree.php:66 -#: ../../operation/users/user_edit.php:840 +#: ../../include/functions_events.php:4867 ../../operation/tree.php:66 +#: ../../operation/users/user_edit.php:914 #: ../../operation/agentes/status_monitor.php:550 #: ../../operation/agentes/group_view.php:222 #: ../../operation/agentes/alerts_status.functions.php:108 @@ -11750,7 +11735,7 @@ msgid "Tags" msgstr "Etiquetas" #: ../../enterprise/meta/include/functions_events_meta.php:114 -#: ../../include/functions_events.php:213 ../../include/functions_events.php:4452 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4431 msgid "Extra id" msgstr "ID extra" @@ -11759,7 +11744,7 @@ msgstr "ID extra" #: ../../godmode/setup/setup_integria.php:519 #: ../../godmode/events/custom_events.php:111 #: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 -#: ../../include/functions_events.php:289 ../../include/functions_events.php:4755 +#: ../../include/functions_events.php:289 ../../include/functions_events.php:4734 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:312 #: ../../operation/incidents/list_integriaims_incidents.php:342 @@ -11777,14 +11762,14 @@ msgstr "ACK Marca temporal" #: ../../enterprise/meta/include/functions_events_meta.php:126 #: ../../godmode/events/custom_events.php:113 #: ../../include/functions_events.php:216 ../../include/functions_events.php:295 -#: ../../include/functions_events.php:4440 ../../operation/events/events.php:3152 +#: ../../include/functions_events.php:4419 ../../operation/events/events.php:3152 msgid "Instructions" msgstr "Instrucciones" #: ../../enterprise/meta/include/functions_events_meta.php:130 #: ../../enterprise/godmode/setup/setup_metaconsole.php:198 #: ../../enterprise/godmode/setup/setup_metaconsole.php:273 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:852 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:878 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 #: ../../godmode/wizards/DiscoveryTaskList.class.php:593 @@ -11849,7 +11834,7 @@ msgstr "Ayuda" #: ../../enterprise/meta/include/process_reset_pass.php:96 #: ../../enterprise/include/process_reset_pass.php:103 -#: ../../operation/users/user_edit.php:301 +#: ../../operation/users/user_edit.php:375 msgid "New Password" msgstr "Contraseña nueva" @@ -11865,7 +11850,7 @@ msgstr "Cambiar contraseña" #: ../../enterprise/meta/include/process_reset_pass.php:123 #: ../../enterprise/meta/index.php:668 -#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:843 +#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:846 msgid "Passwords must be the same" msgstr "Las contraseñas deben coincidir" @@ -11885,7 +11870,7 @@ msgstr "%s SIGUIENTE GENERACIÓN" #: ../../enterprise/meta/include/process_reset_pass.php:150 #: ../../enterprise/meta/include/reset_pass.php:147 #: ../../enterprise/meta/general/login_page.php:217 -#: ../../include/functions_config.php:2554 +#: ../../include/functions_config.php:2530 msgid "METACONSOLE" msgstr "METACONSOLA" @@ -11893,7 +11878,8 @@ msgstr "METACONSOLA" #: ../../enterprise/meta/include/reset_pass.php:161 #: ../../enterprise/meta/general/login_page.php:232 #: ../../enterprise/include/process_reset_pass.php:183 -#: ../../enterprise/include/reset_pass.php:170 ../../general/login_page.php:424 +#: ../../enterprise/include/reset_pass.php:170 +#: ../../include/functions_menu.php:836 ../../general/login_page.php:424 msgid "Build" msgstr "Crear" @@ -11956,7 +11942,7 @@ msgstr "Gestión de agentes" #: ../../enterprise/meta/include/functions_agents_meta.php:630 #: ../../enterprise/extensions/disabled/check_acls.php:53 #: ../../enterprise/extensions/disabled/check_acls.php:140 -#: ../../godmode/menu.php:150 +#: ../../godmode/menu.php:151 msgid "Users management" msgstr "Gestión de usuarios" @@ -11965,7 +11951,7 @@ msgid "No admin user" msgstr "No hay usuario administrador" #: ../../enterprise/meta/include/functions_meta.php:70 -#: ../../include/functions_config.php:411 +#: ../../include/functions_config.php:416 msgid "Activate Metaconsole" msgstr "Activar la Metaconsola" @@ -11983,7 +11969,7 @@ msgid "Netflow disable custom live view filters" msgstr "Desactivar filtros personalizados en la vista en vivo de Netflow" #: ../../enterprise/meta/include/functions_meta.php:250 -#: ../../enterprise/godmode/setup/setup.php:294 +#: ../../enterprise/godmode/setup/setup.php:210 msgid "Enable update manager" msgstr "Habilitar gestor de actualizaciones" @@ -12013,7 +11999,7 @@ msgstr "Puerto ElasticSearch" #: ../../enterprise/meta/include/functions_meta.php:512 #: ../../enterprise/godmode/setup/setup_log_collector.php:41 -#: ../../include/functions_config.php:1546 +#: ../../include/functions_config.php:1527 msgid "Number of logs viewed" msgstr "Número de logs vistos" @@ -12078,9 +12064,9 @@ msgstr "Crear una lista negra automáticamente" #: ../../enterprise/meta/include/functions_meta.php:613 #: ../../enterprise/meta/include/functions_meta.php:915 -#: ../../godmode/users/configure_user.php:1512 +#: ../../godmode/users/configure_user.php:1570 #: ../../godmode/setup/setup_auth.php:369 ../../include/functions_config.php:773 -#: ../../operation/users/user_edit.php:429 +#: ../../operation/users/user_edit.php:503 msgid "Double authentication" msgstr "Doble autentificación" @@ -12329,12 +12315,12 @@ msgstr "Puerto de MySQL" #: ../../enterprise/meta/include/functions_meta.php:1186 #: ../../enterprise/meta/include/functions_meta.php:1240 #: ../../enterprise/meta/include/functions_meta.php:1294 -#: ../../enterprise/meta/include/functions_meta.php:2106 +#: ../../enterprise/meta/include/functions_meta.php:2087 #: ../../enterprise/godmode/setup/setup_history.php:207 #: ../../enterprise/godmode/setup/setup_auth.php:1031 #: ../../enterprise/godmode/setup/setup_auth.php:1063 #: ../../include/functions_config.php:701 ../../include/functions_config.php:721 -#: ../../include/functions_config.php:1576 +#: ../../include/functions_config.php:1557 msgid "Database name" msgstr "Nombre de la base de datos" @@ -12349,7 +12335,7 @@ msgid "Integria host" msgstr "Servidor de Integria IMS" #: ../../enterprise/meta/include/functions_meta.php:1339 -#: ../../include/functions_config.php:966 +#: ../../include/functions_config.php:947 msgid "Timestamp or time comparation" msgstr "Marca o comparación temporal" @@ -12366,7 +12352,7 @@ msgid "Graph color (max)" msgstr "Color del gráfico (máx.)" #: ../../enterprise/meta/include/functions_meta.php:1404 -#: ../../include/functions_config.php:1014 +#: ../../include/functions_config.php:995 msgid "Data precision for reports" msgstr "Precisión de los datos en los informes" @@ -12387,7 +12373,7 @@ msgid "Type of charts" msgstr "Tipo de gráficos" #: ../../enterprise/meta/include/functions_meta.php:1609 -#: ../../include/functions_config.php:1063 +#: ../../include/functions_config.php:1044 msgid "Custom logo collapsed" msgstr "Icono menú reducido" @@ -12396,32 +12382,32 @@ msgid "Custom logo (white background)" msgstr "Logo personalizado (fondo blanco)" #: ../../enterprise/meta/include/functions_meta.php:1639 -#: ../../include/functions_config.php:1071 +#: ../../include/functions_config.php:1052 msgid "Custom logo login" msgstr "Logo personalizado en la pantalla de bienvenida" #: ../../enterprise/meta/include/functions_meta.php:1649 -#: ../../include/functions_config.php:1075 +#: ../../include/functions_config.php:1056 msgid "Custom splash login" msgstr "Login de Splash personalizado" #: ../../enterprise/meta/include/functions_meta.php:1679 -#: ../../include/functions_config.php:1111 +#: ../../include/functions_config.php:1092 msgid "Custom title1 login" msgstr "Título1 conexión personalizado" #: ../../enterprise/meta/include/functions_meta.php:1689 -#: ../../include/functions_config.php:1115 +#: ../../include/functions_config.php:1096 msgid "Custom title2 login" msgstr "Título2 conexión personalizado" #: ../../enterprise/meta/include/functions_meta.php:1699 -#: ../../include/functions_config.php:1103 +#: ../../include/functions_config.php:1084 msgid "Meta custom title header" msgstr "Encabezado de título personalizado" #: ../../enterprise/meta/include/functions_meta.php:1709 -#: ../../include/functions_config.php:1107 +#: ../../include/functions_config.php:1088 msgid "Meta custom subtitle header" msgstr "Encabezado de subtítulos meta personalizado" @@ -12438,24 +12424,24 @@ msgid "Custom copyright notice" msgstr "Aviso de copyright personalizado" #: ../../enterprise/meta/include/functions_meta.php:1808 -#: ../../include/functions_config.php:1047 +#: ../../include/functions_config.php:1028 msgid "Font path" msgstr "Ruta de la tipografía" #: ../../enterprise/meta/include/functions_meta.php:1818 -#: ../../include/functions_config.php:1485 +#: ../../include/functions_config.php:1466 msgid "Use data multiplier" msgstr "Usar multiplicador de datos" #: ../../enterprise/meta/include/functions_meta.php:1830 -#: ../../include/functions_config.php:1441 +#: ../../include/functions_config.php:1422 msgid "Custom report info" msgstr "Información del informe personalizado" #: ../../enterprise/meta/include/functions_meta.php:1840 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 -#: ../../include/functions_config.php:1457 +#: ../../include/functions_config.php:1438 msgid "Font family" msgstr "Tipo de letra" @@ -12463,17 +12449,17 @@ msgstr "Tipo de letra" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:163 #: ../../godmode/setup/setup_visuals.php:1253 -#: ../../include/functions_config.php:1473 +#: ../../include/functions_config.php:1454 msgid "Footer" msgstr "Pie de página" #: ../../enterprise/meta/include/functions_meta.php:1915 -#: ../../include/functions_config.php:1171 +#: ../../include/functions_config.php:1152 msgid "Use the legacy Visual Console" msgstr "Usar la consola visual heredada" #: ../../enterprise/meta/include/functions_meta.php:1926 -#: ../../include/functions_config.php:1175 +#: ../../include/functions_config.php:1156 msgid "Default expiration of the Visual Console item's cache" msgstr "Caducidad del caché de los elementos de la consola visual por defecto" @@ -12498,87 +12484,82 @@ msgstr "Evento de ejecución en bloque por defecto" msgid "Default row limit in csv log" msgstr "Límite de líneas por defecto en el log CSV" -#: ../../enterprise/meta/include/functions_meta.php:2063 -#: ../../include/functions_config.php:955 -msgid "PhantomJS cache interval" -msgstr "Intervalo de caché de PhantomJS" - -#: ../../enterprise/meta/include/functions_meta.php:2079 +#: ../../enterprise/meta/include/functions_meta.php:2060 msgid "Node address default" msgstr "Dirección del nodo por defecto" -#: ../../enterprise/meta/include/functions_meta.php:2092 -#: ../../include/functions_config.php:1563 +#: ../../enterprise/meta/include/functions_meta.php:2073 +#: ../../include/functions_config.php:1544 msgid "Active and historical database cannot be the same." msgstr "La base de datos activa y la histórica no pueden ser la misma." -#: ../../enterprise/meta/include/functions_meta.php:2096 +#: ../../enterprise/meta/include/functions_meta.php:2077 #: ../../enterprise/godmode/setup/setup_history.php:177 -#: ../../include/functions_config.php:1568 +#: ../../include/functions_config.php:1549 msgid "Host" msgstr "Host" -#: ../../enterprise/meta/include/functions_meta.php:2112 -#: ../../include/functions_config.php:1581 +#: ../../enterprise/meta/include/functions_meta.php:2093 +#: ../../include/functions_config.php:1562 msgid "Enable history database" msgstr "Activar base de datos histórica" -#: ../../enterprise/meta/include/functions_meta.php:2117 -#: ../../include/functions_config.php:1585 +#: ../../enterprise/meta/include/functions_meta.php:2098 +#: ../../include/functions_config.php:1566 msgid "Enable history event" msgstr "Activar histórico de eventos" -#: ../../enterprise/meta/include/functions_meta.php:2122 +#: ../../enterprise/meta/include/functions_meta.php:2103 #: ../../enterprise/godmode/setup/setup_history.php:222 -#: ../../include/functions_config.php:1593 +#: ../../include/functions_config.php:1574 msgid "Database user" msgstr "Usuario de la base de datos" -#: ../../enterprise/meta/include/functions_meta.php:2127 +#: ../../enterprise/meta/include/functions_meta.php:2108 #: ../../enterprise/godmode/setup/setup_history.php:237 -#: ../../include/functions_config.php:1597 +#: ../../include/functions_config.php:1578 msgid "Database password" msgstr "Contraseña de la base de datos" -#: ../../enterprise/meta/include/functions_meta.php:2145 -#: ../../include/functions_config.php:1626 +#: ../../enterprise/meta/include/functions_meta.php:2126 +#: ../../include/functions_config.php:1607 msgid "Event Days" msgstr "Eventos en día" -#: ../../enterprise/meta/include/functions_meta.php:2163 -#: ../../include/functions_config.php:1658 +#: ../../enterprise/meta/include/functions_meta.php:2144 +#: ../../include/functions_config.php:1639 msgid "Delay" msgstr "Retraso" -#: ../../enterprise/meta/include/functions_meta.php:2196 -#: ../../include/functions_config.php:1690 +#: ../../enterprise/meta/include/functions_meta.php:2177 +#: ../../include/functions_config.php:1671 msgid "Historical database purge" msgstr "Purga de la base de datos histórica" -#: ../../enterprise/meta/include/functions_meta.php:2205 -#: ../../include/functions_config.php:1698 +#: ../../enterprise/meta/include/functions_meta.php:2186 +#: ../../include/functions_config.php:1679 msgid "Historical database partitions" msgstr "Particiones de base de datos histórica" -#: ../../enterprise/meta/include/functions_meta.php:2214 -#: ../../include/functions_config.php:1706 +#: ../../enterprise/meta/include/functions_meta.php:2195 +#: ../../include/functions_config.php:1687 msgid "Historical database events purge" msgstr "Purga de eventod de base de datos histórica" -#: ../../enterprise/meta/include/functions_meta.php:2223 -#: ../../include/functions_config.php:1722 +#: ../../enterprise/meta/include/functions_meta.php:2204 +#: ../../include/functions_config.php:1703 msgid "Historical database string purge" msgstr "Purga de cadenas de base de datos histórica" #: ../../enterprise/meta/include/functions_components_meta.php:80 #: ../../enterprise/meta/include/functions_components_meta.php:135 -#: ../../godmode/menu.php:102 +#: ../../godmode/menu.php:103 msgid "Component groups" msgstr "Grupos de componentes" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 -#: ../../enterprise/godmode/menu.php:87 ../../godmode/menu.php:177 +#: ../../enterprise/godmode/menu.php:78 ../../godmode/menu.php:178 msgid "Local components" msgstr "Componentes locales" @@ -12594,13 +12575,13 @@ msgstr "Gestión de plugins" #: ../../enterprise/meta/include/functions_components_meta.php:113 #: ../../enterprise/meta/include/functions_components_meta.php:160 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:70 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:282 -#: ../../enterprise/godmode/menu.php:78 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 #: ../../enterprise/include/functions_policies.php:3756 +#: ../../godmode/modules/manage_inventory_modules.php:45 +#: ../../godmode/modules/manage_inventory_modules_form.php:37 +#: ../../godmode/menu.php:184 msgid "Inventory modules" msgstr "Módulos de inventario" @@ -12627,33 +12608,34 @@ msgstr "%s - Flexible Monitoring System" #: ../../enterprise/meta/include/functions_ui_meta.php:975 #: ../../enterprise/godmode/services/services.elements.php:884 #: ../../enterprise/godmode/services/services.elements.php:895 +#: ../../enterprise/godmode/setup/setup.php:564 #: ../../enterprise/include/class/CommandCenter.class.php:473 #: ../../enterprise/include/functions_login.php:104 -#: ../../enterprise/include/functions_login.php:468 +#: ../../enterprise/include/functions_login.php:505 #: ../../enterprise/include/lib/Metaconsole/Node.php:541 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4117 -#: ../../godmode/users/configure_user.php:2067 -#: ../../godmode/users/configure_user.php:2137 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4142 +#: ../../godmode/users/configure_user.php:2132 +#: ../../godmode/users/configure_user.php:2202 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 -#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1256 +#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1282 #: ../../include/ajax/double_auth.ajax.php:255 #: ../../include/ajax/double_auth.ajax.php:353 #: ../../include/ajax/double_auth.ajax.php:399 -#: ../../include/ajax/double_auth.ajax.php:516 ../../include/ajax/events.php:2177 -#: ../../include/functions_ui.php:290 +#: ../../include/ajax/double_auth.ajax.php:516 ../../include/ajax/events.php:2188 +#: ../../include/functions_menu.php:808 ../../include/functions_ui.php:290 #: ../../include/class/SatelliteAgent.class.php:839 -#: ../../include/class/Diagnostics.class.php:1830 -#: ../../include/functions_events.php:2846 -#: ../../include/functions_events.php:3046 ../../index.php:1578 -#: ../../operation/users/user_edit.php:1089 -#: ../../operation/users/user_edit.php:1155 ../../general/register.php:157 +#: ../../include/class/Diagnostics.class.php:1835 +#: ../../include/functions_events.php:2825 +#: ../../include/functions_events.php:3025 ../../index.php:1559 +#: ../../operation/users/user_edit.php:1163 +#: ../../operation/users/user_edit.php:1229 ../../general/register.php:157 msgid "Error" msgstr "Error" #: ../../enterprise/meta/include/functions_alerts_meta.php:137 #: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:276 +#: ../../godmode/menu.php:279 msgid "Commands" msgstr "Comandos" @@ -12668,7 +12650,7 @@ msgstr "Usuario de la contraseña a resetear" #: ../../enterprise/meta/include/reset_pass.php:103 #: ../../enterprise/meta/index.php:734 -#: ../../enterprise/include/reset_pass.php:108 ../../index.php:915 +#: ../../enterprise/include/reset_pass.php:108 ../../index.php:918 msgid "Reset password" msgstr "Restablecer la contraseña" @@ -12749,7 +12731,7 @@ msgstr "Error al eliminar la relación" msgid "Relation deleted successfully" msgstr "Relación eliminada con éxito" -#: ../../enterprise/meta/index.php:206 ../../index.php:1461 +#: ../../enterprise/meta/index.php:206 ../../index.php:1468 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 @@ -12758,7 +12740,7 @@ msgstr "Relación eliminada con éxito" msgid "Connection with server has been lost" msgstr "Se ha perdido la conexión con el servidor" -#: ../../enterprise/meta/index.php:207 ../../index.php:1462 +#: ../../enterprise/meta/index.php:207 ../../index.php:1469 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 @@ -12772,68 +12754,68 @@ msgstr "" "póngase en contacto con el administrador" #: ../../enterprise/meta/index.php:330 ../../mobile/include/user.class.php:303 -#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:370 +#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:373 msgid "Invalid code" msgstr "Código no válido" -#: ../../enterprise/meta/index.php:342 ../../index.php:382 +#: ../../enterprise/meta/index.php:342 ../../index.php:385 msgid "The code shouldn't be empty" msgstr "El código no debería estar vacío" -#: ../../enterprise/meta/index.php:355 ../../index.php:395 +#: ../../enterprise/meta/index.php:355 ../../index.php:398 msgid "Expired login" msgstr "Inicio de sesión caducado" #: ../../enterprise/meta/index.php:362 ../../enterprise/meta/index.php:368 -#: ../../index.php:402 ../../index.php:408 +#: ../../index.php:405 ../../index.php:411 msgid "Login error" msgstr "Error de conexión" -#: ../../enterprise/meta/index.php:659 ../../index.php:832 +#: ../../enterprise/meta/index.php:659 ../../index.php:835 msgid "Password changed successfully" msgstr "Contraseña modificada correctamente" -#: ../../enterprise/meta/index.php:665 ../../index.php:838 +#: ../../enterprise/meta/index.php:665 ../../index.php:841 msgid "Failed to change password" msgstr "No se pudo modificar la contraseña" -#: ../../enterprise/meta/index.php:679 ../../index.php:855 +#: ../../enterprise/meta/index.php:679 ../../index.php:858 msgid "Too much time since password change request" msgstr "Ha pasado demasiado tiempo desde la solicitud de cambio de contraseña" -#: ../../enterprise/meta/index.php:686 ../../index.php:862 +#: ../../enterprise/meta/index.php:686 ../../index.php:865 msgid "This user has not requested a password change" msgstr "Este usuario no ha solicitado un cambio de contraseña" -#: ../../enterprise/meta/index.php:702 ../../index.php:889 +#: ../../enterprise/meta/index.php:702 ../../index.php:892 msgid "Id user cannot be empty" msgstr "El ID de usuario no puede estar vacío" -#: ../../enterprise/meta/index.php:710 ../../index.php:897 +#: ../../enterprise/meta/index.php:710 ../../index.php:900 msgid "Error in reset password request" msgstr "Error en la solicitud para restablecer la contraseña" -#: ../../enterprise/meta/index.php:718 ../../index.php:905 +#: ../../enterprise/meta/index.php:718 ../../index.php:908 msgid "This user doesn't have a valid email address" msgstr "Este usuario no tiene una dirección válida de email" -#: ../../enterprise/meta/index.php:735 ../../index.php:916 +#: ../../enterprise/meta/index.php:735 ../../index.php:919 msgid "This is an automatically sent message for user " msgstr "Este es un mensaje enviado automáticamente para el usuario " -#: ../../enterprise/meta/index.php:738 ../../index.php:919 +#: ../../enterprise/meta/index.php:738 ../../index.php:922 msgid "Please click the link below to reset your password" msgstr "Haz clic en el enlace de abajo para restablecer la contraseña" -#: ../../enterprise/meta/index.php:740 ../../index.php:921 +#: ../../enterprise/meta/index.php:740 ../../index.php:924 msgid "Reset your password" msgstr "Restablecer la contraseña" -#: ../../enterprise/meta/index.php:744 ../../index.php:925 +#: ../../enterprise/meta/index.php:744 ../../index.php:928 msgid "Please do not reply to this email." msgstr "No respondas a este email." -#: ../../enterprise/meta/index.php:750 ../../index.php:930 +#: ../../enterprise/meta/index.php:750 ../../index.php:933 msgid "Error at sending the email" msgstr "Error al enviar el email" @@ -12850,12 +12832,12 @@ msgstr "" msgid "There are nodes with different MR than this (%d):" msgstr "Hay nodos con RM diferente a esta (%d):" -#: ../../enterprise/meta/index.php:980 ../../index.php:1220 +#: ../../enterprise/meta/index.php:980 ../../index.php:1223 msgid "Please keep all environment updated to same version." msgstr "Mantenga todo el entorno actualizado a la misma versión." #: ../../enterprise/meta/index.php:1049 ../../enterprise/meta/index.php:1136 -#: ../../index.php:1323 +#: ../../index.php:1326 msgid "Sorry! I can't find the page!" msgstr "No se puede encontrar la página" @@ -12878,11 +12860,11 @@ msgstr "Agentes encontrados" #: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 #: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:997 #: ../../include/functions_treeview.php:668 -#: ../../include/functions_events.php:4254 ../../operation/search_users.php:46 +#: ../../include/functions_events.php:4233 ../../operation/search_users.php:46 #: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 #: ../../operation/agentes/estado_agente.php:769 -#: ../../operation/agentes/ver_agente.php:1040 +#: ../../operation/agentes/ver_agente.php:1046 #: ../../operation/agentes/estado_generalagente.php:362 #: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 #: ../../operation/gis_maps/ajax.php:466 @@ -13007,7 +12989,7 @@ msgstr "Salir" #: ../../enterprise/meta/general/main_menu.php:196 #: ../../enterprise/operation/services/services.treeview_services.php:62 #: ../../enterprise/operation/services/services.treeview_services.php:69 -#: ../../godmode/groups/group_list.php:344 +#: ../../godmode/groups/group_list.php:349 #: ../../include/lib/Dashboard/Widgets/tree_view.php:173 #: ../../include/lib/Dashboard/Widgets/tree_view.php:717 #: ../../operation/tree.php:138 ../../operation/menu.php:53 @@ -13039,7 +13021,7 @@ msgstr "Vista de campos personalizados" #: ../../enterprise/meta/general/main_header.php:183 #: ../../enterprise/meta/general/main_menu.php:302 #: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_reporting.php:15386 +#: ../../include/functions_reporting.php:15641 #: ../../include/functions_groups.php:139 ../../operation/search_results.php:133 msgid "Reports" msgstr "Informes" @@ -13063,7 +13045,7 @@ msgstr "Asistente de plantillas" #: ../../enterprise/meta/general/main_header.php:210 #: ../../enterprise/meta/general/main_menu.php:371 -#: ../../enterprise/godmode/menu.php:125 +#: ../../enterprise/godmode/menu.php:116 #: ../../enterprise/godmode/services/services.massive.meta.php:42 #: ../../enterprise/godmode/services/services.service.php:510 #: ../../enterprise/godmode/services/services.service.php:530 @@ -13073,7 +13055,7 @@ msgstr "Asistente de plantillas" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 #: ../../enterprise/include/functions_groups.php:65 -#: ../../enterprise/operation/menu.php:77 +#: ../../enterprise/operation/menu.php:64 #: ../../enterprise/operation/services/services.service.php:83 #: ../../enterprise/operation/services/massive/services.delete.php:42 #: ../../enterprise/operation/services/massive/services.delete.php:59 @@ -13095,7 +13077,7 @@ msgstr "Asistente de plantillas" #: ../../enterprise/operation/services/services.list.php:75 #: ../../enterprise/operation/services/services.table_services.php:38 #: ../../enterprise/operation/services/services.table_services.php:58 -#: ../../operation/agentes/ver_agente.php:1666 +#: ../../operation/agentes/ver_agente.php:1684 #: ../../general/first_task/service_list.php:23 msgid "Services" msgstr "Servicios" @@ -13130,7 +13112,7 @@ msgstr "Consola visual de asistente" #: ../../enterprise/meta/general/logon_ok.php:37 #: ../../enterprise/meta/general/main_menu.php:425 #: ../../enterprise/include/functions_enterprise.php:459 -#: ../../godmode/menu.php:358 ../../godmode/setup/setup.php:151 +#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:151 #: ../../godmode/setup/setup.php:271 ../../include/functions_reports.php:913 #: ../../include/functions_reports.php:917 #: ../../include/functions_reports.php:921 @@ -13154,12 +13136,12 @@ msgstr "Gestión de agentes" #: ../../enterprise/meta/general/main_header.php:423 #: ../../enterprise/meta/general/main_menu.php:485 #: ../../enterprise/meta/general/main_menu.php:612 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 #: ../../enterprise/godmode/modules/local_components.php:157 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 #: ../../godmode/modules/manage_network_templates_form.php:32 #: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_inventory_modules.php:45 #: ../../godmode/modules/manage_network_components.php:291 +#: ../../godmode/modules/manage_inventory_modules_form.php:37 #: ../../godmode/modules/module_list.php:29 #: ../../godmode/modules/manage_network_templates.php:39 msgid "Module management" @@ -13201,7 +13183,7 @@ msgid "Command Center" msgstr "command center" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:656 ../../godmode/menu.php:385 +#: ../../enterprise/meta/general/main_menu.php:656 ../../godmode/menu.php:388 msgid "License" msgstr "Licencia" @@ -13215,8 +13197,8 @@ msgstr "Metasetup" #: ../../enterprise/meta/general/main_header.php:448 #: ../../enterprise/meta/general/main_menu.php:668 #: ../../enterprise/meta/general/main_menu.php:694 -#: ../../enterprise/meta/general/main_menu.php:715 ../../godmode/menu.php:407 -#: ../../godmode/menu.php:525 ../../general/links_menu.php:17 +#: ../../enterprise/meta/general/main_menu.php:715 ../../godmode/menu.php:410 +#: ../../godmode/menu.php:528 ../../general/links_menu.php:17 msgid "Links" msgstr "Enlaces" @@ -13258,13 +13240,13 @@ msgstr "Registros de auditoría" #: ../../godmode/reporting/reporting_builder.php:3677 #: ../../godmode/reporting/reporting_builder.php:3693 #: ../../godmode/reporting/reporting_builder.php:3722 -#: ../../operation/menu.php:321 +#: ../../operation/menu.php:325 #: ../../operation/reporting/reporting_viewer.php:211 #: ../../operation/reporting/reporting_viewer.php:216 #: ../../operation/reporting/reporting_viewer.php:229 #: ../../operation/reporting/custom_reporting.php:23 #: ../../operation/reporting/graph_viewer.php:267 -#: ../../operation/reporting/graph_viewer.php:513 +#: ../../operation/reporting/graph_viewer.php:510 msgid "Reporting" msgstr "Informes" @@ -13278,8 +13260,8 @@ msgstr "Informes" #: ../../godmode/update_manager/update_manager.php:57 #: ../../godmode/update_manager/update_manager.php:87 #: ../../godmode/agentes/configurar_agente.php:402 -#: ../../godmode/agentes/configurar_agente.php:707 ../../godmode/menu.php:325 -#: ../../godmode/menu.php:332 +#: ../../godmode/agentes/configurar_agente.php:720 ../../godmode/menu.php:328 +#: ../../godmode/menu.php:335 #: ../../godmode/module_library/module_library_view.php:48 #: ../../operation/agentes/estado_agente.php:201 #: ../../operation/gis_maps/render_view.php:173 @@ -13325,46 +13307,45 @@ msgstr "" "seguridad de la base de datos del sistema de %s" #: ../../enterprise/meta/general/main_menu.php:237 -#: ../../enterprise/godmode/agentes/configurar_agente.php:88 #: ../../enterprise/godmode/policies/policies.php:543 #: ../../enterprise/include/functions_reporting_csv.php:804 -#: ../../enterprise/operation/agentes/ver_agente.php:192 #: ../../enterprise/operation/snmpconsole/snmp_view.php:23 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/inventory/inventory.php:137 -#: ../../godmode/agentes/configurar_agente.php:723 +#: ../../godmode/agentes/configurar_agente.php:466 +#: ../../godmode/agentes/configurar_agente.php:736 #: ../../godmode/setup/setup_integria.php:314 #: ../../include/functions_reports.php:878 #: ../../include/functions_reports.php:885 #: ../../include/functions_reports.php:892 #: ../../include/functions_reports.php:893 #: ../../include/functions_reports.php:897 -#: ../../include/functions_reporting.php:2902 +#: ../../include/functions_reporting.php:3020 +#: ../../operation/agentes/ver_agente.php:1463 ../../operation/menu.php:77 +#: ../../operation/inventory/inventory.php:140 msgid "Inventory" msgstr "Inventario" -#: ../../enterprise/meta/general/main_menu.php:275 ../../operation/menu.php:435 +#: ../../enterprise/meta/general/main_menu.php:275 ../../operation/menu.php:439 msgid "Sound Console" msgstr "Consola sonora" #: ../../enterprise/meta/general/main_menu.php:276 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:380 -#: ../../godmode/menu.php:50 ../../godmode/setup/setup_ehorus.php:112 -#: ../../godmode/setup/setup_integria.php:567 ../../include/ajax/events.php:2380 -#: ../../operation/users/user_edit.php:737 -#: ../../operation/users/user_edit.php:783 ../../operation/menu.php:436 +#: ../../godmode/menu.php:51 ../../godmode/setup/setup_ehorus.php:112 +#: ../../godmode/setup/setup_integria.php:567 ../../include/ajax/events.php:2391 +#: ../../operation/users/user_edit.php:811 +#: ../../operation/users/user_edit.php:857 ../../operation/menu.php:440 msgid "Start" msgstr "Inicio" -#: ../../enterprise/meta/general/main_menu.php:278 ../../operation/menu.php:438 +#: ../../enterprise/meta/general/main_menu.php:278 ../../operation/menu.php:442 msgid "No alert" msgstr "Sin alertas" -#: ../../enterprise/meta/general/main_menu.php:279 ../../operation/menu.php:439 +#: ../../enterprise/meta/general/main_menu.php:279 ../../operation/menu.php:443 msgid "Silence alarm" msgstr "Silenciar alarma" -#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:448 +#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:452 #: ../../operation/events/sound_events.php:63 msgid "Sound Events" msgstr "Eventos sonoros" @@ -13372,18 +13353,18 @@ msgstr "Eventos sonoros" #: ../../enterprise/meta/general/main_menu.php:351 #: ../../enterprise/godmode/reporting/mysql_builder.php:80 #: ../../enterprise/godmode/reporting/mysql_builder.php:207 -#: ../../enterprise/operation/menu.php:143 +#: ../../enterprise/operation/menu.php:130 msgid "Custom SQL" msgstr "SQL personalizado" #: ../../enterprise/meta/general/main_menu.php:360 #: ../../operation/messages/message_list.php:90 -#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:521 +#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:525 msgid "Messages" msgstr "Mensajes" #: ../../enterprise/meta/general/main_menu.php:451 -#: ../../enterprise/godmode/menu.php:245 +#: ../../enterprise/godmode/menu.php:236 msgid "Alert correlation" msgstr "Correlación de alertas" @@ -13393,12 +13374,12 @@ msgstr "Correlación de alertas" msgid "Centralised management" msgstr "Gestión centralizada" -#: ../../enterprise/meta/general/main_menu.php:527 ../../godmode/menu.php:198 +#: ../../enterprise/meta/general/main_menu.php:527 ../../godmode/menu.php:201 #: ../../godmode/massive/massive_operations.php:312 msgid "Bulk operations" msgstr "Operaciones masivas" -#: ../../enterprise/meta/general/main_menu.php:777 ../../godmode/menu.php:405 +#: ../../enterprise/meta/general/main_menu.php:777 ../../godmode/menu.php:408 msgid "System audit log" msgstr "Logs de auditoría del sistema" @@ -13429,7 +13410,7 @@ msgid "Forgot your password?" msgstr "¿Has olvidado tu contraseña?" #: ../../enterprise/meta/general/login_page.php:209 -#: ../../include/functions_config.php:2550 +#: ../../include/functions_config.php:2526 msgid "PANDORA FMS NEXT GENERATION" msgstr "PANDORA FMS NEXT GENERATION" @@ -13521,8 +13502,8 @@ msgstr "O desabilite %s enterprise" #: ../../include/ajax/alert_list.ajax.php:306 #: ../../include/class/SnmpConsole.class.php:493 #: ../../include/class/SnmpConsole.class.php:545 -#: ../../include/class/SnmpConsole.class.php:887 -#: ../../operation/agentes/alerts_status.php:431 +#: ../../include/class/SnmpConsole.class.php:888 +#: ../../operation/agentes/alerts_status.php:438 msgid "Validate" msgstr "Validar" @@ -13701,7 +13682,7 @@ msgid "There are no defined users" msgstr "No hay usuarios definidos" #: ../../enterprise/extensions/disabled/check_acls.php:134 -#: ../../godmode/menu.php:142 +#: ../../godmode/menu.php:143 msgid "Module tags" msgstr "Etiquetas de módulos" @@ -13938,23 +13919,23 @@ msgstr "Éxito agregar el módulo de inventario '%s'." msgid "Error add '%s' inventory module." msgstr "Error al agregar el módulo de inventario '%s'." -#: ../../enterprise/extensions/vmware/vmware_view.php:61 +#: ../../enterprise/extensions/vmware/vmware_view.php:59 msgid "Top 5 VMs CPU Usage" msgstr "Top 5 VMs del uso de CPU" -#: ../../enterprise/extensions/vmware/vmware_view.php:70 +#: ../../enterprise/extensions/vmware/vmware_view.php:66 msgid "Top 5 VMs Memory Usage" msgstr "Top 5 VMs del uso de memoria" -#: ../../enterprise/extensions/vmware/vmware_view.php:82 +#: ../../enterprise/extensions/vmware/vmware_view.php:76 msgid "Top 5 VMs Provisioning Usage" msgstr "Top 5 VMs en uso de aprovisionamiento" -#: ../../enterprise/extensions/vmware/vmware_view.php:91 +#: ../../enterprise/extensions/vmware/vmware_view.php:83 msgid "Top 5 VMs Network Usage" msgstr "Top 5 VMs del uso de la red" -#: ../../enterprise/extensions/vmware/vmware_view.php:684 +#: ../../enterprise/extensions/vmware/vmware_view.php:669 msgid "Host ESX" msgstr "Host ESX" @@ -13968,20 +13949,20 @@ msgstr "Host ESX" #: ../../enterprise/operation/agentes/tag_view.php:1023 #: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 #: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 -#: ../../include/functions.php:1380 ../../include/functions.php:1419 +#: ../../include/functions.php:1406 ../../include/functions.php:1445 #: ../../include/functions_modules.php:2883 #: ../../include/functions_modules.php:2889 -#: ../../include/functions_modules.php:4120 -#: ../../include/functions_modules.php:4152 ../../include/functions_ui.php:3846 -#: ../../include/functions_ui.php:3912 ../../include/class/Tree.class.php:655 +#: ../../include/functions_modules.php:4195 +#: ../../include/functions_modules.php:4227 ../../include/functions_ui.php:3850 +#: ../../include/functions_ui.php:3916 ../../include/class/Tree.class.php:655 #: ../../include/lib/Module.php:572 ../../include/functions_events.php:64 #: ../../include/functions_events.php:116 ../../include/functions_events.php:179 #: ../../operation/agentes/status_monitor.php:1592 #: ../../operation/agentes/status_monitor.php:1598 #: ../../operation/agentes/status_monitor.php:1695 #: ../../operation/agentes/status_monitor.php:1701 -#: ../../operation/agentes/pandora_networkmap.view.php:1811 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 +#: ../../operation/agentes/pandora_networkmap.view.php:1815 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 #: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141 #: ../../operation/events/events.php:603 ../../operation/events/events.php:680 #: ../../operation/events/events.php:706 @@ -13998,20 +13979,20 @@ msgstr "NORMAL" #: ../../enterprise/operation/agentes/tag_view.php:1039 #: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 -#: ../../include/functions.php:1368 ../../include/functions.php:1400 +#: ../../include/functions.php:1394 ../../include/functions.php:1426 #: ../../include/functions_modules.php:2877 #: ../../include/functions_modules.php:2893 -#: ../../include/functions_modules.php:4124 -#: ../../include/functions_modules.php:4144 ../../include/functions_ui.php:3852 -#: ../../include/functions_ui.php:3922 ../../include/class/Tree.class.php:625 +#: ../../include/functions_modules.php:4199 +#: ../../include/functions_modules.php:4219 ../../include/functions_ui.php:3856 +#: ../../include/functions_ui.php:3926 ../../include/class/Tree.class.php:625 #: ../../include/lib/Module.php:556 ../../include/functions_events.php:67 #: ../../include/functions_events.php:120 ../../include/functions_events.php:164 #: ../../operation/agentes/status_monitor.php:1606 #: ../../operation/agentes/status_monitor.php:1619 #: ../../operation/agentes/status_monitor.php:1711 #: ../../operation/agentes/status_monitor.php:1717 -#: ../../operation/agentes/pandora_networkmap.view.php:1805 -#: ../../operation/agentes/pandora_networkmap.view.php:1824 +#: ../../operation/agentes/pandora_networkmap.view.php:1809 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 #: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149 #: ../../operation/events/events.php:578 ../../operation/events/events.php:686 #: ../../operation/events/events.php:711 @@ -14029,12 +14010,12 @@ msgstr "CRÍTICO" #: ../../enterprise/operation/agentes/tag_view.php:1055 #: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 #: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1371 ../../include/functions.php:1407 +#: ../../include/functions.php:1397 ../../include/functions.php:1433 #: ../../include/functions_modules.php:2880 #: ../../include/functions_modules.php:2897 -#: ../../include/functions_modules.php:4128 -#: ../../include/functions_modules.php:4160 ../../include/functions_ui.php:3840 -#: ../../include/functions_ui.php:3917 ../../include/class/Tree.class.php:633 +#: ../../include/functions_modules.php:4203 +#: ../../include/functions_modules.php:4235 ../../include/functions_ui.php:3844 +#: ../../include/functions_ui.php:3921 ../../include/class/Tree.class.php:633 #: ../../include/class/NetworkMap.class.php:2938 ../../include/lib/Module.php:560 #: ../../include/functions_events.php:78 ../../include/functions_events.php:112 #: ../../include/functions_events.php:182 @@ -14042,8 +14023,8 @@ msgstr "CRÍTICO" #: ../../operation/agentes/status_monitor.php:1640 #: ../../operation/agentes/status_monitor.php:1727 #: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1808 -#: ../../operation/agentes/pandora_networkmap.view.php:1829 +#: ../../operation/agentes/pandora_networkmap.view.php:1812 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157 #: ../../operation/events/events.php:608 ../../operation/events/events.php:674 #: ../../operation/events/events.php:728 @@ -14064,12 +14045,12 @@ msgstr "ADVERTENCIA" #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 #: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1384 ../../include/functions.php:1410 +#: ../../include/functions.php:1410 ../../include/functions.php:1436 #: ../../include/functions_modules.php:2889 #: ../../include/functions_modules.php:2893 #: ../../include/functions_modules.php:2897 -#: ../../include/functions_modules.php:4132 ../../include/functions_ui.php:3859 -#: ../../include/functions_ui.php:3937 ../../include/class/Tree.class.php:639 +#: ../../include/functions_modules.php:4207 ../../include/functions_ui.php:3863 +#: ../../include/functions_ui.php:3941 ../../include/class/Tree.class.php:639 #: ../../include/lib/Module.php:563 ../../include/functions_events.php:81 #: ../../include/functions_events.php:125 ../../include/functions_events.php:185 #: ../../operation/agentes/status_monitor.php:1648 @@ -14080,9 +14061,9 @@ msgstr "ADVERTENCIA" #: ../../operation/agentes/status_monitor.php:1717 #: ../../operation/agentes/status_monitor.php:1727 #: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 -#: ../../operation/agentes/pandora_networkmap.view.php:1824 -#: ../../operation/agentes/pandora_networkmap.view.php:1829 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141 #: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157 #: ../../operation/events/events.php:614 ../../operation/events/events.php:693 @@ -14208,11 +14189,11 @@ msgstr "Mapa" #: ../../enterprise/extensions/vmware/vmware_view.php:1311 #: ../../enterprise/extensions/vmware/vmware_view.php:1348 -#: ../../godmode/users/configure_user.php:1299 +#: ../../godmode/users/configure_user.php:1358 #: ../../godmode/massive/massive_edit_users.php:281 #: ../../mobile/include/functions_web.php:22 #: ../../include/class/OrderInterpreter.class.php:219 -#: ../../operation/users/user_edit.php:366 ../../operation/menu.php:349 +#: ../../operation/users/user_edit.php:440 ../../operation/menu.php:353 msgid "Dashboard" msgstr "Dashboard" @@ -14323,7 +14304,7 @@ msgid "Power Status: " msgstr "Estado: " #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1844 +#: ../../operation/agentes/pandora_networkmap.view.php:1848 msgid "Status: " msgstr "Estado: " @@ -14464,7 +14445,7 @@ msgstr "Estado advertencia" #: ../../godmode/massive/massive_edit_modules.php:656 #: ../../godmode/massive/massive_edit_modules.php:885 #: ../../godmode/alerts/configure_alert_template.php:850 -#: ../../include/functions_reporting_html.php:5422 +#: ../../include/functions_reporting_html.php:5441 #: ../../include/functions_treeview.php:92 #: ../../include/functions_treeview.php:104 #: ../../include/functions_alerts.php:676 @@ -14489,7 +14470,7 @@ msgstr "Mín." #: ../../godmode/massive/massive_edit_modules.php:671 #: ../../godmode/massive/massive_edit_modules.php:887 #: ../../godmode/alerts/configure_alert_template.php:862 -#: ../../include/functions_reporting_html.php:5423 +#: ../../include/functions_reporting_html.php:5442 #: ../../include/functions_treeview.php:92 #: ../../include/functions_treeview.php:104 #: ../../include/functions_alerts.php:675 @@ -14529,6 +14510,12 @@ msgstr "Str." msgid "Percentage" msgstr "Porcentaje" +#: ../../enterprise/godmode/modules/configure_local_component.php:346 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:568 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:659 +msgid "Defines threshold as a percentage of value decrease/increment" +msgstr "Define el umbral como un porcentaje de disminución/incremento del valor" + #: ../../enterprise/godmode/modules/configure_local_component.php:350 #: ../../godmode/modules/manage_network_components_form_common.php:201 #: ../../godmode/modules/manage_network_components_form_wizard.php:412 @@ -14627,7 +14614,7 @@ msgstr "A crítico" #: ../../godmode/modules/manage_network_components_form_common.php:316 #: ../../godmode/agentes/module_manager_editor_common.php:547 #: ../../godmode/massive/massive_edit_modules.php:1042 -#: ../../include/functions_reporting.php:4297 +#: ../../include/functions_reporting.php:4560 msgid "Historical data" msgstr "Histórico de datos" @@ -14658,7 +14645,7 @@ msgstr "Solo debe establecerse este valor en los módulos asíncronos." #: ../../godmode/modules/manage_network_components_form_common.php:319 #: ../../godmode/agentes/module_manager_editor_common.php:679 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:6783 +#: ../../include/functions_reporting.php:6998 msgid "Min. Value" msgstr "Valor mínimo" @@ -14672,7 +14659,7 @@ msgstr "Cualquier valor por debajo de este número será descartado." #: ../../godmode/modules/manage_network_components_form_common.php:321 #: ../../godmode/agentes/module_manager_editor_common.php:683 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:6779 +#: ../../include/functions_reporting.php:6994 msgid "Max. Value" msgstr "Valor máximo" @@ -14891,112 +14878,6 @@ msgstr "Por favor introduce un máximo de crítico mayor que el mínimo de crít msgid "Please introduce a positicve percentage value" msgstr "Introduzca un valor porcentual positivo" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:40 -msgid "To manage inventory plugin you must activate centralized management" -msgstr "Para administrar el plugin de inventario active la gestión centralizada" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:350 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature " -"from centralized manager console. Go to %s to manage it." -msgstr "" -"Esta consola no es el administrador de este entorno, administre esta función " -"desde la consola del administrador centralizado. Vaya a %s para gestionarlo." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 -#: ../../enterprise/operation/log/log_viewer.php:459 -#: ../../godmode/netflow/nf_edit.php:47 -#: ../../operation/netflow/nf_live_view.php:141 -msgid "Not supported in Windows systems" -msgstr "No compatible con sistemas Windows" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:121 -msgid "Successfully created inventory module" -msgstr "Inventario de módulo creado correctamente" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:122 -msgid "Error creating inventory module" -msgstr "Error al crear módulo del inventario" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:149 -#: ../../enterprise/godmode/agentes/inventory_manager.php:128 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 -msgid "Successfully updated inventory module" -msgstr "Módulo del inventario actualizado correctamente" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:150 -#: ../../enterprise/godmode/agentes/inventory_manager.php:130 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 -msgid "Error updating inventory module" -msgstr "Error al actualizar el módulo del inventario" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:168 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:189 -#: ../../enterprise/godmode/agentes/inventory_manager.php:100 -msgid "Successfully deleted inventory module" -msgstr "Módulo del inventario eliminado correctamente" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:169 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:190 -#: ../../enterprise/godmode/agentes/inventory_manager.php:102 -msgid "Error deleting inventory module" -msgstr "Error al eliminar el módulo del inventario" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:223 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:256 -#: ../../enterprise/godmode/modules/local_components.php:446 -#: ../../godmode/modules/manage_nc_groups.php:194 -#: ../../godmode/modules/manage_network_components.php:581 -#: ../../godmode/modules/manage_network_templates.php:114 -msgid "Successfully multiple deleted" -msgstr "Supresión múltiple correcta" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:224 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:257 -#: ../../enterprise/godmode/modules/local_components.php:447 -#: ../../godmode/modules/manage_nc_groups.php:195 -#: ../../godmode/modules/manage_network_components.php:582 -#: ../../godmode/modules/manage_network_templates.php:115 -msgid "Not deleted. Error deleting multiple data" -msgstr "No borrado. Error al borrar datos múltiples." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:281 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 -msgid "Interpreter" -msgstr "Intérprete" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:290 -msgid "No inventory modules defined" -msgstr "No hay módulos de inventario definidos" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:311 -msgid "Local module" -msgstr "Módulo local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:313 -msgid "Remote/Local" -msgstr "Remoto/Local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:359 -msgid "" -"The configurations of inventory modules from the nodes have been unified.\n" -"\t\tFrom this point on, changes to the inventory scripts must be made through " -"this screen." -msgstr "" -"Las configuraciones de los módulos de inventario de los nodos se han " -"unificado.\n" -"\t\tA partir de este momento, los cambios en los scripts de inventario deben " -"realizarse a través de esta pantalla." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:361 -msgid "You can find more information at:" -msgstr "Encontrará más información en:" - #: ../../enterprise/godmode/modules/local_components.php:141 #: ../../godmode/modules/manage_network_components.php:197 #: ../../godmode/alerts/configure_alert_template.php:191 @@ -15007,8 +14888,8 @@ msgstr "Creado correctamente desde %s" #: ../../enterprise/godmode/modules/local_components.php:142 #: ../../enterprise/godmode/modules/local_components.php:320 #: ../../enterprise/godmode/policies/policies.php:172 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:126 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:129 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 #: ../../enterprise/godmode/setup/setup_metaconsole.php:126 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 @@ -15021,19 +14902,19 @@ msgstr "Creado correctamente desde %s" #: ../../godmode/modules/manage_nc_groups.php:85 #: ../../godmode/modules/manage_network_components.php:200 #: ../../godmode/modules/manage_network_components.php:429 -#: ../../godmode/users/configure_user.php:555 +#: ../../godmode/users/configure_user.php:569 #: ../../godmode/agentes/configurar_agente.php:362 -#: ../../godmode/agentes/configurar_agente.php:887 +#: ../../godmode/agentes/configurar_agente.php:900 #: ../../godmode/agentes/planned_downtime.editor.php:642 -#: ../../godmode/alerts/alert_commands.php:645 +#: ../../godmode/alerts/alert_commands.php:646 #: ../../godmode/alerts/configure_alert_template.php:192 #: ../../godmode/alerts/configure_alert_template.php:527 #: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:67 #: ../../godmode/setup/gis.php:49 #: ../../godmode/reporting/reporting_builder.item_editor.php:5920 -#: ../../include/functions_alerts.php:2751 -#: ../../include/functions_planned_downtimes.php:112 -#: ../../include/functions_planned_downtimes.php:844 +#: ../../include/functions_alerts.php:2755 +#: ../../include/functions_planned_downtimes.php:113 +#: ../../include/functions_planned_downtimes.php:845 #: ../../operation/agentes/pandora_networkmap.php:140 #: ../../operation/agentes/pandora_networkmap.php:378 msgid "Could not be created" @@ -15067,7 +14948,7 @@ msgstr "Creado correctamente" #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1334 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1360 #: ../../enterprise/include/ajax/servers.ajax.php:331 #: ../../enterprise/tools/ipam/ipam_action.php:277 #: ../../enterprise/tools/ipam/ipam_massive.php:48 @@ -15078,8 +14959,8 @@ msgstr "Creado correctamente" #: ../../godmode/alerts/alert_templates.php:157 #: ../../godmode/alerts/configure_alert_template.php:555 #: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:320 -#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2751 -#: ../../include/functions_planned_downtimes.php:122 +#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2755 +#: ../../include/functions_planned_downtimes.php:123 #: ../../operation/agentes/pandora_networkmap.php:216 #: ../../operation/agentes/pandora_networkmap.php:515 msgid "Could not be updated" @@ -15091,6 +14972,24 @@ msgstr "No se pudo actualizar" msgid "Updated successfully" msgstr "Actualizado correctamente" +#: ../../enterprise/godmode/modules/local_components.php:446 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/modules/manage_inventory_modules.php:223 +#: ../../godmode/modules/manage_inventory_modules.php:256 +#: ../../godmode/modules/manage_network_components.php:581 +#: ../../godmode/modules/manage_network_templates.php:114 +msgid "Successfully multiple deleted" +msgstr "Supresión múltiple correcta" + +#: ../../enterprise/godmode/modules/local_components.php:447 +#: ../../godmode/modules/manage_nc_groups.php:195 +#: ../../godmode/modules/manage_inventory_modules.php:224 +#: ../../godmode/modules/manage_inventory_modules.php:257 +#: ../../godmode/modules/manage_network_components.php:582 +#: ../../godmode/modules/manage_network_templates.php:115 +msgid "Not deleted. Error deleting multiple data" +msgstr "No borrado. Error al borrar datos múltiples." + #: ../../enterprise/godmode/modules/local_components.php:550 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2854 #: ../../godmode/modules/manage_network_components.php:662 @@ -15107,7 +15006,7 @@ msgstr "Búsqueda de lista de concidencias por nombre, descripción o datos." #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 #: ../../godmode/modules/manage_network_components.php:862 #: ../../godmode/modules/manage_network_components.php:863 -#: ../../godmode/agentes/module_manager.php:1226 +#: ../../godmode/agentes/module_manager.php:1231 #: ../../godmode/snmpconsole/snmp_alert.php:1347 #: ../../godmode/snmpconsole/snmp_alert.php:1348 #: ../../godmode/alerts/alert_actions.php:435 @@ -15116,64 +15015,6 @@ msgstr "Búsqueda de lista de concidencias por nombre, descripción o datos." msgid "Duplicate" msgstr "Duplicar" -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:75 -#: ../../enterprise/godmode/agentes/inventory_manager.php:165 -msgid "Inventory module error" -msgstr "Error del módulo del inventario" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:120 -msgid "Left blank for the LOCAL inventory modules" -msgstr "Dejar en blanco para los módulos de inventario LOCALES" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 -msgid "Block Mode" -msgstr "Modo bloqueo" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 -#: ../../godmode/massive/massive_standby_alerts.php:224 -#: ../../godmode/massive/massive_standby_alerts.php:259 -#: ../../godmode/massive/massive_enable_disable_alerts.php:196 -#: ../../godmode/massive/massive_enable_disable_alerts.php:231 -#: ../../include/class/ModuleTemplates.class.php:1209 -msgid "Format" -msgstr "Formato" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 -msgid "separate fields with " -msgstr "Separar campos con " - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:129 -msgid "Script mode" -msgstr "Modo script" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:131 -msgid "Use script" -msgstr "Usar script" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:139 -msgid "Use inline code" -msgstr "Usar código en línea" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:148 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 -msgid "Script path" -msgstr "Ruta del script" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:151 -#: ../../include/ajax/double_auth.ajax.php:149 -#: ../../include/ajax/double_auth.ajax.php:292 -msgid "Code" -msgstr "Código" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:152 -msgid "" -"Here is placed the script for the REMOTE inventory modules Local inventory " -"modules don't use this field" -msgstr "" -"Aquí se coloca el script para los módulos de inventario REMOTOS. Los módulos " -"de inventario locales no usan este campo." - #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:83 msgid "Cannot delete rule from autoconfiguration" msgstr "No se ha podido borrar la regla de autoconfiguración" @@ -15228,6 +15069,18 @@ msgstr "" msgid "Agent autoconfiguration list" msgstr "Lista de autoconfiguración de agentes" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:350 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 +#: ../../godmode/modules/manage_inventory_modules.php:63 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature " +"from centralized manager console. Go to %s to manage it." +msgstr "" +"Esta consola no es el administrador de este entorno, administre esta función " +"desde la consola del administrador centralizado. Vaya a %s para gestionarlo." + #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 msgid "Autoconfiguration" msgstr "Autoconfiguración" @@ -15237,7 +15090,7 @@ msgstr "Autoconfiguración" #: ../../godmode/modules/manage_network_components_form_wizard.php:661 #: ../../godmode/agentes/planned_downtime.list.php:660 #: ../../godmode/agentes/planned_downtime.editor.php:878 -#: ../../include/functions_reporting_html.php:6303 +#: ../../include/functions_reporting_html.php:6322 msgid "Execution" msgstr "Ejecución" @@ -15393,7 +15246,7 @@ msgstr "Sin cambios" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 #: ../../godmode/agentes/agent_manager.php:505 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:4869 +#: ../../include/functions_events.php:4848 #: ../../operation/agentes/estado_generalagente.php:408 msgid "Secondary groups" msgstr "Grupos secundarios" @@ -15515,7 +15368,7 @@ msgstr "Activar" #: ../../enterprise/include/lib/Metaconsole/Node.php:1140 #: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:800 #: ../../godmode/massive/massive_edit_users.php:519 -#: ../../godmode/alerts/alert_list.list.php:1017 ../../include/functions.php:3377 +#: ../../godmode/alerts/alert_list.list.php:1017 ../../include/functions.php:3403 #: ../../include/class/SatelliteAgent.class.php:1216 msgid "Disable" msgstr "Desactivar" @@ -15533,10 +15386,10 @@ msgstr "Mostrar agente" msgid "This collection has not been added to any agents" msgstr "Esta colección no ha sido añadida a ningún agente." -#: ../../enterprise/godmode/agentes/configurar_agente.php:112 +#: ../../enterprise/godmode/agentes/configurar_agente.php:88 #: ../../enterprise/godmode/policies/policy.php:82 #: ../../enterprise/include/functions_policies.php:3833 -#: ../../godmode/agentes/configurar_agente.php:729 +#: ../../godmode/agentes/configurar_agente.php:742 msgid "Agent plugins" msgstr "Plugins del agente" @@ -15563,20 +15416,20 @@ msgid "Show files" msgstr "Mostrar archivos" #: ../../enterprise/godmode/agentes/collection_manager.php:196 -#: ../../enterprise/operation/agentes/agent_inventory.php:280 #: ../../enterprise/operation/log/log_viewer.php:1257 #: ../../enterprise/operation/log/log_viewer.php:1265 -#: ../../enterprise/operation/inventory/inventory.php:475 -#: ../../enterprise/operation/inventory/inventory.php:518 #: ../../godmode/reporting/reporting_builder.php:1260 -#: ../../include/functions_reporting.php:2977 +#: ../../include/functions_reporting.php:3095 +#: ../../operation/agentes/agent_inventory.php:280 +#: ../../operation/inventory/inventory.php:478 +#: ../../operation/inventory/inventory.php:521 msgid "No data found." msgstr "No se encontraron datos." #: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 #: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../godmode/agentes/module_manager.php:883 +#: ../../godmode/agentes/inventory_manager.php:220 +#: ../../godmode/agentes/module_manager.php:884 #: ../../godmode/snmpconsole/snmp_alert.php:1254 #: ../../godmode/reporting/reporting_builder.list_items.php:371 #: ../../godmode/reporting/graph_builder.graph_editor.php:211 @@ -15681,46 +15534,6 @@ msgstr "Seleccionar filtro" msgid "Percentual value" msgstr "Valor porcentual" -#: ../../enterprise/godmode/agentes/inventory_manager.php:84 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 -msgid "Successfully added inventory module" -msgstr "Módulo añadido al inventario correctamente" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:86 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 -msgid "Error adding inventory module" -msgstr "Error al añadir el módulo al inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:89 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 -msgid "The inventory of the module already exists" -msgstr "El inventario del módulo ya existe" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:110 -msgid "Successfully forced inventory module" -msgstr "Módulo del inventario forzado correctamente" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:112 -msgid "Error forcing inventory module" -msgstr "Error al forzar un módulo del inventario" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:223 -#: ../../enterprise/include/functions_ui.php:92 -msgid "Target" -msgstr "Destino" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:258 -#: ../../enterprise/include/functions_ipam.php:1386 -#: ../../enterprise/operation/services/services.list.php:639 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:586 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:676 -#: ../../include/ajax/module.php:1065 ../../include/functions_ui.php:1162 -#: ../../operation/visual_console/view.php:406 -#: ../../operation/agentes/group_view.php:221 -#: ../../operation/agentes/group_view.php:283 -msgid "Force" -msgstr "Forzar" - #: ../../enterprise/godmode/agentes/collections.data.php:384 msgid "Collection updated successfully" msgstr "Collección actualizada con éxito" @@ -15803,7 +15616,7 @@ msgstr "Nuevo plugin" #: ../../enterprise/godmode/agentes/plugins_manager.php:192 #: ../../enterprise/godmode/policies/policy_plugins.php:185 -#: ../../enterprise/godmode/policies/policies.php:539 ../../godmode/menu.php:309 +#: ../../enterprise/godmode/policies/policies.php:539 ../../godmode/menu.php:312 msgid "Plugins" msgstr "Plugins" @@ -15828,6 +15641,10 @@ msgstr "Configuración manual" msgid "No component was found" msgstr "No se encontró ningún componente" +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:114 +msgid "macro_help" +msgstr "macro_help" + #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 msgid "Show configuration data" msgstr "Mostrar datos de configuración" @@ -15862,7 +15679,7 @@ msgid "Delete remote conf agent files" msgstr "Eliminar archivos de agente de configuración remota" #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1351 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 #: ../../godmode/agentes/agent_manager.php:543 msgid "Delete remote configuration file" msgstr "Borrar el archivo de configuración remota" @@ -15972,7 +15789,7 @@ msgid "Custom ID" msgstr "ID personalizado" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:498 -#: ../../godmode/agentes/module_manager.php:1165 +#: ../../godmode/agentes/module_manager.php:1166 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." @@ -16040,7 +15857,7 @@ msgstr "Editor de mapas de red vacío" #: ../../operation/visual_console/view.php:228 #: ../../operation/agentes/pandora_networkmap.editor.php:232 #: ../../operation/agentes/pandora_networkmap.php:672 -#: ../../operation/menu.php:310 +#: ../../operation/menu.php:314 msgid "Topology maps" msgstr "Mapas topológicos" @@ -16048,14 +15865,14 @@ msgstr "Mapas topológicos" #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 #: ../../operation/agentes/pandora_networkmap.editor.php:236 #: ../../operation/agentes/pandora_networkmap.php:676 -#: ../../operation/agentes/pandora_networkmap.view.php:2274 +#: ../../operation/agentes/pandora_networkmap.view.php:2278 msgid "Networkmap" msgstr "Mapa de red" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 #: ../../operation/agentes/pandora_networkmap.editor.php:274 -#: ../../operation/agentes/pandora_networkmap.view.php:2280 +#: ../../operation/agentes/pandora_networkmap.view.php:2284 msgid "Not found networkmap." msgstr "No se encontró ningún mapa de red." @@ -16170,7 +15987,7 @@ msgstr "Crear un módulo de análisis web nuevo" #: ../../enterprise/godmode/policies/policy_queue.php:218 #: ../../enterprise/godmode/policies/policies.php:272 #: ../../enterprise/godmode/policies/policy_linking.php:117 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:318 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:320 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 #: ../../enterprise/godmode/policies/policy_collections.php:50 #: ../../enterprise/godmode/policies/policy_agents.php:326 @@ -16204,7 +16021,7 @@ msgstr "No se puede añadir a los plugins pendientes de eliminar." #: ../../enterprise/godmode/policies/policy_plugins.php:70 #: ../../enterprise/godmode/policies/policy_alerts.php:259 #: ../../enterprise/godmode/policies/policy_modules.php:1321 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:152 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 #: ../../enterprise/godmode/policies/policy_collections.php:103 #: ../../enterprise/godmode/policies/policy_agents.php:113 @@ -16215,7 +16032,7 @@ msgstr "Eliminación revertida correctamente" #: ../../enterprise/godmode/policies/policy_plugins.php:71 #: ../../enterprise/godmode/policies/policy_alerts.php:260 #: ../../enterprise/godmode/policies/policy_modules.php:1322 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:153 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 #: ../../enterprise/godmode/policies/policy_collections.php:104 #: ../../enterprise/godmode/policies/policy_agents.php:114 @@ -16250,35 +16067,35 @@ msgstr "Esta política se está aplicando y no puede ser modificada" #: ../../enterprise/godmode/policies/policy_alerts.php:153 #: ../../enterprise/godmode/policies/policy_modules.php:536 #: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../godmode/agentes/configurar_agente.php:2234 +#: ../../godmode/agentes/configurar_agente.php:2250 #: ../../godmode/agentes/modificar_agente.php:278 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/alerts/alert_list.php:401 +#: ../../godmode/alerts/alert_list.php:419 #: ../../include/ajax/alert_list.ajax.php:381 msgid "Could not be disabled" msgstr "No se pudo desactivar" #: ../../enterprise/godmode/policies/policy_alerts.php:178 #: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:427 +#: ../../godmode/alerts/alert_list.php:445 msgid "Successfully set standby" msgstr "Modo standby activado" #: ../../enterprise/godmode/policies/policy_alerts.php:179 #: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:428 +#: ../../godmode/alerts/alert_list.php:446 msgid "Could not be set standby" msgstr "No se pudo establecer el modo standby" #: ../../enterprise/godmode/policies/policy_alerts.php:204 #: ../../godmode/massive/massive_standby_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:454 +#: ../../godmode/alerts/alert_list.php:472 msgid "Successfully set off standby" msgstr "Se ha desactivado el modo standby" #: ../../enterprise/godmode/policies/policy_alerts.php:205 #: ../../godmode/massive/massive_standby_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:455 +#: ../../godmode/alerts/alert_list.php:473 msgid "Could not be set off standby" msgstr "No se pudo desactivar el modo standby" @@ -16291,7 +16108,7 @@ msgid " could not be created" msgstr " no se ha podido crear" #: ../../enterprise/godmode/policies/policy_alerts.php:255 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:145 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:147 msgid "" "Successfully added to delete pending alerts. Will be deleted in the next " "policy application." @@ -16300,12 +16117,12 @@ msgstr "" "en la próxima aplicación de políticas." #: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:202 msgid "Added action successfuly" msgstr "Acción añadida correctamente" #: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:203 #: ../../enterprise/godmode/policies/policy_agents.php:251 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 #: ../../godmode/massive/massive_delete_action_alerts.php:175 @@ -16320,12 +16137,12 @@ msgid "Could not be added" msgstr "No se pudo añadir" #: ../../enterprise/godmode/policies/policy_alerts.php:302 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:173 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:175 msgid "Deleted action successfuly" msgstr "Acción eliminada correctamente" #: ../../enterprise/godmode/policies/policy_alerts.php:428 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:468 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:470 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2404 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 #: ../../godmode/alerts/alert_list.list.php:650 @@ -16334,7 +16151,7 @@ msgid "Always" msgstr "Siempre" #: ../../enterprise/godmode/policies/policy_alerts.php:430 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:470 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:472 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3374 #: ../../godmode/alerts/alert_list.list.php:652 #: ../../include/class/Diagnostics.class.php:1184 @@ -16343,7 +16160,7 @@ msgid "On" msgstr "Activado" #: ../../enterprise/godmode/policies/policy_alerts.php:434 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:474 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3378 #: ../../godmode/alerts/alert_list.list.php:656 msgid "Until" @@ -16351,15 +16168,15 @@ msgstr "Hasta" #: ../../enterprise/godmode/policies/policy_alerts.php:529 #: ../../enterprise/godmode/policies/policy_modules.php:1578 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:542 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:544 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 -#: ../../enterprise/godmode/policies/policy_agents.php:1066 -#: ../../enterprise/godmode/policies/policy_agents.php:1535 +#: ../../enterprise/godmode/policies/policy_agents.php:1102 +#: ../../enterprise/godmode/policies/policy_agents.php:1571 msgid "Undo deletion" msgstr "Deshacer eliminación" #: ../../enterprise/godmode/policies/policy_alerts.php:596 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:609 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:611 #: ../../godmode/massive/massive_add_action_alerts.php:253 #: ../../godmode/alerts/alert_list.list.php:767 #: ../../godmode/alerts/alert_list.builder.php:127 @@ -16397,7 +16214,7 @@ msgid "Set standby" msgstr "Activar modo standby" #: ../../enterprise/godmode/policies/policy_alerts.php:754 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:517 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:519 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 @@ -16501,14 +16318,14 @@ msgid "Could not be added to deleted all modules." msgstr "No se pudo añadir a la lista para eliminar todos los módulos." #: ../../enterprise/godmode/policies/policy_modules.php:1368 -#: ../../godmode/agentes/configurar_agente.php:2147 +#: ../../godmode/agentes/configurar_agente.php:2163 #: ../../include/functions_reports.php:963 #, php-format msgid "copy of %s" msgstr "copia de %s" #: ../../enterprise/godmode/policies/policy_modules.php:1386 -#: ../../godmode/agentes/configurar_agente.php:2161 +#: ../../godmode/agentes/configurar_agente.php:2177 #, php-format msgid "copy of %s (%d)" msgstr "copia de %s (%d)" @@ -16538,15 +16355,15 @@ msgstr "Módulo habilitado" #: ../../enterprise/godmode/policies/policy_modules.php:1533 #: ../../enterprise/godmode/policies/policy_modules.php:1534 -#: ../../godmode/agentes/module_manager.php:1203 -#: ../../godmode/agentes/module_manager.php:1204 +#: ../../godmode/agentes/module_manager.php:1208 +#: ../../godmode/agentes/module_manager.php:1209 msgid "Enable module" msgstr "Habilitar el módulo" #: ../../enterprise/godmode/policies/policy_modules.php:1543 #: ../../enterprise/godmode/policies/policy_modules.php:1544 -#: ../../godmode/agentes/module_manager.php:1213 -#: ../../godmode/agentes/module_manager.php:1214 +#: ../../godmode/agentes/module_manager.php:1218 +#: ../../godmode/agentes/module_manager.php:1219 msgid "Disable module" msgstr "Deshabilitar el módulo" @@ -16627,8 +16444,8 @@ msgid "Update pending agents" msgstr "Actualizar agentes pendientes" #: ../../enterprise/godmode/policies/policy_queue.php:337 -#: ../../enterprise/godmode/policies/policy_agents.php:1012 -#: ../../enterprise/godmode/policies/policy_agents.php:1493 +#: ../../enterprise/godmode/policies/policy_agents.php:1048 +#: ../../enterprise/godmode/policies/policy_agents.php:1529 msgid "Add to apply queue" msgstr "Añadir a la cola para aplicarlo" @@ -16719,7 +16536,7 @@ msgstr "Filtros de cola" #: ../../enterprise/godmode/policies/policy_linking.php:153 #: ../../include/functions_massive_operations.php:191 #: ../../include/lib/Dashboard/Widget.php:596 -#: ../../include/functions_events.php:4734 +#: ../../include/functions_events.php:4713 msgid "Node" msgstr "Nodo" @@ -16754,21 +16571,21 @@ msgstr "Gestión de políticas" #: ../../enterprise/godmode/policies/policies.php:239 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 #: ../../godmode/alerts/alert_actions.php:129 -#: ../../godmode/alerts/alert_commands.php:711 +#: ../../godmode/alerts/alert_commands.php:712 #: ../../godmode/reporting/map_builder.php:315 #: ../../godmode/reporting/map_builder.php:322 #: ../../godmode/reporting/reporting_builder.php:737 #: ../../include/functions_agents.php:1022 -#: ../../include/functions_planned_downtimes.php:978 +#: ../../include/functions_planned_downtimes.php:979 msgid "Successfully copied" msgstr "Copia realizada correctamente" #: ../../enterprise/godmode/policies/policies.php:240 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 #: ../../godmode/alerts/alert_actions.php:130 -#: ../../godmode/alerts/alert_commands.php:712 +#: ../../godmode/alerts/alert_commands.php:713 #: ../../godmode/reporting/reporting_builder.php:738 -#: ../../include/functions_planned_downtimes.php:975 +#: ../../include/functions_planned_downtimes.php:976 msgid "Could not be copied" msgstr "No se ha podido copiar" @@ -16864,32 +16681,32 @@ msgstr "Lista de módulos sin enlazar" msgid "No module specified" msgstr "Ningún módulo especificado" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:125 msgid "Created successfuly" msgstr "Creado correctamente" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:129 msgid "Duplicated alert" msgstr "Alerta duplicada" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:381 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 #: ../../godmode/alerts/alert_list.list.php:188 msgid "Alert control filter" msgstr "Filtro de control de alertas" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:392 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:394 msgid "Modules in policy per agents" msgstr "Módulos en política por agentes" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:575 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:577 msgid "There is not external alerts configured in this policy" msgstr "No hay alertas externas configuradas en esta política" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:629 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:631 msgid "Modules in policy agents" msgstr "Módulos en agentes de política" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:657 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:659 msgid "Alert Template" msgstr "Plantilla de alerta" @@ -16897,6 +16714,33 @@ msgstr "Plantilla de alerta" msgid "Module is not selected" msgstr "No se ha seleccionado ningún módulo" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 +#: ../../godmode/agentes/inventory_manager.php:84 +msgid "Successfully added inventory module" +msgstr "Módulo añadido al inventario correctamente" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 +#: ../../godmode/agentes/inventory_manager.php:86 +msgid "Error adding inventory module" +msgstr "Error al añadir el módulo al inventario" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 +#: ../../godmode/agentes/inventory_manager.php:89 +msgid "The inventory of the module already exists" +msgstr "El inventario del módulo ya existe" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 +#: ../../godmode/modules/manage_inventory_modules.php:149 +#: ../../godmode/agentes/inventory_manager.php:128 +msgid "Successfully updated inventory module" +msgstr "Módulo del inventario actualizado correctamente" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 +#: ../../godmode/modules/manage_inventory_modules.php:150 +#: ../../godmode/agentes/inventory_manager.php:130 +msgid "Error updating inventory module" +msgstr "Error al actualizar el módulo del inventario" + #: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 msgid "There are no defined inventory modules" msgstr "No hay módulos de inventario definidos" @@ -16987,13 +16831,18 @@ msgstr "No se pudo agregar a la directiva" msgid "Apply to" msgstr "Aplicar a" -#: ../../enterprise/godmode/policies/policy_agents.php:538 -#: ../../enterprise/godmode/policies/policy_agents.php:670 +#: ../../enterprise/godmode/policies/policy_agents.php:499 +#: ../../enterprise/godmode/policies/policy_agents.php:517 +msgid "Filter OS" +msgstr "Filtro de sistema operativo" + +#: ../../enterprise/godmode/policies/policy_agents.php:574 +#: ../../enterprise/godmode/policies/policy_agents.php:706 msgid "Agents in Policy" msgstr "Agentes en la política" -#: ../../enterprise/godmode/policies/policy_agents.php:566 -#: ../../enterprise/godmode/policies/policy_agents.php:1215 +#: ../../enterprise/godmode/policies/policy_agents.php:602 +#: ../../enterprise/godmode/policies/policy_agents.php:1251 #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:509 #: ../../enterprise/godmode/setup/setup_auth.php:1304 @@ -17017,30 +16866,30 @@ msgstr "Agentes en la política" msgid "Groups" msgstr "Grupos" -#: ../../enterprise/godmode/policies/policy_agents.php:572 -#: ../../enterprise/godmode/policies/policy_agents.php:1217 +#: ../../enterprise/godmode/policies/policy_agents.php:608 +#: ../../enterprise/godmode/policies/policy_agents.php:1253 msgid "Groups in Policy" msgstr "Grupos en la política" -#: ../../enterprise/godmode/policies/policy_agents.php:707 +#: ../../enterprise/godmode/policies/policy_agents.php:743 msgid "Add agents to policy" msgstr "Añadir agentes a la política" -#: ../../enterprise/godmode/policies/policy_agents.php:734 +#: ../../enterprise/godmode/policies/policy_agents.php:770 msgid "Delete agents from policy" msgstr "Eliminar agentes de la política" -#: ../../enterprise/godmode/policies/policy_agents.php:831 +#: ../../enterprise/godmode/policies/policy_agents.php:867 msgid "Applied" msgstr "Aplicado" -#: ../../enterprise/godmode/policies/policy_agents.php:832 +#: ../../enterprise/godmode/policies/policy_agents.php:868 msgid "Not applied" msgstr "No aplicado" -#: ../../enterprise/godmode/policies/policy_agents.php:849 -#: ../../godmode/agentes/configurar_agente.php:615 -#: ../../godmode/agentes/configurar_agente.php:765 +#: ../../enterprise/godmode/policies/policy_agents.php:885 +#: ../../godmode/agentes/configurar_agente.php:628 +#: ../../godmode/agentes/configurar_agente.php:778 #: ../../godmode/agentes/agent_manager.php:533 #: ../../godmode/massive/massive_edit_agents.php:966 #: ../../godmode/reporting/reporting_builder.item_editor.php:79 @@ -17048,20 +16897,20 @@ msgstr "No aplicado" msgid "Remote configuration" msgstr "Configuración remota" -#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../enterprise/godmode/policies/policy_agents.php:885 #: ../../enterprise/operation/agentes/policy_view.php:394 msgid "R." msgstr "R." -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 +#: ../../enterprise/godmode/policies/policy_agents.php:888 +#: ../../enterprise/godmode/policies/policy_agents.php:1404 #: ../../enterprise/godmode/admin_access_logs.php:50 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 #: ../../enterprise/operation/agentes/policy_view.php:66 #: ../../enterprise/operation/agentes/policy_view.php:166 #: ../../enterprise/operation/agentes/policy_view.php:257 #: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../godmode/agentes/module_manager.php:886 +#: ../../godmode/agentes/module_manager.php:887 #: ../../mobile/operation/agents.php:406 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 @@ -17070,16 +16919,16 @@ msgstr "R." msgid "S." msgstr "S." -#: ../../enterprise/godmode/policies/policy_agents.php:853 +#: ../../enterprise/godmode/policies/policy_agents.php:889 msgid "Unlinked modules" msgstr "Módulos sin enlazar" -#: ../../enterprise/godmode/policies/policy_agents.php:853 +#: ../../enterprise/godmode/policies/policy_agents.php:889 msgid "U." msgstr "U." -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/policies/policy_agents.php:890 +#: ../../enterprise/godmode/policies/policy_agents.php:1405 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:118 #: ../../mobile/operation/agents.php:407 @@ -17087,100 +16936,100 @@ msgstr "U." msgid "A." msgstr "A." -#: ../../enterprise/godmode/policies/policy_agents.php:856 -#: ../../enterprise/godmode/policies/policy_agents.php:1371 +#: ../../enterprise/godmode/policies/policy_agents.php:892 +#: ../../enterprise/godmode/policies/policy_agents.php:1407 #: ../../enterprise/operation/agentes/policy_view.php:69 msgid "Last application" msgstr "Última aplicación" -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 +#: ../../enterprise/godmode/policies/policy_agents.php:893 +#: ../../enterprise/godmode/policies/policy_agents.php:1409 msgid "Add to delete queue" msgstr "Añadir a la lista de eliminación" -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 +#: ../../enterprise/godmode/policies/policy_agents.php:893 +#: ../../enterprise/godmode/policies/policy_agents.php:1409 msgid "D." msgstr "D." -#: ../../enterprise/godmode/policies/policy_agents.php:946 +#: ../../enterprise/godmode/policies/policy_agents.php:982 #: ../../godmode/agentes/agent_manager.php:263 msgid "This agent can be remotely configured" msgstr "Este agente puede ser configurado remotamente" -#: ../../enterprise/godmode/policies/policy_agents.php:953 +#: ../../enterprise/godmode/policies/policy_agents.php:989 msgid "This agent can not be remotely configured" msgstr "Este agente no puede ser configurado remotamente." -#: ../../enterprise/godmode/policies/policy_agents.php:1003 -#: ../../enterprise/godmode/policies/policy_agents.php:1482 +#: ../../enterprise/godmode/policies/policy_agents.php:1039 +#: ../../enterprise/godmode/policies/policy_agents.php:1518 msgid "Process deletion" msgstr "Borrado del proceso" -#: ../../enterprise/godmode/policies/policy_agents.php:1102 -#: ../../enterprise/godmode/policies/policy_agents.php:1427 +#: ../../enterprise/godmode/policies/policy_agents.php:1138 +#: ../../enterprise/godmode/policies/policy_agents.php:1463 #: ../../enterprise/operation/agentes/policy_view.php:83 msgid "Policy applied" msgstr "Política aplicada" -#: ../../enterprise/godmode/policies/policy_agents.php:1110 -#: ../../enterprise/godmode/policies/policy_agents.php:1435 +#: ../../enterprise/godmode/policies/policy_agents.php:1146 +#: ../../enterprise/godmode/policies/policy_agents.php:1471 msgid "Need apply" msgstr "Necesita aplicarse" -#: ../../enterprise/godmode/policies/policy_agents.php:1122 -#: ../../enterprise/godmode/policies/policy_agents.php:1447 +#: ../../enterprise/godmode/policies/policy_agents.php:1158 +#: ../../enterprise/godmode/policies/policy_agents.php:1483 msgid "Applying policy" msgstr "Aplicando política" -#: ../../enterprise/godmode/policies/policy_agents.php:1135 -#: ../../enterprise/godmode/policies/policy_agents.php:1458 +#: ../../enterprise/godmode/policies/policy_agents.php:1171 +#: ../../enterprise/godmode/policies/policy_agents.php:1494 msgid "Deleting from policy" msgstr "Eliminando de la política" -#: ../../enterprise/godmode/policies/policy_agents.php:1152 +#: ../../enterprise/godmode/policies/policy_agents.php:1188 #: ../../godmode/massive/massive_delete_modules.php:87 #: ../../godmode/massive/massive_add_alerts.php:100 #: ../../godmode/massive/massive_delete_agents.php:61 #: ../../godmode/massive/massive_edit_agents.php:214 #: ../../godmode/massive/massive_delete_alerts.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:75 -#: ../../include/functions_visual_map.php:2566 -#: ../../include/functions_visual_map.php:2963 +#: ../../include/functions_visual_map.php:2568 +#: ../../include/functions_visual_map.php:2914 msgid "No agents selected" msgstr "No se seleccionó ningún agente" -#: ../../enterprise/godmode/policies/policy_agents.php:1295 +#: ../../enterprise/godmode/policies/policy_agents.php:1331 msgid "Add groups to policy" msgstr "Añadir grupos a política" -#: ../../enterprise/godmode/policies/policy_agents.php:1317 +#: ../../enterprise/godmode/policies/policy_agents.php:1353 msgid "Delete groups from policy" msgstr "Eliminar grupos de política" -#: ../../enterprise/godmode/policies/policy_agents.php:1370 +#: ../../enterprise/godmode/policies/policy_agents.php:1406 msgid "Total agents in policy group" msgstr "Total de agentes en el grupo de política" -#: ../../enterprise/godmode/policies/policy_agents.php:1370 +#: ../../enterprise/godmode/policies/policy_agents.php:1406 msgid "T." msgstr "T." #: ../../enterprise/godmode/policies/policy.php:102 #: ../../enterprise/include/functions_policies.php:3733 -#: ../../godmode/agentes/configurar_agente.php:538 +#: ../../godmode/agentes/configurar_agente.php:551 msgid "Agent wizard" msgstr "Asistente de agente" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:41 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 #: ../../enterprise/operation/snmpconsole/snmp_view.php:82 -#: ../../enterprise/operation/menu.php:153 -#: ../../include/class/SnmpConsole.class.php:928 +#: ../../enterprise/operation/menu.php:140 +#: ../../include/class/SnmpConsole.class.php:929 msgid "SNMP trap editor" msgstr "Editor de traps SNMP" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:77 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 #: ../../godmode/setup/snmp_wizard.php:42 @@ -17188,12 +17037,12 @@ msgstr "Editor de traps SNMP" msgid "OID" msgstr "OID" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:82 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:85 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 msgid "Custom OID" msgstr "OID personalizado" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:92 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:95 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2243 #: ../../enterprise/include/functions_reporting_csv.php:2437 @@ -17201,7 +17050,7 @@ msgstr "OID personalizado" #: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1364 #: ../../godmode/reporting/reporting_builder.item_editor.php:2304 #: ../../include/functions_reports.php:835 -#: ../../include/functions_reporting.php:7190 +#: ../../include/functions_reporting.php:7405 #: ../../include/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "Texto" @@ -17296,93 +17145,93 @@ msgstr "Operaciones SNMP" msgid "Satellite operations" msgstr "Operaciones Satélite" -#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:266 +#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:257 msgid "Duplicate config" msgstr "Duplicar configuración" #: ../../enterprise/godmode/menu.php:69 -#: ../../godmode/agentes/configurar_agente.php:718 +#: ../../godmode/agentes/configurar_agente.php:731 msgid "Network config manager" msgstr "Administrador de configuración de red" -#: ../../enterprise/godmode/menu.php:96 +#: ../../enterprise/godmode/menu.php:87 #: ../../enterprise/include/functions_policies.php:3712 msgid "Manage policies" msgstr "Gestionar políticas" -#: ../../enterprise/godmode/menu.php:105 +#: ../../enterprise/godmode/menu.php:96 msgid "Manage agent autoconfiguration" msgstr "Administrar autoconfiguración" -#: ../../enterprise/godmode/menu.php:114 +#: ../../enterprise/godmode/menu.php:105 #: ../../enterprise/include/class/AgentRepository.class.php:668 msgid "Software agents repository" msgstr "Repositorio de agentes software" -#: ../../enterprise/godmode/menu.php:147 +#: ../../enterprise/godmode/menu.php:138 #: ../../enterprise/include/class/CSVImportAgents.class.php:114 #: ../../godmode/wizards/HostDevices.class.php:159 msgid "Import CSV" msgstr "Importar CSV" -#: ../../enterprise/godmode/menu.php:151 +#: ../../enterprise/godmode/menu.php:142 #: ../../enterprise/include/class/DeploymentCenter.class.php:613 #: ../../godmode/wizards/HostDevices.class.php:165 #: ../../godmode/wizards/DiscoveryTaskList.class.php:825 msgid "Agent deployment" msgstr "Despliegue de agentes" -#: ../../enterprise/godmode/menu.php:161 +#: ../../enterprise/godmode/menu.php:152 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 msgid "Microsoft SQL Server" msgstr "Servidor Microsoft SQL" -#: ../../enterprise/godmode/menu.php:162 +#: ../../enterprise/godmode/menu.php:153 msgid "Mysql" msgstr "Mysql" -#: ../../enterprise/godmode/menu.php:163 +#: ../../enterprise/godmode/menu.php:154 #: ../../enterprise/godmode/setup/setup.php:108 #: ../../enterprise/include/class/Oracle.app.php:411 msgid "Oracle" msgstr "Oracle" -#: ../../enterprise/godmode/menu.php:164 +#: ../../enterprise/godmode/menu.php:155 #: ../../enterprise/include/class/VMware.app.php:503 msgid "VMware" msgstr "VMware" -#: ../../enterprise/godmode/menu.php:165 +#: ../../enterprise/godmode/menu.php:156 #: ../../enterprise/include/class/SAPView.class.php:621 #: ../../enterprise/include/class/SAPView.class.php:624 #: ../../include/class/CredentialStore.class.php:986 msgid "SAP" msgstr "SAP" -#: ../../enterprise/godmode/menu.php:166 +#: ../../enterprise/godmode/menu.php:157 #: ../../enterprise/include/class/DB2.app.php:404 msgid "DB2" msgstr "DB2" -#: ../../enterprise/godmode/menu.php:167 +#: ../../enterprise/godmode/menu.php:158 #: ../../enterprise/godmode/wizards/Applications.class.php:163 #: ../../enterprise/godmode/wizards/Applications.class.php:171 msgid "Applications" msgstr "Aplicaciones" -#: ../../enterprise/godmode/menu.php:178 +#: ../../enterprise/godmode/menu.php:169 msgid "Amazon Web Services" msgstr "Amazon Web Services" -#: ../../enterprise/godmode/menu.php:179 +#: ../../enterprise/godmode/menu.php:170 msgid "Microsoft Azure" msgstr "Microsoft Azure" -#: ../../enterprise/godmode/menu.php:180 +#: ../../enterprise/godmode/menu.php:171 msgid "Google Compute Platform" msgstr "Google Compute Platform" -#: ../../enterprise/godmode/menu.php:181 +#: ../../enterprise/godmode/menu.php:172 #: ../../enterprise/godmode/wizards/Cloud.class.php:186 #: ../../enterprise/godmode/wizards/Cloud.class.php:195 #: ../../enterprise/include/class/Azure.cloud.php:150 @@ -17394,60 +17243,60 @@ msgstr "Google Compute Platform" msgid "Cloud" msgstr "Nube" -#: ../../enterprise/godmode/menu.php:196 +#: ../../enterprise/godmode/menu.php:187 msgid "New console task" msgstr "Nueva tarea de consola" -#: ../../enterprise/godmode/menu.php:206 +#: ../../enterprise/godmode/menu.php:197 msgid "Enterprise ACL Setup" msgstr "Configuración ACL Enterprise" -#: ../../enterprise/godmode/menu.php:215 +#: ../../enterprise/godmode/menu.php:206 msgid "Skins" msgstr "Apariencia" -#: ../../enterprise/godmode/menu.php:225 +#: ../../enterprise/godmode/menu.php:216 msgid "Manage database HA" msgstr "Gestionar la base de datos de alta disponibilidad" -#: ../../enterprise/godmode/menu.php:235 +#: ../../enterprise/godmode/menu.php:226 #: ../../enterprise/godmode/servers/manage_export.php:43 #: ../../enterprise/godmode/servers/manage_export_form.php:59 msgid "Export targets" msgstr "Servidores de exportación" -#: ../../enterprise/godmode/menu.php:257 +#: ../../enterprise/godmode/menu.php:248 msgid "Log Collector" msgstr "Colector de logs" -#: ../../enterprise/godmode/menu.php:275 +#: ../../enterprise/godmode/menu.php:266 msgid "Password policy" msgstr "Política de contraseñas" -#: ../../enterprise/godmode/menu.php:283 +#: ../../enterprise/godmode/menu.php:274 #: ../../enterprise/include/functions_setup.php:44 #: ../../enterprise/include/functions_setup.php:108 #: ../../godmode/extensions.php:140 ../../godmode/setup/setup.php:317 msgid "Enterprise" msgstr "Enterprise" -#: ../../enterprise/godmode/menu.php:296 +#: ../../enterprise/godmode/menu.php:287 #: ../../general/first_task/omnishell.php:31 #: ../../general/first_task/omnishell.php:34 msgid "Omnishell" msgstr "Omnishell" -#: ../../enterprise/godmode/menu.php:310 ../../enterprise/tools/ipam/ipam.php:453 +#: ../../enterprise/godmode/menu.php:301 ../../enterprise/tools/ipam/ipam.php:453 #: ../../include/functions_reports.php:692 msgid "IPAM" msgstr "IPAM" -#: ../../enterprise/godmode/menu.php:319 ../../godmode/setup/setup.php:190 +#: ../../enterprise/godmode/menu.php:310 ../../godmode/setup/setup.php:190 #: ../../godmode/setup/setup.php:289 msgid "Module Library" msgstr "Biblioteca de módulos" -#: ../../enterprise/godmode/menu.php:327 +#: ../../enterprise/godmode/menu.php:318 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 #: ../../enterprise/godmode/alerts/alert_inventory.php:80 msgid "Inventory alerts" @@ -17590,13 +17439,13 @@ msgstr " política de" #: ../../godmode/massive/massive_edit_modules.php:411 #: ../../godmode/massive/massive_edit_modules.php:497 #: ../../godmode/reporting/create_container.php:573 -#: ../../godmode/events/event_edit_filter.php:462 -#: ../../godmode/events/event_edit_filter.php:473 +#: ../../godmode/events/event_edit_filter.php:472 +#: ../../godmode/events/event_edit_filter.php:483 #: ../../include/functions_visual_map_editor.php:498 #: ../../include/functions_visual_map_editor.php:1459 #: ../../include/functions_visual_map_editor.php:1553 #: ../../include/ajax/visual_console_builder.ajax.php:1186 -#: ../../include/functions_profile.php:359 ../../include/functions_html.php:2284 +#: ../../include/functions_profile.php:373 ../../include/functions_html.php:2284 #: ../../include/functions_html.php:2285 ../../include/functions_html.php:2286 #: ../../include/functions_html.php:2287 ../../include/functions_html.php:2288 #: ../../include/functions_html.php:2290 ../../include/functions_html.php:2291 @@ -17720,7 +17569,7 @@ msgstr "Operaciones masivas" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 #: ../../include/class/SnmpConsole.class.php:378 -#: ../../include/class/SnmpConsole.class.php:1376 +#: ../../include/class/SnmpConsole.class.php:1377 msgid "Cold start (0)" msgstr "Inicio cero (0)" @@ -17728,7 +17577,7 @@ msgstr "Inicio cero (0)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 #: ../../include/class/SnmpConsole.class.php:379 -#: ../../include/class/SnmpConsole.class.php:1380 +#: ../../include/class/SnmpConsole.class.php:1381 msgid "Warm start (1)" msgstr "Comienzo de inicio (1)" @@ -17736,7 +17585,7 @@ msgstr "Comienzo de inicio (1)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 #: ../../include/class/SnmpConsole.class.php:380 -#: ../../include/class/SnmpConsole.class.php:1384 +#: ../../include/class/SnmpConsole.class.php:1385 msgid "Link down (2)" msgstr "Enlace interrumpido (2)" @@ -17744,7 +17593,7 @@ msgstr "Enlace interrumpido (2)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 #: ../../include/class/SnmpConsole.class.php:381 -#: ../../include/class/SnmpConsole.class.php:1388 +#: ../../include/class/SnmpConsole.class.php:1389 msgid "Link up (3)" msgstr "Enlace activo (3)" @@ -17752,7 +17601,7 @@ msgstr "Enlace activo (3)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 #: ../../include/class/SnmpConsole.class.php:382 -#: ../../include/class/SnmpConsole.class.php:1392 +#: ../../include/class/SnmpConsole.class.php:1393 msgid "Authentication failure (4)" msgstr "Fallo de autentificación (4)" @@ -17761,33 +17610,16 @@ msgstr "Fallo de autentificación (4)" #: ../../enterprise/godmode/setup/setup_acl.php:475 #: ../../enterprise/godmode/setup/setup_acl.php:479 #: ../../enterprise/include/class/Aws.cloud.php:347 -#: ../../enterprise/include/functions_ipam.php:1598 -#: ../../extensions/api_checker.php:176 +#: ../../extensions/api_checker.php:260 #: ../../godmode/groups/configure_group.php:250 -#: ../../godmode/users/configure_user.php:1296 +#: ../../godmode/users/configure_user.php:1355 #: ../../godmode/snmpconsole/snmp_alert.php:46 #: ../../godmode/massive/massive_edit_users.php:280 -#: ../../include/functions_graph.php:3069 ../../include/functions_graph.php:3114 -#: ../../include/functions_graph.php:3155 ../../include/functions_graph.php:3197 -#: ../../include/functions_graph.php:3274 ../../include/functions_graph.php:3418 -#: ../../include/functions_graph.php:3526 ../../include/functions_graph.php:3591 -#: ../../include/functions_graph.php:3758 ../../include/functions_graph.php:3770 -#: ../../include/functions_graph.php:3771 ../../include/functions_graph.php:3774 -#: ../../include/functions_graph.php:3779 ../../include/functions_graph.php:3780 -#: ../../include/functions_graph.php:3783 ../../include/functions_graph.php:4782 +#: ../../include/functions_graph.php:3543 #: ../../include/class/SnmpConsole.class.php:383 -#: ../../include/class/SnmpConsole.class.php:1369 -#: ../../include/class/SnmpConsole.class.php:1396 -#: ../../include/functions_reporting.php:5199 -#: ../../include/functions_reporting.php:5211 -#: ../../include/functions_reporting.php:5212 -#: ../../include/functions_reporting.php:5215 -#: ../../include/functions_reporting.php:5220 -#: ../../include/functions_reporting.php:5221 -#: ../../include/functions_reporting.php:5224 -#: ../../operation/users/user_edit.php:365 -#: ../../operation/snmpconsole/snmp_statistics.php:218 -#: ../../operation/snmpconsole/snmp_statistics.php:275 +#: ../../include/class/SnmpConsole.class.php:1370 +#: ../../include/class/SnmpConsole.class.php:1397 +#: ../../operation/users/user_edit.php:439 #: ../../operation/gis_maps/render_view.php:167 msgid "Other" msgstr "Otros" @@ -17893,7 +17725,7 @@ msgstr "Otros valores" #: ../../godmode/reporting/visual_console_builder.elements.php:107 #: ../../include/functions_visual_map_editor.php:922 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2023 +#: ../../include/rest-api/models/VisualConsole/Item.php:2024 msgid "Position" msgstr "Posición" @@ -17943,7 +17775,7 @@ msgid "Target IP" msgstr "IP objetivo" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:950 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:976 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 #: ../../godmode/modules/manage_network_components_form_network.php:55 #: ../../godmode/agentes/module_manager_editor_network.php:223 @@ -17970,7 +17802,7 @@ msgstr "Autentificación de usuario" #: ../../godmode/modules/manage_network_components_form_network.php:105 #: ../../godmode/agentes/module_manager_editor_network.php:393 #: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/wizards/HostDevices.class.php:1292 +#: ../../godmode/wizards/HostDevices.class.php:1323 #: ../../include/functions_snmp_browser.php:836 msgid "Auth password" msgstr "Autentificación de contraseña" @@ -17981,8 +17813,8 @@ msgstr "Autentificación de contraseña" #: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:861 #: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1294 #: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../godmode/wizards/HostDevices.class.php:1356 msgid "The pass length must be eight character minimum." msgstr "La longitud de la contraseña debe ser mínimo de ocho caracteres." @@ -17991,7 +17823,7 @@ msgstr "La longitud de la contraseña debe ser mínimo de ocho caracteres." #: ../../godmode/modules/manage_network_components_form_network.php:123 #: ../../godmode/agentes/module_manager_editor_network.php:413 #: ../../godmode/massive/massive_edit_modules.php:863 -#: ../../godmode/wizards/HostDevices.class.php:1308 +#: ../../godmode/wizards/HostDevices.class.php:1339 #: ../../include/class/CredentialStore.class.php:1220 #: ../../include/class/CredentialStore.class.php:1511 #: ../../include/class/AgentWizard.class.php:951 @@ -18004,7 +17836,7 @@ msgstr "Método de privacidad" #: ../../godmode/modules/manage_network_components_form_network.php:126 #: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1313 +#: ../../godmode/wizards/HostDevices.class.php:1344 #: ../../include/class/CredentialStore.class.php:1229 #: ../../include/class/CredentialStore.class.php:1520 #: ../../include/functions_snmp_browser.php:856 @@ -18016,7 +17848,7 @@ msgstr "DES" #: ../../godmode/modules/manage_network_components_form_network.php:127 #: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../godmode/wizards/HostDevices.class.php:1345 #: ../../include/class/CredentialStore.class.php:1228 #: ../../include/class/CredentialStore.class.php:1518 #: ../../include/functions_snmp_browser.php:857 @@ -18027,7 +17859,7 @@ msgstr "AES" #: ../../godmode/modules/manage_network_components_form_network.php:136 #: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1323 +#: ../../godmode/wizards/HostDevices.class.php:1354 #: ../../include/class/CredentialStore.class.php:1237 #: ../../include/class/CredentialStore.class.php:1532 #: ../../include/class/AgentWizard.class.php:965 @@ -18040,7 +17872,7 @@ msgstr "Conexión privada" #: ../../godmode/modules/manage_network_components_form_network.php:148 #: ../../godmode/agentes/module_manager_editor_network.php:435 #: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1339 +#: ../../godmode/wizards/HostDevices.class.php:1308 #: ../../include/functions_snmp_browser.php:877 msgid "Auth method" msgstr "Método de autentificación" @@ -18050,8 +17882,8 @@ msgstr "Método de autentificación" #: ../../godmode/modules/manage_network_components_form_network.php:151 #: ../../godmode/agentes/module_manager_editor_network.php:438 #: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1344 -#: ../../include/class/Diagnostics.class.php:2178 +#: ../../godmode/wizards/HostDevices.class.php:1313 +#: ../../include/class/Diagnostics.class.php:2183 #: ../../include/class/CredentialStore.class.php:1194 #: ../../include/class/CredentialStore.class.php:1484 #: ../../include/functions_snmp_browser.php:880 @@ -18063,7 +17895,7 @@ msgstr "MD5" #: ../../godmode/modules/manage_network_components_form_network.php:152 #: ../../godmode/agentes/module_manager_editor_network.php:439 #: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1345 +#: ../../godmode/wizards/HostDevices.class.php:1314 #: ../../include/class/CredentialStore.class.php:1195 #: ../../include/class/CredentialStore.class.php:1486 #: ../../include/functions_snmp_browser.php:881 @@ -18075,7 +17907,7 @@ msgstr "SHA" #: ../../godmode/modules/manage_network_components_form_network.php:161 #: ../../godmode/agentes/module_manager_editor_network.php:452 #: ../../godmode/massive/massive_edit_modules.php:869 -#: ../../godmode/wizards/HostDevices.class.php:1354 +#: ../../godmode/wizards/HostDevices.class.php:1292 #: ../../include/class/CredentialStore.class.php:1149 #: ../../include/class/CredentialStore.class.php:1436 #: ../../include/class/AgentWizard.class.php:892 @@ -18088,7 +17920,7 @@ msgstr "Nivel de seguridad" #: ../../godmode/modules/manage_network_components_form_network.php:164 #: ../../godmode/agentes/module_manager_editor_network.php:455 #: ../../godmode/massive/massive_edit_modules.php:872 -#: ../../godmode/wizards/HostDevices.class.php:1359 +#: ../../godmode/wizards/HostDevices.class.php:1297 #: ../../include/functions_snmp_browser.php:893 msgid "Not auth and not privacy method" msgstr "Método sin autentificación ni privacidad" @@ -18098,7 +17930,7 @@ msgstr "Método sin autentificación ni privacidad" #: ../../godmode/modules/manage_network_components_form_network.php:165 #: ../../godmode/agentes/module_manager_editor_network.php:456 #: ../../godmode/massive/massive_edit_modules.php:873 -#: ../../godmode/wizards/HostDevices.class.php:1360 +#: ../../godmode/wizards/HostDevices.class.php:1298 #: ../../include/functions_snmp_browser.php:894 msgid "Auth and not privacy method" msgstr "Método con autentificación y sin privacidad" @@ -18108,7 +17940,7 @@ msgstr "Método con autentificación y sin privacidad" #: ../../godmode/modules/manage_network_components_form_network.php:166 #: ../../godmode/agentes/module_manager_editor_network.php:457 #: ../../godmode/massive/massive_edit_modules.php:874 -#: ../../godmode/wizards/HostDevices.class.php:1361 +#: ../../godmode/wizards/HostDevices.class.php:1299 #: ../../include/functions_snmp_browser.php:895 msgid "Auth and privacy method" msgstr "Método con autentificación y privacidad" @@ -18119,7 +17951,7 @@ msgstr "Método con autentificación y privacidad" #: ../../godmode/agentes/module_manager_editor_common.php:1202 #: ../../godmode/massive/massive_edit_modules.php:892 #: ../../godmode/reporting/reporting_builder.item_editor.php:3882 -#: ../../include/ajax/heatmap.ajax.php:197 ../../include/functions_graph.php:5261 +#: ../../include/ajax/heatmap.ajax.php:197 ../../include/functions_graph.php:5049 #: ../../include/functions_treeview.php:116 ../../operation/heatmap.php:100 #: ../../operation/agentes/status_monitor.php:518 msgid "Not assigned" @@ -18132,6 +17964,7 @@ msgstr "Sin asignar" #: ../../godmode/modules/manage_network_components_form_wmi.php:47 #: ../../godmode/agentes/module_manager_editor_wmi.php:103 #: ../../godmode/massive/massive_edit_modules.php:906 +#: ../../include/functions_ui.php:6918 #: ../../include/class/CredentialStore.class.php:997 #: ../../include/class/CredentialStore.class.php:1367 #: ../../include/class/AgentWizard.class.php:676 @@ -18181,8 +18014,8 @@ msgid "Linked" msgstr "Enlazado" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:1110 -#: ../../godmode/agentes/module_manager.php:1113 +#: ../../godmode/agentes/module_manager.php:1111 +#: ../../godmode/agentes/module_manager.php:1114 #: ../../godmode/massive/massive_edit_modules.php:1067 #: ../../include/ajax/module.php:1105 ../../include/ajax/module.php:1108 msgid "Unlinked" @@ -18388,7 +18221,7 @@ msgstr "Nombre de la alerta" #: ../../enterprise/operation/agentes/policy_view.php:261 #: ../../godmode/snmpconsole/snmp_alert.php:1275 #: ../../godmode/alerts/alert_view.php:99 -#: ../../include/functions_reporting_html.php:5388 +#: ../../include/functions_reporting_html.php:5407 #: ../../include/ajax/alert_list.ajax.php:295 #: ../../include/ajax/alert_list.ajax.php:320 #: ../../include/functions_treeview.php:455 @@ -18403,7 +18236,7 @@ msgstr "Disparada por última vez" #: ../../godmode/alerts/alert_view.php:108 ../../mobile/operation/alerts.php:327 #: ../../include/functions_ui.php:1256 #: ../../include/class/AgentsAlerts.class.php:940 -#: ../../include/functions_reporting.php:12676 +#: ../../include/functions_reporting.php:12962 msgid "Alert disabled" msgstr "Alerta desactivada" @@ -18588,7 +18421,7 @@ msgstr "Agentes para almacenar datos" #: ../../enterprise/include/class/DB2.app.php:545 #: ../../enterprise/include/class/Aws.S3.php:515 #: ../../enterprise/include/class/SAP.app.php:522 -#: ../../enterprise/include/class/Aws.cloud.php:1328 +#: ../../enterprise/include/class/Aws.cloud.php:1327 #: ../../enterprise/include/class/MySQL.app.php:567 #: ../../enterprise/include/class/Oracle.app.php:552 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 @@ -18657,7 +18490,7 @@ msgstr "Límite SLA" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 #: ../../enterprise/include/functions_reporting_csv.php:1531 #: ../../include/functions_reports.php:699 -#: ../../include/functions_reporting.php:959 +#: ../../include/functions_reporting.php:960 msgid "S.L.A." msgstr "SLA" @@ -18717,17 +18550,17 @@ msgstr "Alerta de servicio en crítico de S.L.A" #: ../../enterprise/include/functions_reporting.php:6151 #: ../../enterprise/include/functions_reporting.php:6189 #: ../../enterprise/include/functions_services.php:2084 -#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/include/functions_ux_console.php:483 #: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:384 -#: ../../enterprise/operation/agentes/wux_console_view.php:424 +#: ../../enterprise/operation/agentes/ux_console_view.php:391 +#: ../../enterprise/operation/agentes/wux_console_view.php:407 #: ../../extensions/module_groups.php:53 #: ../../godmode/massive/massive_operations.php:375 -#: ../../godmode/setup/setup_general.php:789 -#: ../../godmode/setup/setup_general.php:807 +#: ../../godmode/setup/setup_general.php:870 +#: ../../godmode/setup/setup_general.php:888 #: ../../godmode/reporting/reporting_builder.item_editor.php:2688 -#: ../../include/functions_reporting_html.php:663 -#: ../../include/functions_reporting_html.php:858 +#: ../../include/functions_reporting_html.php:664 +#: ../../include/functions_reporting_html.php:859 #: ../../include/functions_reporting_html.php:3474 #: ../../include/functions_reporting_html.php:4780 #: ../../include/functions_db.php:1974 @@ -18741,7 +18574,7 @@ msgstr "Alerta de servicio en crítico de S.L.A" #: ../../include/class/AgentWizard.class.php:6215 #: ../../include/lib/Dashboard/Widgets/maps_status.php:362 #: ../../operation/agentes/pandora_networkmap.editor.php:633 -#: ../../operation/snmpconsole/snmp_browser.php:645 +#: ../../operation/snmpconsole/snmp_browser.php:643 msgid "OK" msgstr "Aceptar" @@ -18769,8 +18602,8 @@ msgstr "Servicio no válido" #: ../../enterprise/include/functions_reporting.php:2537 #: ../../enterprise/include/functions_reporting.php:3481 #: ../../enterprise/include/functions_reporting.php:4456 -#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1069 -#: ../../include/functions_reporting.php:9290 +#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1070 +#: ../../include/functions_reporting.php:9508 #: ../../operation/agentes/pandora_networkmap.php:789 msgid "Dynamic" msgstr "Dinámico" @@ -18891,6 +18724,8 @@ msgstr "Editar elementos del servicio" #: ../../enterprise/godmode/services/services.elements.php:883 #: ../../enterprise/godmode/services/services.elements.php:894 +#: ../../enterprise/godmode/setup/setup.php:557 +#: ../../enterprise/godmode/setup/setup.php:573 #: ../../enterprise/include/functions_visual_map.php:677 #: ../../enterprise/include/functions_HA_cluster.php:535 #: ../../enterprise/include/class/DeploymentCenter.class.php:1611 @@ -18903,7 +18738,7 @@ msgstr "Editar elementos del servicio" #: ../../include/functions_ui.php:294 ../../include/class/ConfigPEN.class.php:737 #: ../../include/class/SatelliteAgent.class.php:1067 #: ../../include/class/HelpFeedBack.class.php:360 -#: ../../include/class/Diagnostics.class.php:2090 +#: ../../include/class/Diagnostics.class.php:2095 #: ../../include/class/CredentialStore.class.php:1612 #: ../../include/class/ModuleTemplates.class.php:1418 #: ../../include/class/SatelliteCollection.class.php:630 @@ -19140,7 +18975,7 @@ msgstr "" "base de datos en el objetivo, ¿está seguro?" #: ../../enterprise/godmode/setup/setup_history.php:651 -#: ../../godmode/setup/performance.php:729 +#: ../../godmode/setup/performance.php:712 msgid "Database maintenance status" msgstr "Estado de mantenimiento de la base de datos" @@ -19203,7 +19038,7 @@ msgid "Update scheduled." msgstr "Actualizar programados." #: ../../enterprise/godmode/setup/setup.php:47 -#: ../../include/functions_config.php:403 +#: ../../include/functions_config.php:408 msgid "Forward SNMP traps to agent (if exist)" msgstr "Reenviar los traps SNMP al agente (si existe)" @@ -19216,7 +19051,7 @@ msgid "Yes without changing status" msgstr "Sí, sin cambiar estado" #: ../../enterprise/godmode/setup/setup.php:77 -#: ../../include/functions_config.php:407 +#: ../../include/functions_config.php:412 msgid "Use Enterprise ACL System" msgstr "Utilizar el sistema ACL Enterprise" @@ -19263,49 +19098,28 @@ msgstr "" "de eventos está activa." #: ../../enterprise/godmode/setup/setup.php:198 -#: ../../include/functions_config.php:464 -msgid "Inventory changes blacklist" -msgstr "Lista negra ante cambios de inventario" - -#: ../../enterprise/godmode/setup/setup.php:261 -msgid "Out of black list" -msgstr "Fuera de la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:263 -msgid "In black list" -msgstr "En la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:268 -msgid "Push selected modules into blacklist" -msgstr "Mover los módulos seleccionados a la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:270 -msgid "Pop selected modules out of blacklist" -msgstr "Sacar los módulos seleccionados de la lista negra" - -#: ../../enterprise/godmode/setup/setup.php:282 -#: ../../include/functions_config.php:443 +#: ../../include/functions_config.php:448 msgid "Activate Log Collector" msgstr "Activar el colector de logs" -#: ../../enterprise/godmode/setup/setup.php:305 +#: ../../enterprise/godmode/setup/setup.php:221 msgid "Critical threshold for occupied addresses" msgstr "Umbral crítico para las direcciones ocupadas" -#: ../../enterprise/godmode/setup/setup.php:317 +#: ../../enterprise/godmode/setup/setup.php:233 msgid "Warning threshold for occupied addresses" msgstr "Umbral de advertencia para las direcciones ocupadas" -#: ../../enterprise/godmode/setup/setup.php:329 -#: ../../include/functions_config.php:459 +#: ../../enterprise/godmode/setup/setup.php:245 +#: ../../include/functions_config.php:464 msgid "SAP/R3 Plugin Licence" msgstr "Licencia plugin SAP/R3" -#: ../../enterprise/godmode/setup/setup.php:345 +#: ../../enterprise/godmode/setup/setup.php:261 msgid "Enterprise options" msgstr "Opciones Enterprise" -#: ../../enterprise/godmode/setup/setup.php:517 +#: ../../enterprise/godmode/setup/setup.php:433 #, php-format msgid "" "Password related configuration only applies when local %s authentication is " @@ -19314,10 +19128,33 @@ msgstr "" "La configuración relacionada con la contraseña solo aplica cuando la " "autenticación local %s está seleccionada." -#: ../../enterprise/godmode/setup/setup.php:526 +#: ../../enterprise/godmode/setup/setup.php:442 msgid "Enterprise password policy" msgstr "Política de contraseña Enterprise" +#: ../../enterprise/godmode/setup/setup.php:471 +msgid "Delete session users" +msgstr "Eliminar sesiones de usuarios" + +#: ../../enterprise/godmode/setup/setup.php:541 +#: ../../godmode/snmpconsole/snmp_alert.php:1545 +#: ../../godmode/snmpconsole/snmp_alert.php:1560 +msgid "Confirmation" +msgstr "Confirmación" + +#: ../../enterprise/godmode/setup/setup.php:542 +msgid "This action delete all users session, are you sure?" +msgstr "Esta acción eliminará todos las sesiones de usuarios, ¿está seguro?" + +#: ../../enterprise/godmode/setup/setup.php:558 +msgid "All sessions deleted" +msgstr "Todas las sesiones han sido eliminadas" + +#: ../../enterprise/godmode/setup/setup.php:565 +#: ../../enterprise/godmode/setup/setup.php:574 +msgid "Unexpected error" +msgstr "Error inesperado" + #: ../../enterprise/godmode/setup/setup_skins.php:38 #: ../../enterprise/godmode/setup/edit_skin.php:44 msgid "Skins configuration" @@ -19396,7 +19233,7 @@ msgid "Port of ElasticSearch server" msgstr "Puerto del servidor ElasticSearch" #: ../../enterprise/godmode/setup/setup_log_collector.php:44 -#: ../../include/functions_config.php:1550 +#: ../../include/functions_config.php:1531 msgid "Days to purge old information" msgstr "Días para purgar información antigua" @@ -19471,8 +19308,9 @@ msgstr "OP" #: ../../enterprise/godmode/setup/setup_auth.php:508 #: ../../enterprise/godmode/setup/setup_auth.php:1303 #: ../../godmode/groups/configure_group.php:122 -#: ../../godmode/groups/group_list.php:380 -#: ../../godmode/users/profile_list.php:323 ../../godmode/menu.php:161 +#: ../../godmode/groups/group_list.php:385 +#: ../../godmode/users/profile_list.php:323 +#: ../../godmode/users/configure_user.php:317 ../../godmode/menu.php:162 msgid "Profiles" msgstr "Perfiles" @@ -19649,7 +19487,7 @@ msgstr "Filtrar por perfil" #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 #: ../../include/functions_profile.php:213 -#: ../../operation/users/user_edit.php:838 +#: ../../operation/users/user_edit.php:912 msgid "Profile name" msgstr "Nombre del perfil" @@ -19660,9 +19498,9 @@ msgstr "No válido" #: ../../enterprise/godmode/setup/setup_acl.php:791 #: ../../enterprise/godmode/reporting/visual_console_template.php:305 -#: ../../enterprise/operation/agentes/wux_console_view.php:593 +#: ../../enterprise/operation/agentes/wux_console_view.php:568 #: ../../include/ajax/visual_console_builder.ajax.php:343 -#: ../../include/functions_visual_map.php:2841 +#: ../../include/functions_visual_map.php:2843 msgid "No data to show" msgstr "No hay datos que mostrar" @@ -19904,7 +19742,7 @@ msgstr "Salida de red" #: ../../enterprise/godmode/reporting/aws_view.php:106 #: ../../enterprise/godmode/reporting/aws_view.php:139 -#: ../../enterprise/operation/menu.php:45 +#: ../../enterprise/operation/menu.php:32 msgid "AWS View" msgstr "Vista AWS" @@ -20055,7 +19893,7 @@ msgstr "Gestión de plantillas gráficas" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 #: ../../godmode/reporting/graph_builder.php:376 #: ../../godmode/reporting/graph_container.php:122 -#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:337 +#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:341 #: ../../operation/reporting/graph_viewer.php:271 msgid "Custom graphs" msgstr "Gráficos personalizados" @@ -20089,7 +19927,7 @@ msgstr "Editor de plantillas gráficas" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 #: ../../godmode/modules/manage_nc_groups.php:95 #: ../../godmode/netflow/nf_edit_form.php:118 -#: ../../godmode/events/event_edit_filter.php:222 +#: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "No actualizado; nombre en blanco" @@ -20127,7 +19965,7 @@ msgstr "Altura" #: ../../enterprise/godmode/reporting/graph_template_editor.php:217 #: ../../godmode/setup/performance.php:542 #: ../../godmode/reporting/create_container.php:346 -#: ../../include/functions.php:2719 ../../include/functions.php:3387 +#: ../../include/functions.php:2745 ../../include/functions.php:3413 #: ../../include/ajax/module.php:207 ../../include/ajax/graph.ajax.php:146 #: ../../operation/gis_maps/render_view.php:156 msgid "1 hour" @@ -20154,7 +19992,7 @@ msgstr "12 horas" #: ../../enterprise/godmode/reporting/graph_template_editor.php:222 #: ../../godmode/reporting/create_container.php:350 -#: ../../include/functions.php:2722 ../../include/ajax/module.php:210 +#: ../../include/functions.php:2748 ../../include/ajax/module.php:210 #: ../../include/ajax/graph.ajax.php:150 msgid "1 day" msgstr "1 día" @@ -20175,7 +20013,7 @@ msgstr "Última semana" #: ../../enterprise/godmode/reporting/graph_template_editor.php:226 #: ../../godmode/reporting/create_container.php:354 -#: ../../include/functions.php:2724 ../../include/ajax/module.php:212 +#: ../../include/functions.php:2750 ../../include/ajax/module.php:212 #: ../../include/ajax/graph.ajax.php:154 msgid "15 days" msgstr "15 días" @@ -20195,7 +20033,7 @@ msgid "6 months" msgstr "6 meses" #: ../../enterprise/godmode/reporting/graph_template_editor.php:230 -#: ../../include/functions.php:2728 ../../include/ajax/module.php:216 +#: ../../include/functions.php:2754 ../../include/ajax/module.php:216 msgid "1 year" msgstr "1 año" @@ -20228,7 +20066,7 @@ msgstr "1 año" #: ../../include/functions_visual_map_editor.php:788 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:639 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629 msgid "Period" msgstr "Período" @@ -20239,14 +20077,14 @@ msgstr "Apilado" #: ../../enterprise/godmode/reporting/graph_template_editor.php:246 #: ../../godmode/reporting/graph_builder.main.php:215 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:353 -#: ../../operation/reporting/graph_viewer.php:371 +#: ../../operation/reporting/graph_viewer.php:343 msgid "Stacked area" msgstr "Área apilada" #: ../../enterprise/godmode/reporting/graph_template_editor.php:248 #: ../../godmode/reporting/graph_builder.main.php:217 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 -#: ../../operation/reporting/graph_viewer.php:373 +#: ../../operation/reporting/graph_viewer.php:345 msgid "Stacked line" msgstr "Línea apilada" @@ -20258,7 +20096,7 @@ msgstr "Top N" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 #: ../../enterprise/include/functions_reporting_csv.php:950 #: ../../include/functions_reports.php:789 -#: ../../include/functions_reporting.php:3338 +#: ../../include/functions_reporting.php:3456 msgid "Exception" msgstr "Excepción" @@ -20337,7 +20175,7 @@ msgstr "Suma" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 -#: ../../include/functions_reporting.php:10172 +#: ../../include/functions_reporting.php:10390 msgid "Rate" msgstr "Tasa" @@ -20423,14 +20261,14 @@ msgstr "Cantidad (n)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2493 #: ../../godmode/reporting/reporting_builder.item_editor.php:2519 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1644 +#: ../../operation/agentes/ver_agente.php:1662 msgid "Display" msgstr "Mostrar" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598 #: ../../godmode/reporting/reporting_builder.item_editor.php:2681 -#: ../../include/functions_reporting.php:3360 +#: ../../include/functions_reporting.php:3478 msgid "Everything" msgstr "Todo" @@ -20504,13 +20342,13 @@ msgstr "Orientación de página" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 #: ../../include/functions_visual_map_editor.php:843 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "Vertical" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 #: ../../include/functions_visual_map_editor.php:844 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 msgid "Horizontal" msgstr "Horizontal" @@ -20661,7 +20499,7 @@ msgstr "Mostrar umbral" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564 #: ../../godmode/reporting/reporting_builder.item_editor.php:2657 #: ../../godmode/reporting/graph_builder.main.php:245 -#: ../../include/functions.php:4141 ../../include/functions.php:4149 +#: ../../include/functions.php:4167 ../../include/functions.php:4175 msgid "Percentil" msgstr "Percentil" @@ -20689,7 +20527,7 @@ msgstr "Estado del evento" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:710 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2959 #: ../../godmode/reporting/reporting_builder.item_editor.php:3067 -#: ../../operation/agentes/tactical.php:254 +#: ../../operation/agentes/tactical.php:257 msgid "Event graphs" msgstr "Gráficos de eventos" @@ -20778,11 +20616,11 @@ msgstr "Utilizar datos de módulos descomprimidos" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:911 #: ../../enterprise/include/functions_massive.php:54 -#: ../../godmode/agentes/module_manager.php:265 +#: ../../godmode/agentes/module_manager.php:266 #: ../../godmode/massive/massive_delete_action_alerts.php:175 #: ../../godmode/massive/massive_add_action_alerts.php:163 #: ../../godmode/massive/massive_edit_modules.php:1999 -#: ../../include/functions_visual_map.php:2682 +#: ../../include/functions_visual_map.php:2684 msgid "No modules selected" msgstr "No se han seleccionado módulos." @@ -20873,7 +20711,7 @@ msgstr "Mostrar solo los SLA incorrectos" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1419 #: ../../include/functions_reporting_html.php:4759 #: ../../include/functions_reporting_html.php:5030 -#: ../../include/functions_reporting_html.php:5167 +#: ../../include/functions_reporting_html.php:5186 #: ../../include/functions_netflow.php:1183 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" @@ -21047,7 +20885,7 @@ msgstr "Editor de elementos de plantilla de gráfico" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242 #: ../../godmode/reporting/graph_builder.graph_editor.php:215 #: ../../godmode/reporting/graph_builder.graph_editor.php:345 -#: ../../include/functions.php:4001 +#: ../../include/functions.php:4027 msgid "Weight" msgstr "Peso" @@ -21142,13 +20980,13 @@ msgid "Without changes" msgstr "Sin cambios" #: ../../enterprise/godmode/reporting/mysql_builder.php:215 -#: ../../operation/users/user_edit.php:195 +#: ../../operation/users/user_edit.php:202 msgid "No changes have been made" msgstr "No se han hecho cambios" #: ../../enterprise/godmode/reporting/mysql_builder.php:234 #: ../../enterprise/include/functions_reporting_csv.php:1134 -#: ../../include/functions_reporting.php:7213 +#: ../../include/functions_reporting.php:7428 msgid "SQL" msgstr "SQL" @@ -21274,11 +21112,11 @@ msgstr "Marcar si no quieres que muestre elementos sin datos" #: ../../godmode/reporting/visual_console_builder.elements.php:575 #: ../../include/functions_visual_map_editor.php:397 #: ../../include/functions_visual_map_editor.php:400 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 #: ../../include/functions_reports.php:561 #: ../../include/functions_reports.php:648 #: ../../include/functions_reports.php:654 -#: ../../include/functions_reporting.php:10243 +#: ../../include/functions_reporting.php:10461 msgid "Custom graph" msgstr "Gráfica personalizada" @@ -21305,7 +21143,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/include/functions_reporting_csv.php:2459 #: ../../enterprise/include/functions_reporting_csv.php:2473 -#: ../../extensions/api_checker.php:220 +#: ../../extensions/api_checker.php:304 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 #: ../../godmode/reporting/reporting_builder.item_editor.php:2387 #: ../../godmode/events/event_responses.editor.php:156 @@ -21330,7 +21168,7 @@ msgstr "Agrupar por" #: ../../enterprise/include/functions_reporting_csv.php:1080 #: ../../godmode/reporting/reporting_builder.item_editor.php:2536 #: ../../include/functions_reporting_html.php:4919 -#: ../../include/functions_reporting.php:1539 +#: ../../include/functions_reporting.php:1540 msgid "Avg" msgstr "Media" @@ -21611,7 +21449,7 @@ msgstr "Nombre de módulo literal forzado" #: ../../godmode/reporting/reporting_builder.item_editor.php:4731 #: ../../godmode/reporting/reporting_builder.item_editor.php:4765 #: ../../godmode/reporting/reporting_builder.item_editor.php:4819 -#: ../../include/functions_ui.php:5871 ../../include/functions_html.php:5436 +#: ../../include/functions_ui.php:5875 ../../include/functions_html.php:5436 msgid "Select an Agent first" msgstr "Debe seleccionar primero un agente" @@ -21627,12 +21465,12 @@ msgstr "El nombre y el límite SLA no deberían estar vacíos." #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103 #: ../../godmode/modules/module_list.php:60 #: ../../godmode/groups/configure_group.php:153 -#: ../../godmode/groups/group_list.php:844 ../../godmode/setup/os.builder.php:40 +#: ../../godmode/groups/group_list.php:849 ../../godmode/setup/os.builder.php:40 #: ../../godmode/reporting/visual_console_builder.elements.php:293 #: ../../include/functions_visual_map_editor.php:68 #: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/functions_visual_map.php:4274 -#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../include/functions_visual_map.php:4225 +#: ../../include/rest-api/models/VisualConsole/Item.php:2148 #: ../../include/lib/Dashboard/Widgets/module_icon.php:424 #: ../../include/lib/Dashboard/Widgets/module_status.php:415 #: ../../operation/visual_console/view.php:343 @@ -21708,7 +21546,7 @@ msgstr "Bajar" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 #: ../../godmode/reporting/reporting_builder.list_items.php:445 -#: ../../include/functions_graph.php:1542 +#: ../../include/functions_graph.php:1514 msgid "No items." msgstr "Sin elementos" @@ -21717,7 +21555,7 @@ msgstr "Sin elementos" #: ../../enterprise/include/class/VMware.app.php:254 #: ../../enterprise/include/class/DB2.app.php:187 #: ../../enterprise/include/class/SAP.app.php:175 -#: ../../enterprise/include/class/Aws.cloud.php:908 +#: ../../enterprise/include/class/Aws.cloud.php:907 #: ../../enterprise/include/class/MySQL.app.php:196 #: ../../enterprise/include/class/Google.cloud.php:423 #: ../../enterprise/include/class/Oracle.app.php:194 @@ -21766,7 +21604,7 @@ msgstr "Crear nueva tarea de la consola" #: ../../enterprise/include/class/Omnishell.class.php:1351 #: ../../enterprise/include/class/DB2.app.php:354 #: ../../enterprise/include/class/SAP.app.php:401 -#: ../../enterprise/include/class/Aws.cloud.php:1127 +#: ../../enterprise/include/class/Aws.cloud.php:1126 #: ../../enterprise/include/class/MySQL.app.php:371 #: ../../enterprise/include/class/Google.cloud.php:686 #: ../../enterprise/include/class/Oracle.app.php:361 @@ -21783,7 +21621,7 @@ msgstr "Crear nueva tarea de la consola" #: ../../include/class/CustomNetScan.class.php:314 #: ../../include/class/CustomNetScan.class.php:422 #: ../../include/class/HTML.class.php:419 -#: ../../include/lib/ClusterViewer/ClusterManager.php:755 +#: ../../include/lib/ClusterViewer/ClusterManager.php:752 #: ../../include/lib/ClusterViewer/ClusterWizard.php:349 msgid "Go back" msgstr "Volver" @@ -21793,7 +21631,7 @@ msgid "Updating console task" msgstr "Actualizar tarea de la consola" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 -#: ../../godmode/menu.php:53 +#: ../../godmode/menu.php:54 #: ../../godmode/wizards/DiscoveryTaskList.class.php:105 msgid "Task list" msgstr "Lista de tareas" @@ -21811,7 +21649,7 @@ msgstr "Siguiente ejecución" #: ../../enterprise/include/class/Azure.cloud.php:190 #: ../../enterprise/include/class/DeploymentCenter.class.php:590 #: ../../enterprise/include/class/Aws.cloud.php:158 -#: ../../enterprise/include/class/Google.cloud.php:184 ../../godmode/menu.php:84 +#: ../../enterprise/include/class/Google.cloud.php:184 ../../godmode/menu.php:85 #: ../../godmode/wizards/HostDevices.class.php:190 #: ../../godmode/servers/discovery.php:59 msgid "Discovery" @@ -22036,7 +21874,7 @@ msgid "Preffix" msgstr "Prefijo" #: ../../enterprise/godmode/servers/manage_export.php:141 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1145 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1171 #: ../../enterprise/godmode/servers/manage_export_form.php:103 msgid "Transfer mode" msgstr "Modo de transferencia" @@ -22064,46 +21902,46 @@ msgstr "Subred" msgid "No Data" msgstr "No hay datos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:210 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:212 msgid "Error: The conf file of server is not readble." msgstr "Error: el archivo de configuración del servidor no se puede leer." -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:214 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:216 msgid "Error: The conf file of server is not writable." msgstr "Error: no se puede escribir en el archivo de configuración del servidor" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:312 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:314 msgid "Default value: " msgstr "Valor predeterminado: " -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:340 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:342 #: ../../include/functions_servers.php:556 #: ../../include/functions_servers.php:1305 msgid "Data server" msgstr "Servidor de datos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:346 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:348 #: ../../include/functions_servers.php:569 #: ../../include/functions_servers.php:1308 #: ../../include/class/AgentWizard.class.php:1379 msgid "Network server" msgstr "Servidor de red" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:352 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:354 #: ../../include/functions_servers.php:855 #: ../../include/functions_servers.php:1353 msgid "Alert server" msgstr "Servidor de alertas" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:358 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:360 #: ../../enterprise/include/ajax/ipam.ajax.php:357 #: ../../enterprise/include/class/Azure.cloud.php:781 #: ../../enterprise/include/class/VMware.app.php:593 #: ../../enterprise/include/class/DB2.app.php:448 #: ../../enterprise/include/class/Aws.S3.php:412 #: ../../enterprise/include/class/SAP.app.php:481 -#: ../../enterprise/include/class/Aws.cloud.php:523 -#: ../../enterprise/include/class/Aws.cloud.php:1213 +#: ../../enterprise/include/class/Aws.cloud.php:522 +#: ../../enterprise/include/class/Aws.cloud.php:1212 #: ../../enterprise/include/class/MySQL.app.php:453 #: ../../enterprise/include/class/Google.cloud.php:769 #: ../../enterprise/include/class/Oracle.app.php:455 @@ -22117,190 +21955,211 @@ msgstr "Servidor de alertas" msgid "Discovery server" msgstr "Servidor Discovery" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:364 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:366 +#: ../../include/functions_servers.php:621 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:840 +msgid "Prediction server" +msgstr "Servidor de predicción" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:372 #: ../../include/functions_servers.php:608 #: ../../include/functions_servers.php:1320 #: ../../include/class/AgentWizard.class.php:1360 msgid "Plugin server" msgstr "Servidor de plugins" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:370 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:418 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:378 +#: ../../include/functions_menu.php:526 ../../operation/menu.php:131 +msgid "SNMP console" +msgstr "Consola SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:384 #: ../../include/functions_servers.php:1311 msgid "SNMP server" msgstr "Servidor SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:376 -#: ../../include/functions_servers.php:621 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:840 -msgid "Prediction server" -msgstr "Servidor de predicción" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:382 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1326 -#: ../../include/class/AgentWizard.class.php:1370 -msgid "WMI server" -msgstr "Servidor WMI" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:388 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:390 #: ../../include/functions_servers.php:673 #: ../../include/functions_servers.php:1329 msgid "Web server" msgstr "Servidor web" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:394 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:396 #: ../../include/functions_servers.php:660 #: ../../include/functions_servers.php:1335 msgid "Inventory server" msgstr "Servidor de inventario" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:400 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:402 #: ../../enterprise/godmode/servers/manage_export_form.php:79 #: ../../include/functions_servers.php:647 #: ../../include/functions_servers.php:1332 msgid "Export server" msgstr "Servidor de exportación" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:406 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:408 #: ../../include/functions_servers.php:686 #: ../../include/functions_servers.php:1338 msgid "Event server" msgstr "Servidor de eventos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:412 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:414 msgid "ICMP server" msgstr "Servidor ICPM" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:424 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:420 #: ../../include/functions_servers.php:1347 msgid "WUX server" msgstr "Servidor WUX" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:430 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:426 #: ../../include/functions_servers.php:816 #: ../../include/functions_servers.php:1356 msgid "NCM server" msgstr "Servidor NCM" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:432 +#: ../../include/functions_servers.php:634 +#: ../../include/functions_servers.php:1326 +#: ../../include/class/AgentWizard.class.php:1370 +msgid "WMI server" +msgstr "Servidor WMI" + #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:438 -msgid "Network timeout" -msgstr "Tiempo de espera de red" +msgid "Syslog server" +msgstr "Servidor Syslog" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:445 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770 -msgid "Plugin timeout" -msgstr "Tiempo de espera del plugin" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:452 -msgid "SNMP console threads" -msgstr "Hilos de la consola SNMP" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:458 -msgid "Network threads" -msgstr "Hilos de red" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:464 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:763 -msgid "Plugin threads" -msgstr "Hilos de plugin" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:470 -msgid "Recon threads" -msgstr "Hilos de recon" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 msgid "Dataserver threads" msgstr "Hilos del servidor de datos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:482 -msgid "Web threads" -msgstr "Hilos web" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:452 +msgid "Network timeout" +msgstr "Tiempo de espera de red" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:488 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:929 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:459 +msgid "Network threads" +msgstr "Hilos de red" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:465 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:796 +msgid "Plugin timeout" +msgstr "Tiempo de espera del plugin" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:472 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:789 +msgid "Plugin threads" +msgstr "Hilos de plugin" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:478 +msgid "SNMP console threads" +msgstr "Hilos de la consola SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:484 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:955 msgid "SNMP threads" msgstr "Hilos SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:494 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:490 +msgid "Web threads" +msgstr "Hilos web" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:496 +msgid "Inventory threads" +msgstr "Hilos de inventario" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:502 msgid "ICMP threads" msgstr "Hilos ICMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:502 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:508 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1225 +msgid "WMI threads" +msgstr "Hilos WMI" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:514 +msgid "Syslog threads" +msgstr "Hilos de Syslog" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:520 +msgid "Recon threads" +msgstr "Hilos de recon" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:528 msgid "Autocreate group" msgstr "Autocrear grupo" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:508 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:534 msgid "Autocreate group force" msgstr "Forzar auto-creación de grupo" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:514 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:540 msgid "Autocreate" msgstr "Autocrear" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:526 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552 msgid "Agent configuration files directory" msgstr "Directorio de archivos de configuración del agente" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:527 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:553 msgid "Directory where agent configuration files are stored" msgstr "Directorio donde se almacenan los archivos de configuración del agente" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:540 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:566 msgid "Agent interval" msgstr "Intervalo del agente" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:546 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:572 msgid "Agent threads" msgstr "Hilos de Agente" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:547 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:573 msgid "Number of threads used for sending agent XML data files" msgstr "Número de hilos utilizados para enviar archivos de datos XML del agente" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:553 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:579 msgid "ICMP subnets blacklist" msgstr "Lista negra de subredes ICMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:554 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:561 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:568 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:580 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:587 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:594 msgid "Separated by a comma. Example: 192.168.0.0/24,8.8.8.8/30" msgstr "Separados por una coma. Ejemplo: 192.168.0.0/24,8.8.8.8/30" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:560 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:586 msgid "SNMP subnets blacklist" msgstr "Lista negra de subredes SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:567 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:593 msgid "WMI subnets blacklist" msgstr "Lista negra de subredes WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:574 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:600 msgid "Path to braa binary" msgstr "Ruta al binario braa" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:580 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:606 msgid "Credential password" msgstr "Contraseña de credencial" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:581 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 msgid "Password used to encrypt credential boxes" msgstr "Contraseña utilizada para cifrar cuadros de credenciales" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:587 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:613 msgid "Remote configuration check interval" msgstr "Intervalo de comprobación de configuración remota" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:593 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:619 msgid "Daemon" msgstr "Demonio" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:594 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:620 msgid "Run in background if set to 1" msgstr "Ejecutar en segundo plano si se establece en 1" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:601 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:627 msgid "" "Set to 1 to move dynamic auto-discovered modules (SNMP, WMI...) to separate " "files so that they don't interfere with remote agent configuration" @@ -22309,27 +22168,27 @@ msgstr "" "archivos separados para que no interfieran con la configuración de agente " "remoto" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:633 msgid "Exec interval" msgstr "Intervalo de ejecución" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:608 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:634 msgid "Time between exec checks" msgstr "Tiempo entre comprobaciones de ejecución" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:614 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:640 msgid "Exec threads" msgstr "Hilos de ejecución" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:615 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:641 msgid "Number of threads used for exec modules" msgstr "Número de hilos utilizados para los módulos exec" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:621 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 msgid "Path to fping binary" msgstr "Ruta de acceso al binario fping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:622 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 msgid "" "Used by the Enterprise ICMP Server. Default path is /usr/sbin/fping for " "installation in Centos, if you are installing in another distro, install fping " @@ -22339,15 +22198,15 @@ msgstr "" "fping para la instalación en Centos, si va a instalarlo en otra distribución, " "instale fping en /usr/bin/fping y actualice este campo con la nueva ruta" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:628 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:654 msgid "Path to Pandora Fast SNMP binary" msgstr "Ruta al binario Fast SNMP de Pandora" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:634 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:660 msgid "Forced add" msgstr "Adición forzada" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:635 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:661 msgid "" "If set to 1, manually added hosts (via add_host or host_file) will always be " "created, whether they respond to ping or not" @@ -22355,213 +22214,213 @@ msgstr "" "Si se ajusta a 1, siempre se crearán hosts agregados manualmente (a través de " "add_host o host_file), ya sea que respondan al ping o no." -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:641 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:667 msgid "General GIS exec" msgstr "Ejecución de SIG général" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 msgid "" "Path to general GIS coordinates generator. It should be an executable file" msgstr "" "Ruta al generador general de coordenadas SIG. Debe ser un archivo ejecutable" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 msgid "Group where agents will be placed (must exist in the Pandora FMS console)" msgstr "" "Grupo donde se añadirán los agentes (debe existir en la consola de Pandora FMS)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:654 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:680 msgid "Host file" msgstr "Archivo host" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:655 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:681 msgid "" "File containing hosts to be scanned. The address may be followed by a hostname" msgstr "" "Archivo que contiene hosts que se van a analizar. La dirección puede ir " "seguida de un nombre de host" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:661 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:687 msgid "Latency block" msgstr "Bloque de latencia" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:662 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688 msgid "Number of hosts processed in a single call to nmap (latency)" msgstr "Número de hosts procesados en una sola llamada a nmap (latencia)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694 msgid "Latency interval" msgstr "Intervalo de latencia" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:669 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:695 msgid "Time between latency checks" msgstr "Tiempo entre comprobaciones de latencia" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:675 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:701 msgid "Latency packets" msgstr "Paquetes de latencia" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:676 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:702 msgid "Number of ICMP packets to send per latency request" msgstr "Número de paquetes ICMP que se van a enviar por solicitud de latencia" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:682 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:708 msgid "Latency retries" msgstr "Reintentos de latencia" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:683 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:736 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:709 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:762 msgid "Number of retries for latency modules" msgstr "Número de reintentos para módulos de latencia" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:689 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:715 msgid "Latency threads" msgstr "Hilos de latencia" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:716 msgid "Number of threads used for latency checks." msgstr "Número de hilos utilizados para las comprobaciones de latencia." -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:696 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 msgid "Latency timeout" msgstr "Tiempo de espera de latencia" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:697 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:723 msgid "Timeout for latency checks in seconds." msgstr "Tiempo de espera para las comprobaciones de latencia en segundos." -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:703 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:729 msgid "Log file path" msgstr "Ruta del archivo de registro" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:709 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:735 msgid "Path to nmap binary" msgstr "Ruta de acceso al binario nmap" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:714 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:740 msgid "Ping block" msgstr "Bloque de ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:715 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:741 msgid "Number of hosts processed in a single call to nmap (ping)" msgstr "Número de hosts procesados en una sola llamada a nmap (ping)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:721 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:747 msgid "Ping interval" msgstr "Intervalo de ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:748 msgid "Time between ping checks" msgstr "Tiempo entre comprobaciones de ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:728 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 msgid "Ping packets" msgstr "Paquetes de ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:729 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:755 msgid "Number of ICMP packets to send per ping request" msgstr "Número de paquetes ICMP a enviar por solicitud de ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:735 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:761 msgid "Ping retries" msgstr "Reintentos de ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:742 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:768 msgid "Ping threads" msgstr "Hilos de ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:743 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:769 msgid "Number of threads used for ping checks" msgstr "Número de hilos utilizados para las comprobaciones de ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:749 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:775 msgid "Ping timeout" msgstr "Tiempo de espera de ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:750 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:776 msgid "Timeout for ping checks in seconds" msgstr "Tiempo de espera para las comprobaciones de ping en segundos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:756 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:782 msgid "Plugin interval" msgstr "Intervalo del plugin" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:757 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:783 msgid "Time between plug-in checks" msgstr "Tiempo entre comprobaciones de plugins" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:764 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 msgid "Number of threads used for plug-in checks" msgstr "Número de hilos utilizados para las comprobaciones de plugins" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:771 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 msgid "Timeout for plug-in checks in seconds" msgstr "Tiempo de espera para las comprobaciones de plugin en segundos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:777 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 msgid "Proxy traps from" msgstr "Traps de proxy de" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:783 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:809 msgid "Proxy traps to" msgstr "Traps de proxy a" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:784 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:810 msgid "Enable the SNMP trap proxy to the specified address" msgstr "Habilitar el proxy de tras SNMP en la dirección especificada" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 msgid "Proxy tentacle to" msgstr "Tentacle de proxy a" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:791 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:817 msgid "Enable the Tentacle proxy to the specified address:port" msgstr "Habilitar el proxy de Tentacle en la dirección:puerto especificado" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:823 msgid "Proxy tentacle from" msgstr "Tentacle de proxy de" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:829 msgid "Recon community" msgstr "Comunidad de reconocimento" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:804 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:830 msgid "Comma separated list of SNMP communities to try for SNMP auto-discovery" msgstr "" "Lista separada por comas de comunidades SNMP para probar la detección " "automática de SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:810 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:836 msgid "Recon enabled" msgstr "Reconocimiento habilitado" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:811 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:837 msgid "Enable (1) or disable (0) host auto-discovery" msgstr "Habilitar (1) o deshabilitar (0) la detección automática de hosts" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:817 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:843 msgid "Recon interval" msgstr "Intervalo de reconocimiento" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:818 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:844 msgid "Time between network scans in seconds" msgstr "Tiempo entre escaneos de red en segundos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:824 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:850 msgid "Recon mode" msgstr "Modo de reconocimiento" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:825 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:851 msgid "Comma separated list of auto-discovery modules (snmp,icmp,wmi)" msgstr "" "Lista separada por comas de módulos de detección automática (snmp, icmp, wmi)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:831 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:857 msgid "Recon task" msgstr "Tarea de reconocimiento" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:858 msgid "" "Comma separated list of networks (in slash notation) to scan for host auto-" "discovery (example: 192.168.0.0/24,192.168.1.0/24)" @@ -22569,11 +22428,11 @@ msgstr "" "Lista separada por comas de redes (en notación de barra diagonal) para la " "detección automática de hosts (ejemplo: 192.168.0.0/24,192.168.1.0/24)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:838 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:864 msgid "Recon timing template" msgstr "Plantilla de tiempo de reconocimiento" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:839 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 msgid "" "Like nmap_timing_template, but applies to Satellite Server and Recon Server " "network scans. 3 by default" @@ -22581,71 +22440,71 @@ msgstr "" "Similar a nmap_timing_template, pero se aplica a los análisis de red de los " "servidores Satellite y Recon. 3 por defecto" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:845 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:871 #: ../../enterprise/include/class/DeploymentCenter.class.php:811 msgid "Server IP" msgstr "IP del servidor" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:846 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 msgid "Tentacle server address. Put here your Pandora FMS data server address" msgstr "" "Dirección del servidor de Tentacle. Introduzca aquí la dirección de tu " "servidor de datos de Pandora FMS" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:853 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 msgid "Name of the Satellite server (the hostname is used by default)" msgstr "" "Nombre del servidor Satélite (el nombre de host se utiliza de forma " "predeterminada)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:859 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:885 msgid "Server path" msgstr "Ruta del servidor" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:860 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886 msgid "" "Path where XML files are copied (only used if transfer mode is set to local)" msgstr "" "Ruta donde se copian los archivos XML (solo se usa si el modo de transferencia " "está establecido en local)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:866 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:892 msgid "Server port" msgstr "Puerto del servidor" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:867 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893 msgid "Tentacle server port" msgstr "Puerto del servidor Tentacle" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:873 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:899 msgid "SSH interval" msgstr "Intervalo SSH" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:874 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:900 msgid "Time between SSH checks" msgstr "Tiempo entre comprobaciones SSH" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:880 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:906 msgid "SSH threads" msgstr "Hilos SSH" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:881 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:907 msgid "Number of threads used for SSH modules" msgstr "Número de hilos utilizados para los módulos SSH" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:887 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:913 msgid "SSH timeout" msgstr "Tiempo de espera de SSH" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:888 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:914 msgid "Timeout for SSH checks in seconds" msgstr "Tiempo de espera para las comprobaciones SSH en segundos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:894 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:920 msgid "Keepalive" msgstr "Keepalive" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:895 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:921 msgid "" "Interval of the main server loop in seconds. Status updates are sent to " "Pandora every keepalive seconds" @@ -22653,62 +22512,62 @@ msgstr "" "Intervalo del bucle del servidor principal en segundos. Las actualizaciones de " "estado se envían a Pandora FMS en el intervalo de segundos de keepalive" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:901 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:927 msgid "SNMP blacklist" msgstr "Lista negra de SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:902 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:928 msgid "SNMP module blacklist" msgstr "Lista negra de módulos SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:908 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:934 msgid "SNMP block" msgstr "Bloque SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:909 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935 msgid "Number of hosts processed in a single call to braa (SNMPv1)" msgstr "Número de hosts procesados en una sola llamada a braa (SNMPv1)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:915 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:941 msgid "SNMP interval" msgstr "Intervalo SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:916 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:942 msgid "Time between SNMP checks (SNMPv1)" msgstr "Tiempo entre comprobaciones SNMP (SNMPv1)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:922 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:948 msgid "SNMP retries" msgstr "Reintentos de SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:923 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:949 msgid "Number of retries for SNMP modules (SNMPv1)" msgstr "Número de reintentos para módulos SNMP (SNMPv1)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:930 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:956 msgid "Number of threads used for SNMP checks (SNMPv1)" msgstr "Número de hilos utilizados para las comprobaciones SNMP (SNMPv1)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:936 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:962 msgid "SNMP timeout" msgstr "Tiempo de espera de SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:937 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:963 msgid "Timeout for SNMP checks in seconds (SNMPv1)" msgstr "Tiempo de espera para las comprobaciones SNMP en segundos (SNMPv1)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:943 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:969 msgid "SNMP verify" msgstr "Verificación de SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:944 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:970 msgid "" "Enable (1) or disable (0) the verification of SNMPv1 modules that break braa" msgstr "" "Habilitar (1) o deshabilitar (0) la verificación de los módulos SNMPv1 que " "rompen braa" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:951 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:977 msgid "" "Default SNMP version to use (1 or 2c, SNMPv3 modules explicitly state their " "version). WARNING: some modules could stop working if you change this setting" @@ -22717,102 +22576,102 @@ msgstr "" "explícitamente su versión). ADVERTENCIA: algunos módulos podrían dejar de " "funcionar si cambia esta configuración" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:957 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:983 msgid "SNMPv2c block" msgstr "Bloque SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:958 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:984 msgid "Number of hosts processed in a single call to braa (SNMPv2c)" msgstr "Número de hosts procesados en una sola llamada a braa (SNMPv2c)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:964 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 msgid "SNMPv2c interval" msgstr "Intervalo SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:965 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:991 msgid "Time between SNMP checks (SNMPv2c)" msgstr "Tiempo entre comprobaciones SNMP (SNMPv2c)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:971 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:997 msgid "SNMPv2c retries" msgstr "Reintentos de SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:972 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:998 msgid "Number of retries for SNMP modules (SNMPv2c)" msgstr "Número de reintentos para módulos SNMP (SNMPv2c)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:978 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1004 msgid "SNMPv2c threads" msgstr "Hilos de SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:979 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1005 msgid "Number of threads used for SNMP checks (SNMPv2c)" msgstr "Número de hilos utilizados para las comprobaciones SNMP (SNMPv2c)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:985 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1011 msgid "SNMPv2c timeout" msgstr "Tiempo de espera de SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:986 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1012 msgid "Timeout for snmp checks in seconds (SNMPv2c)" msgstr "Tiempo de espera para las comprobaciones snmp en segundos (SNMPv2c)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:992 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1018 msgid "SNMPv2c verify" msgstr "Verificación de SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:993 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1019 msgid "" "Enable (1) or disable (0) the verification of SNMPv2 modules that break braa" msgstr "" "Habilitar (1) o deshabilitar (0) la verificación de módulos SNMPv2 que rompen " "braa" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:999 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1025 msgid "SNMPv3 block" msgstr "Bloque SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1000 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1026 msgid "Number of hosts processed in a single call to braa (SNMPv3)" msgstr "Número de hosts procesados en una sola llamada a braa (SNMPv3)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1006 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1032 msgid "SNMPv3 interval" msgstr "Intervalo SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1007 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1033 msgid "Time between SNMP checks (SNMPv3)" msgstr "Tiempo entre comprobaciones SNMP (SNMPv3)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1013 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1039 msgid "SNMPv3 retries" msgstr "Reintentos de SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1014 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1040 msgid "Number of retries for SNMP modules (SNMPv3)" msgstr "Número de reintentos para módulos SNMP (SNMPv3)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1020 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1046 msgid "SNMPv3 threads" msgstr "Hilos de SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1021 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1047 msgid "Number of threads used for SNMP checks (SNMPv3)" msgstr "Número de hilos utilizados para las comprobaciones SNMP (SNMPv3)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1027 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1053 msgid "SNMPv3 timeout" msgstr "Tiempo de espera de SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1028 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1054 msgid "Timeout for SNMP checks in seconds (SNMPv3)" msgstr "Tiempo de espera para las comprobaciones SNMP en segundos (SNMPv3)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1034 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1060 msgid "SNMPv3 verify" msgstr "Verificación de SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1035 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1061 msgid "" "Enable (1) or disable (0) the verification of SNMPv3 modules that break " "pandorafsnmp" @@ -22820,201 +22679,197 @@ msgstr "" "Habilitar (1) o deshabilitar (0) la verificación de módulos SNMPv3 que rompen " "pandorafsnmp" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1041 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1067 msgid "SNMPv3 security level" msgstr "Nivel de seguridad SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1042 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1068 msgid "Security level used for SNMPv3 messages (noauth, authnopriv or authpriv)" msgstr "" "Nivel de seguridad utilizado para mensajes SNMPv3 (noauth, authnopriv o " "authpriv)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1048 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1074 msgid "SNMPv3 security name" msgstr "Nombre de seguridad SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1049 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1075 msgid "Security name used for SNMPv3 messages" msgstr "Nombre de seguridad utilizado para los mensajes SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1055 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1081 msgid "SNMPv3 authentication protocol" msgstr "Protocolo de autenticación SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1056 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1082 msgid "Authentication protocol (md5 or sha) for authenticated SNMPv3 requests" msgstr "" "Protocolo de autenticación (md5 o sha) para solicitudes SNMPv3 autenticadas" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1062 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1088 msgid "SNMPv3 authentication password" msgstr "Contraseña de autenticación SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1063 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1089 msgid "Authentication password for authenticated SNMPv3 request" msgstr "Contraseña de autenticación para la solicitud SNMPv3 autenticada" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1069 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1095 msgid "SNMPv3 privacy protocol" msgstr "Protocolo de privacidad SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1070 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1096 msgid "Privacy protocol (des or aes) for encrypted SNMPv3 requests" msgstr "Protocolo de privacidad (des o aes) para solicitudes SNMPv3 cifradas" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1076 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1102 msgid "SNMPv3 privacy password" msgstr "Contraseña de privacidad SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1077 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1103 msgid "Privacy password for encrypted SNMPv3 messages" msgstr "Contraseña de privacidad para mensajes SNMPv3 cifrados" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1083 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1109 msgid "Startup delay" msgstr "Retraso en el inicio" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1084 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1110 msgid "" "Wait startup_delay seconds before sending XML data files for the first time" msgstr "" "Espere startup_delay segundos antes de enviar archivos de datos XML por " "primera vez" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1090 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1116 msgid "TCP interval" msgstr "Intervalo TCP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1091 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1117 msgid "Time between TCP checks" msgstr "Tiempo entre comprobaciones TCP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1097 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1123 msgid "TCP threads" msgstr "Hilos TCP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1098 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1124 msgid "Threads dedicated to TCP checks" msgstr "Hilos dedicados a comprobaciones TCP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1104 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1130 msgid "TCP timeout" msgstr "Tiempo de espera TCP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1105 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1131 msgid "Timeout for TCP checks in seconds" msgstr "Tiempo de espera para las comprobaciones TCP en segundos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1111 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1137 msgid "Temporal" msgstr "Temporal" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1112 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1138 msgid "Temporal directory where XML files are created" msgstr "Directorio temporal donde se crean los archivos XML" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1118 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1144 msgid "Temporal minimum size" msgstr "Tamaño mínimo temporal" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1119 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1145 msgid "" "Minimum available bytes in the temporal directory to enable the XML buffer" msgstr "" "Mínimo de bytes disponibles en el directorio temporal para habilitar el búfer " "XML" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1125 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1151 msgid "Full path to tentacle client" msgstr "Ruta completa al cliente de Tentacle" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1131 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1157 msgid "Timeout for the timeout command" msgstr "Tiempo de espera para el comando de tiempo de espera" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1132 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1158 msgid "In seconds" msgstr "En segundos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1138 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1164 msgid "Server opts" msgstr "Opciones de servidor" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1139 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1165 msgid "Parameters that are passed to Tentacle" msgstr "Parámetros que se pasan a Tentacle" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1146 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1172 msgid "tentacle or local" msgstr "Tentacle o local" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1152 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1178 msgid "Verbosity" msgstr "Verbosidad" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1153 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1179 msgid "Verbosity level from 0 (less verbose) to 10 (more verbose)" msgstr "Nivel de verbosidad de 0 (menos detallado) a 10 (más detallado)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1159 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1185 msgid "VLAN cache enabled" msgstr "Caché de VLAN habilitada" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1160 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1186 msgid "Enable (1) or disable (0) the VLAN cache for host auto-discovery" msgstr "" "Habilitar (1) o deshabilitar (0) la memoria caché de VLAN para la detección " "automática del host" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1166 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1192 msgid "Enable XML buffer" msgstr "Habilitar búfer XML" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1172 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1198 msgid "WMI authentication" msgstr "Autenticación WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1173 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1199 msgid "" "Comma separated list of username%password pairs to try for WMI authentication" msgstr "" "Lista separada por comas de pares de nombre de usuario%contraseña para probar " "la autenticación WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1179 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1205 msgid "Full path to WMI client binary" msgstr "Ruta de acceso completa al binario de cliente WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1185 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1211 msgid "WMI interval" msgstr "Intervalo WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1186 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1212 msgid "Time in seconds between WMI checks" msgstr "Tiempo en segundos entre comprobaciones WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1192 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1218 msgid "WMI NTLMv2" msgstr "WMI NTLMv2" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1193 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1219 msgid "Enable to use NTLMv2 authentication for WMI" msgstr "Habilitar el uso de la autenticación NTLMv2 para WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1199 -msgid "WMI threads" -msgstr "Hilos WMI" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1200 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1226 msgid "Threads dedicated to WMI polling" msgstr "Hilos dedicados al sondeo WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1206 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1232 msgid "IPAM task" msgstr "Tarea de IPAM" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1207 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1233 msgid "" "Comma separated list of networks (in slash notation) to scan for IPAM. Must be " "preceded by the ID of the IPAM task in Pandora FMS (E.g. 1,192.168.0.0/24)" @@ -23023,11 +22878,11 @@ msgstr "" "busca de IPAM. Debe ir precedido del ID de la tarea IPAM en Pandora FMS (ej. " "1.192.168.0.0/24)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1213 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1239 msgid "Timeout bin" msgstr "Tiempo de espera de binario" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1214 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1240 msgid "" "If defined, the timeout program (usually /usr/bin/timeout) will be used to " "call the Tentacle client" @@ -23035,19 +22890,19 @@ msgstr "" "Si se define, el programa de tiempo de espera (normalmente /usr/bin/timeout) " "se utilizará para llamar al cliente Tentacle" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1220 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1246 msgid "IPAM interval" msgstr "Intervalo de IPAM" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1221 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1247 msgid "Time between IPAM scans in seconds" msgstr "Tiempo entre exploraciones de IPAM en segundos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1229 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1255 msgid "Secondary mode" msgstr "Modo secundario" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1230 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1256 msgid "" "If secondary_mode is set to on_error, data files are copied to the secondary " "server only if the primary server fails. If set to always, data files are " @@ -23058,31 +22913,31 @@ msgstr "" "Si se establece en siempre, los archivos de datos siempre se copian en el " "servidor secundario" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1236 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1262 msgid "Secondary server IP" msgstr "IP del servidor secundario" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1242 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1268 msgid "Secondary server path" msgstr "Ruta del servidor secundario" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1248 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1274 msgid "Secondary server port" msgstr "Puerto del servidor secundario" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1254 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1280 msgid "Secondary transfer mode" msgstr "Modo de transferencia secundario" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1260 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1286 msgid "Secondary server opts" msgstr "Opciones del servidor secundario" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1350 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1376 msgid "Delete remote conf server files" msgstr "Eliminar archivos de servidor de configuración remotos" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1351 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 msgid "" "Delete this conf file implies that server will send back local config to " "console" @@ -23090,23 +22945,23 @@ msgstr "" "Eliminar este archivo de configuración significa que el servidor devolverá la " "configuración local a la consola" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1387 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1413 msgid "General server configuration" msgstr "Configuración general del servidor" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1394 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1420 msgid "Secondary server configuration" msgstr "Configuración del servidor secundario" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1400 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1426 msgid "Server features" msgstr "funcionalidades del servidor" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1407 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1433 msgid "Optimization settings" msgstr "Ajustes de optimización" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1414 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1440 msgid "Other server settings" msgstr "Otros ajustes de servidor" @@ -23122,7 +22977,7 @@ msgstr "Directorio objetivo" #: ../../enterprise/include/class/Azure.cloud.php:823 #: ../../enterprise/include/class/VMware.app.php:643 #: ../../enterprise/include/class/Aws.S3.php:584 -#: ../../enterprise/include/class/Aws.cloud.php:567 +#: ../../enterprise/include/class/Aws.cloud.php:566 msgid "Extra options" msgstr "Opciones adicionales" @@ -23274,7 +23129,7 @@ msgstr "" "algunos archivos adjuntos." #: ../../enterprise/include/functions_cron.php:1776 -#: ../../include/functions_reporting.php:15389 +#: ../../include/functions_reporting.php:15644 msgid "Greetings" msgstr "Saludos" @@ -23285,22 +23140,22 @@ msgstr "Hay un archivo CSV de los logs adjunto a este correo electrónico" #: ../../enterprise/include/functions_cron.php:1780 #: ../../mobile/include/functions_web.php:84 #: ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15395 +#: ../../include/functions_reporting.php:15650 msgid "Generated at" msgstr "Generado el" #: ../../enterprise/include/functions_cron.php:1782 -#: ../../include/functions_reporting.php:15397 +#: ../../include/functions_reporting.php:15652 msgid "Thanks for your time." msgstr "Gracias por tu tiempo." #: ../../enterprise/include/functions_cron.php:1784 -#: ../../include/functions_reporting.php:15399 +#: ../../include/functions_reporting.php:15654 msgid "Best regards, Pandora FMS" msgstr "Saludos cordiales, Pandora FMS" #: ../../enterprise/include/functions_cron.php:1786 -#: ../../include/functions_reporting.php:15401 +#: ../../include/functions_reporting.php:15656 msgid "" "This is an automatically generated email from Pandora FMS, please do not reply." msgstr "" @@ -23322,7 +23177,7 @@ msgid "Error while executing task" msgstr "Error al ejecutar tarea " #: ../../enterprise/include/functions_tasklist.php:56 -#: ../../include/class/ConsoleSupervisor.php:2383 +#: ../../include/class/ConsoleSupervisor.php:2378 msgid "DiscoveryConsoleTasks is not running properly" msgstr "DiscoveryConsoleTasks no funciona adecuadamente" @@ -23334,12 +23189,12 @@ msgstr "" "programación en función del tiempo" #: ../../enterprise/include/functions_tasklist.php:59 -#: ../../include/class/ConsoleSupervisor.php:2386 +#: ../../include/class/ConsoleSupervisor.php:2381 msgid "Please, add the following line to your crontab file:" msgstr "Añada la siguiente línea a su archivo crontab:" #: ../../enterprise/include/functions_tasklist.php:74 -#: ../../include/class/ConsoleSupervisor.php:2399 +#: ../../include/class/ConsoleSupervisor.php:2394 msgid "Last execution" msgstr "Última ejecución" @@ -23405,7 +23260,7 @@ msgstr "Informe" #: ../../enterprise/include/functions_tasklist.php:463 #: ../../enterprise/include/class/ManageBackups.class.php:166 #: ../../include/functions_cron.php:789 ../../include/functions_cron.php:830 -#: ../../include/class/Diagnostics.class.php:2178 +#: ../../include/class/Diagnostics.class.php:2183 msgid "Path" msgstr "Ruta" @@ -23414,9 +23269,9 @@ msgid "Task disabled" msgstr "Tarea deshabilitada" #: ../../enterprise/include/functions_tasklist.php:600 -#: ../../enterprise/include/functions_ipam.php:2082 -#: ../../enterprise/include/functions_ipam.php:2083 -#: ../../enterprise/include/functions_ipam.php:2084 +#: ../../enterprise/include/functions_ipam.php:2090 +#: ../../enterprise/include/functions_ipam.php:2091 +#: ../../enterprise/include/functions_ipam.php:2092 #: ../../enterprise/tools/ipam/ipam_list.php:701 #: ../../enterprise/tools/ipam/ipam_ajax.php:502 ../../godmode/db/db_main.php:189 #: ../../godmode/snmpconsole/snmp_alert.php:1330 @@ -23516,7 +23371,7 @@ msgstr "" #: ../../enterprise/include/ajax/ipam.ajax.php:385 #: ../../enterprise/include/functions_ipam.php:1369 -#: ../../enterprise/include/functions_ipam.php:1989 +#: ../../enterprise/include/functions_ipam.php:1997 #: ../../enterprise/tools/ipam/ipam_list.php:97 #: ../../enterprise/tools/ipam/ipam_list.php:612 #: ../../enterprise/tools/ipam/ipam_editor.php:191 @@ -23611,7 +23466,7 @@ msgstr "Superred" #: ../../enterprise/include/ajax/ipam.ajax.php:614 #: ../../enterprise/include/ajax/ipam.ajax.php:644 -#: ../../enterprise/include/functions_ipam.php:1986 +#: ../../enterprise/include/functions_ipam.php:1994 #: ../../enterprise/tools/ipam/ipam_list.php:594 #: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 #: ../../enterprise/tools/ipam/ipam_calculator.php:185 @@ -23620,7 +23475,7 @@ msgstr "Superred" #: ../../enterprise/tools/ipam/ipam_editor.php:122 #: ../../godmode/wizards/HostDevices.class.php:918 #: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../include/functions_ui.php:870 ../../operation/menu.php:80 +#: ../../include/functions_ui.php:870 ../../operation/menu.php:84 msgid "Network" msgstr "Red" @@ -23669,7 +23524,7 @@ msgid "Unknown option" msgstr "Opción desconocida" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256 -#: ../../include/functions_treeview.php:781 +#: ../../include/functions_treeview.php:776 #: ../../operation/agentes/agent_fields.php:44 #: ../../operation/agentes/estado_generalagente.php:544 msgid "Custom field" @@ -23690,6 +23545,12 @@ msgstr "Salida del script (> 0)" msgid "Alert action" msgstr "Acción de alerta" +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 +#: ../../godmode/modules/manage_inventory_modules_form.php:148 +msgid "Script path" +msgstr "Ruta del script" + #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:459 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:566 msgid "Script argument" @@ -23750,7 +23611,7 @@ msgstr "Hora global: " #: ../../enterprise/include/functions_reporting_csv.php:2760 #: ../../enterprise/include/functions_reporting_csv.php:2837 #: ../../godmode/setup/setup_integria.php:333 -#: ../../godmode/setup/setup_integria.php:454 +#: ../../godmode/setup/setup_integria.php:454 ../../include/graphs/fgraph.php:879 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 #: ../../include/lib/Dashboard/Widget.php:557 #: ../../operation/agentes/estado_generalagente.php:665 @@ -23790,7 +23651,7 @@ msgstr "Documentos" #: ../../enterprise/include/process_reset_pass.php:162 #: ../../enterprise/include/reset_pass.php:146 #: ../../enterprise/include/reset_pass.php:149 -#: ../../include/functions_config.php:2510 +#: ../../include/functions_config.php:2486 msgid "ONE TOOL TO MONITOR THEM ALL" msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS" @@ -23799,41 +23660,6 @@ msgstr "UNA HERRAMIENTA PARA GOBERNARLOS A TODOS" msgid "Lines" msgstr "Líneas" -#: ../../enterprise/include/functions_inventory.php:115 -#: ../../enterprise/include/functions_inventory.php:868 -msgid "No changes found" -msgstr "No se han encontrado cambios" - -#: ../../enterprise/include/functions_inventory.php:214 -msgid "Get CSV file" -msgstr "Obtener archivo CSV" - -#: ../../enterprise/include/functions_inventory.php:301 -#: ../../enterprise/operation/agentes/tag_view.php:578 -#: ../../enterprise/operation/services/services.treeview_services.php:255 -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 -#: ../../godmode/groups/group_list.php:1034 -#: ../../include/class/Heatmap.class.php:820 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 -#: ../../operation/tree.php:415 ../../operation/tree.php:446 -#: ../../operation/network/network_report.php:315 -msgid "No data found" -msgstr "No se encontraron datos" - -#: ../../enterprise/include/functions_inventory.php:885 -#: ../../enterprise/include/functions_inventory.php:948 -#: ../../include/functions_reporting_html.php:1831 -msgid "Added" -msgstr "Añadido" - -#: ../../enterprise/include/functions_inventory.php:891 -#: ../../enterprise/include/functions_inventory.php:956 -#: ../../include/functions_reporting_html.php:1842 -#: ../../include/functions_filemanager.php:342 -#: ../../include/functions_filemanager.php:359 -msgid "Deleted" -msgstr "Eliminado(s)" - #: ../../enterprise/include/auth/saml.php:119 #, php-format msgid "Pandora FMS SAML authentication error: %s" @@ -23843,8 +23669,8 @@ msgstr "Error de autenticación Pandora FMS SAML: %s" msgid "Force log out" msgstr "Forzar desconexión" -#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:388 -#: ../../include/auth/mysql.php:418 ../../include/auth/mysql.php:453 +#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:358 +#: ../../include/auth/mysql.php:388 ../../include/auth/mysql.php:423 msgid "Please, login into metaconsole first" msgstr "Por favor, inicie sesión en la metaconsola primero" @@ -23876,28 +23702,39 @@ msgid "File of collection is bigger than the limit (%s bytes)" msgstr "El archivo de colección es más grande que el límite (%s bytes)" #: ../../enterprise/include/functions_ui.php:79 +#: ../../include/functions_ui.php:6895 msgid "Select inventory module" msgstr "Seleccionar módulo de inventario" +#: ../../enterprise/include/functions_ui.php:92 +#: ../../godmode/agentes/inventory_manager.php:223 +#: ../../include/functions_ui.php:6908 +msgid "Target" +msgstr "Destino" + #: ../../enterprise/include/functions_ui.php:96 +#: ../../include/functions_ui.php:6912 msgid "Use custom fields" msgstr "Usar campos personalizados" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "Field name" msgstr "Nombre del campo" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "It's a password" msgstr "Es una contraseña" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "Add field" msgstr "Añadir campo" #: ../../enterprise/include/functions_reporting_pdf.php:72 -#: ../../include/class/Diagnostics.class.php:2133 -#: ../../include/class/Diagnostics.class.php:2251 +#: ../../include/class/Diagnostics.class.php:2138 +#: ../../include/class/Diagnostics.class.php:2256 #, php-format msgid "Automated %s report for user defined report" msgstr "Informe de %s automatizado para informe definido por el usuario" @@ -23915,11 +23752,11 @@ msgstr "Informe de %s automatizado para informe definido por el usuario" #: ../../include/functions_reporting_html.php:3835 #: ../../include/functions_reporting_html.php:3838 #: ../../include/functions_reporting_html.php:3845 -#: ../../include/functions_reporting.php:7015 -#: ../../include/functions_reporting.php:7038 -#: ../../include/functions_reporting.php:7053 -#: ../../include/functions_reporting.php:7069 -#: ../../include/functions_reporting.php:7084 +#: ../../include/functions_reporting.php:7230 +#: ../../include/functions_reporting.php:7253 +#: ../../include/functions_reporting.php:7268 +#: ../../include/functions_reporting.php:7284 +#: ../../include/functions_reporting.php:7299 msgid "Maximun" msgstr "Máximo" @@ -23943,91 +23780,91 @@ msgstr "Mínimo" #: ../../include/functions_reporting_html.php:3826 #: ../../include/functions_reporting_html.php:3837 #: ../../include/functions_reporting_html.php:3842 -#: ../../include/functions_reporting.php:7033 +#: ../../include/functions_reporting.php:7248 msgid "Lapse" msgstr "Tiempo transcurrido" -#: ../../enterprise/include/functions_reporting_pdf.php:971 +#: ../../enterprise/include/functions_reporting_pdf.php:972 #: ../../include/functions_reporting_html.php:2167 #: ../../include/lib/Dashboard/Widgets/agent_module.php:520 #, php-format msgid "%s in %s : NORMAL" msgstr "%s en %s : NORMAL" -#: ../../enterprise/include/functions_reporting_pdf.php:988 +#: ../../enterprise/include/functions_reporting_pdf.php:989 #: ../../include/functions_reporting_html.php:2079 #: ../../include/lib/Dashboard/Widgets/agent_module.php:536 #, php-format msgid "%s in %s : CRITICAL" msgstr "%s en %s : CRÍTICO" -#: ../../enterprise/include/functions_reporting_pdf.php:1005 +#: ../../enterprise/include/functions_reporting_pdf.php:1006 #: ../../include/functions_reporting_html.php:2096 #: ../../include/lib/Dashboard/Widgets/agent_module.php:552 #, php-format msgid "%s in %s : WARNING" msgstr "%s en %s : ADVERTENCIA" -#: ../../enterprise/include/functions_reporting_pdf.php:1022 +#: ../../enterprise/include/functions_reporting_pdf.php:1023 #: ../../include/functions_reporting_html.php:2113 #: ../../include/lib/Dashboard/Widgets/agent_module.php:568 #, php-format msgid "%s in %s : UNKNOWN" msgstr "%s en %s : DESCONOCIDO" -#: ../../enterprise/include/functions_reporting_pdf.php:1039 +#: ../../enterprise/include/functions_reporting_pdf.php:1040 #: ../../include/functions_reporting_html.php:2149 #: ../../include/lib/Dashboard/Widgets/agent_module.php:584 #, php-format msgid "%s in %s : Not initialize" msgstr "%s en %s : No iniciado" -#: ../../enterprise/include/functions_reporting_pdf.php:1056 +#: ../../enterprise/include/functions_reporting_pdf.php:1057 #: ../../include/functions_reporting_html.php:2132 #: ../../include/lib/Dashboard/Widgets/agent_module.php:601 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "%s en %s : ALERTA DISPARADA" -#: ../../enterprise/include/functions_reporting_pdf.php:1810 +#: ../../enterprise/include/functions_reporting_pdf.php:1811 #: ../../enterprise/include/functions_reporting_csv.php:2270 #: ../../enterprise/include/functions_reporting_csv.php:2274 -#: ../../include/functions_reporting_html.php:138 +#: ../../include/functions_reporting_html.php:139 msgid "Generated" msgstr "Generado" -#: ../../enterprise/include/functions_reporting_pdf.php:1814 -#: ../../include/functions_reporting_html.php:141 +#: ../../enterprise/include/functions_reporting_pdf.php:1815 +#: ../../include/functions_reporting_html.php:142 msgid "Report date" msgstr "Fecha del informe" -#: ../../enterprise/include/functions_reporting_pdf.php:1833 -#: ../../include/functions_reporting_html.php:150 +#: ../../enterprise/include/functions_reporting_pdf.php:1834 +#: ../../include/functions_reporting_html.php:151 #: ../../operation/reporting/reporting_viewer.php:307 msgid "Items period before" msgstr "Período de elementos antes de" -#: ../../enterprise/include/functions_reporting_pdf.php:1863 +#: ../../enterprise/include/functions_reporting_pdf.php:1864 msgid "Contents" msgstr "Contenido" -#: ../../enterprise/include/functions_reporting_pdf.php:2009 +#: ../../enterprise/include/functions_reporting_pdf.php:2010 #: ../../enterprise/include/functions_reporting_csv.php:723 #: ../../enterprise/include/functions_reporting_csv.php:1002 #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../godmode/agentes/planned_downtime.list.php:339 #: ../../include/functions_reporting_html.php:3930 #: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 -#: ../../include/rest-api/index.php:373 +#: ../../include/rest-api/index.php:374 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520 #: ../../operation/agentes/gis_view.php:221 msgid "To" msgstr "Para" -#: ../../enterprise/include/functions_reporting_pdf.php:2013 -#: ../../include/functions_reporting_html.php:90 -#: ../../include/functions_reporting_html.php:5710 +#: ../../enterprise/include/functions_reporting_pdf.php:2014 +#: ../../include/functions_reporting_html.php:91 +#: ../../include/functions_reporting_html.php:5729 #: ../../include/functions_treeview.php:319 #: ../../operation/agentes/interface_view.functions.php:539 msgid "Last data" @@ -24216,8 +24053,8 @@ msgstr "Informe de los eventos de un módulo" #: ../../enterprise/include/functions_reporting_csv.php:480 #: ../../enterprise/include/functions_reporting.php:1229 #: ../../include/functions_reports.php:830 -#: ../../include/functions_reporting.php:8489 -#: ../../include/functions_reporting.php:8881 +#: ../../include/functions_reporting.php:8707 +#: ../../include/functions_reporting.php:9099 msgid "Availability" msgstr "Disponibilidad" @@ -24227,7 +24064,7 @@ msgid "% OK" msgstr "% OK" #: ../../enterprise/include/functions_reporting_csv.php:537 -#: ../../include/functions_reporting_html.php:617 +#: ../../include/functions_reporting_html.php:618 msgid "Checks Failed" msgstr "Comprobaciones fallidas" @@ -24285,7 +24122,7 @@ msgid "Agent secondary groups" msgstr "Grupos secundarios de agentes" #: ../../enterprise/include/functions_reporting_csv.php:790 -#: ../../include/functions_reporting.php:2807 +#: ../../include/functions_reporting.php:2925 msgid "Inventory Changes" msgstr "Cambios de inventario" @@ -24295,7 +24132,7 @@ msgid "Prediction date" msgstr "Fecha de predicción" #: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../include/functions_reporting.php:6481 +#: ../../include/functions_reporting.php:6696 msgid "Projection Graph" msgstr "Gráfico de proyección" @@ -24308,25 +24145,25 @@ msgid "Last Value " msgstr "Último valor " #: ../../enterprise/include/functions_reporting_csv.php:982 -#: ../../include/functions_reporting.php:1543 +#: ../../include/functions_reporting.php:1544 #: ../../operation/snmpconsole/snmp_statistics.php:169 -#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_statistics.php:242 #, php-format msgid "Top %d" msgstr "Primeros %d" #: ../../enterprise/include/functions_reporting_csv.php:1019 -#: ../../include/functions_reporting.php:3887 +#: ../../include/functions_reporting.php:4082 msgid "Group Report" msgstr "Informe del grupo" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:263 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1042 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1047 #: ../../mobile/operation/groups.php:147 -#: ../../include/functions_reporting_html.php:5790 +#: ../../include/functions_reporting_html.php:5809 #: ../../include/class/Diagnostics.class.php:550 -#: ../../include/functions_reporting.php:11832 +#: ../../include/functions_reporting.php:12118 #: ../../include/lib/Dashboard/Widgets/tree_view.php:651 #: ../../operation/tree.php:454 msgid "Total agents" @@ -24338,7 +24175,7 @@ msgstr "Agentes desconocidos" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:264 -#: ../../godmode/groups/group_list.php:1043 +#: ../../godmode/groups/group_list.php:1048 #: ../../godmode/module_library/module_library_view.php:159 #: ../../include/class/Diagnostics.class.php:554 #: ../../include/lib/Dashboard/Widgets/tree_view.php:652 @@ -24347,7 +24184,7 @@ msgid "Total modules" msgstr "Módulos totales" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../include/functions_reporting.php:11675 +#: ../../include/functions_reporting.php:11961 msgid "Defined alerts" msgstr "Alertas definidas" @@ -24355,12 +24192,12 @@ msgstr "Alertas definidas" #: ../../enterprise/operation/services/services.treeview_services.php:268 #: ../../enterprise/operation/services/services.treeview_services.php:269 #: ../../enterprise/operation/services/services.treeview_services.php:270 -#: ../../godmode/groups/group_list.php:1047 -#: ../../godmode/groups/group_list.php:1048 -#: ../../godmode/groups/group_list.php:1049 -#: ../../include/functions_graph.php:2640 -#: ../../include/functions_reporting.php:11693 -#: ../../include/functions_reporting.php:11716 +#: ../../godmode/groups/group_list.php:1052 +#: ../../godmode/groups/group_list.php:1053 +#: ../../godmode/groups/group_list.php:1054 +#: ../../include/functions_graph.php:2609 +#: ../../include/functions_reporting.php:11979 +#: ../../include/functions_reporting.php:12002 #: ../../include/lib/Dashboard/Widgets/tree_view.php:656 #: ../../include/lib/Dashboard/Widgets/tree_view.php:657 #: ../../include/lib/Dashboard/Widgets/tree_view.php:658 @@ -24402,8 +24239,8 @@ msgstr "Gráfico circular de SQL" #: ../../enterprise/include/functions_reporting_csv.php:1238 #: ../../enterprise/include/functions_reporting_csv.php:1240 #: ../../include/functions_reports.php:754 -#: ../../include/functions_reporting.php:6787 -#: ../../include/functions_reporting.php:10159 +#: ../../include/functions_reporting.php:7002 +#: ../../include/functions_reporting.php:10377 msgid "Summatory" msgstr "Sumatorio" @@ -24415,7 +24252,7 @@ msgid "Minimum Value" msgstr "Valor mínimo" #: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../include/functions_reporting.php:10163 +#: ../../include/functions_reporting.php:10381 msgid "Minimum" msgstr "Mínimo" @@ -24432,7 +24269,7 @@ msgstr "Valor máximo" #: ../../enterprise/include/functions_reporting_csv.php:1390 #: ../../include/functions_reporting_html.php:3933 #: ../../include/functions_reports.php:762 -#: ../../include/functions_reporting.php:9619 +#: ../../include/functions_reporting.php:9837 msgid "Increment" msgstr "Incremento" @@ -24469,7 +24306,7 @@ msgstr "Incremento neutral: " #: ../../enterprise/include/functions_reporting_csv.php:1431 #: ../../enterprise/include/functions_reporting_csv.php:1437 #: ../../enterprise/include/functions_reporting_csv.php:1439 -#: ../../include/functions_reporting.php:6792 +#: ../../include/functions_reporting.php:7007 msgid "AVG. Value" msgstr "Valor medio" @@ -24480,7 +24317,7 @@ msgstr "Media" #: ../../enterprise/include/functions_reporting_csv.php:1465 #: ../../enterprise/include/functions_reporting_csv.php:1483 #: ../../enterprise/include/functions_reporting_csv.php:1485 -#: ../../include/functions_reporting.php:6123 +#: ../../include/functions_reporting.php:6338 msgid "Monitor Report" msgstr "Informe de monitores" @@ -24517,7 +24354,7 @@ msgstr "SLA mínimo" #: ../../enterprise/include/functions_reporting.php:2896 #: ../../enterprise/include/functions_reporting.php:3883 #: ../../enterprise/include/functions_reporting.php:6133 -#: ../../include/functions_reporting_html.php:549 +#: ../../include/functions_reporting_html.php:550 msgid "SLA Limit" msgstr "Límite del SLA" @@ -24596,9 +24433,9 @@ msgstr "Estado " #: ../../enterprise/include/functions_reporting.php:3909 #: ../../enterprise/include/functions_reporting.php:3968 #: ../../enterprise/include/functions_reporting.php:6157 -#: ../../include/functions_reporting_html.php:666 -#: ../../include/functions_config.php:1306 -#: ../../include/functions_config.php:3297 +#: ../../include/functions_reporting_html.php:667 +#: ../../include/functions_config.php:1287 +#: ../../include/functions_config.php:3273 msgid "Fail" msgstr "Fallo" @@ -24890,18 +24727,18 @@ msgstr "ID de agente" #: ../../enterprise/include/functions_reporting_csv.php:1985 #: ../../enterprise/include/functions_reporting.php:2319 -#: ../../enterprise/include/functions_ipam.php:2046 +#: ../../enterprise/include/functions_ipam.php:2054 #: ../../enterprise/tools/ipam/ipam_network.php:404 #: ../../enterprise/tools/ipam/ipam_network.php:673 #: ../../enterprise/tools/ipam/ipam_ajax.php:293 #: ../../enterprise/tools/ipam/ipam_ajax.php:479 #: ../../enterprise/tools/ipam/ipam_massive.php:83 -#: ../../godmode/users/configure_user.php:1202 +#: ../../godmode/users/configure_user.php:1261 #: ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:5909 -#: ../../include/functions.php:3073 ../../include/ajax/events.php:1683 +#: ../../include/functions_reporting_html.php:5928 +#: ../../include/functions.php:3099 ../../include/ajax/events.php:1690 #: ../../include/class/AuditLog.class.php:111 -#: ../../operation/users/user_edit.php:607 +#: ../../operation/users/user_edit.php:681 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 #: ../../general/logon_ok.php:253 @@ -24910,7 +24747,7 @@ msgstr "Comentarios" #: ../../enterprise/include/functions_reporting_csv.php:1986 #: ../../enterprise/include/functions_reporting.php:2320 -#: ../../enterprise/include/functions_ipam.php:2044 +#: ../../enterprise/include/functions_ipam.php:2052 #: ../../enterprise/tools/ipam/ipam_network.php:415 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1393 msgid "Alive" @@ -24930,13 +24767,13 @@ msgstr "Límite de SLA" #: ../../enterprise/include/functions_reporting_csv.php:2030 #: ../../enterprise/include/functions_reporting.php:4968 -#: ../../include/functions_reporting_html.php:583 +#: ../../include/functions_reporting_html.php:584 msgid "Time Total" msgstr "Tiempo total" #: ../../enterprise/include/functions_reporting_csv.php:2031 #: ../../enterprise/include/functions_reporting.php:4971 -#: ../../include/functions_reporting_html.php:585 +#: ../../include/functions_reporting_html.php:586 #: ../../include/functions_reporting_html.php:4072 msgid "Time OK" msgstr "Tiempo OK" @@ -24947,14 +24784,14 @@ msgstr "Tiempo de error" #: ../../enterprise/include/functions_reporting_csv.php:2033 #: ../../enterprise/include/functions_reporting.php:4972 -#: ../../include/functions_reporting_html.php:586 +#: ../../include/functions_reporting_html.php:587 #: ../../include/functions_reporting_html.php:4084 msgid "Time Unknown" msgstr "Tiempo desconocido" #: ../../enterprise/include/functions_reporting_csv.php:2034 #: ../../enterprise/include/functions_reporting.php:4973 -#: ../../include/functions_reporting_html.php:587 +#: ../../include/functions_reporting_html.php:588 msgid "Time Not Init" msgstr "Tiempo no iniciado" @@ -24965,13 +24802,13 @@ msgstr "Tiempo de parada planificada" #: ../../enterprise/include/functions_reporting_csv.php:2036 #: ../../enterprise/include/functions_reporting.php:5063 -#: ../../include/functions_reporting_html.php:616 +#: ../../include/functions_reporting_html.php:617 msgid "Checks Total" msgstr "Comprobaciones totales" #: ../../enterprise/include/functions_reporting_csv.php:2037 #: ../../enterprise/include/functions_reporting.php:5066 -#: ../../include/functions_reporting_html.php:618 +#: ../../include/functions_reporting_html.php:619 #: ../../include/functions_reporting_html.php:4166 msgid "Checks OK" msgstr "Comprobaciones OK" @@ -24982,7 +24819,7 @@ msgstr "Comprobaciones en error" #: ../../enterprise/include/functions_reporting_csv.php:2039 #: ../../enterprise/include/functions_reporting.php:5067 -#: ../../include/functions_reporting_html.php:619 +#: ../../include/functions_reporting_html.php:620 msgid "Checks Unknown" msgstr "Comprobaciones desconocidas" @@ -25128,22 +24965,22 @@ msgid "Simple Baseline Graph" msgstr "Gráfica simple base" #: ../../enterprise/include/functions_reporting_csv.php:2348 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:557 msgid "Custom Graph" msgstr "Gráfica personalizada" #: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:5831 +#: ../../include/functions_reporting.php:6046 msgid "Alert Report Module" msgstr "Informe de alertas de módulo" #: ../../enterprise/include/functions_reporting_csv.php:2495 -#: ../../include/functions_reporting.php:5664 +#: ../../include/functions_reporting.php:5879 msgid "Alert Report Agent" msgstr "Informe de alertas de agente" #: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../include/functions_reporting.php:5484 +#: ../../include/functions_reporting.php:5699 msgid "Alert Report Group" msgstr "Informe de alertas de grupo" @@ -25162,34 +24999,34 @@ msgstr "Log de informes de eventos" #: ../../enterprise/include/functions_reporting_csv.php:2581 #: ../../include/functions_reports.php:939 #: ../../include/functions_reports.php:940 -#: ../../include/functions_reporting.php:4741 +#: ../../include/functions_reporting.php:5004 msgid "Permissions report" msgstr "Informe de permisos" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 #: ../../godmode/users/user_list.php:539 -#: ../../godmode/users/configure_user.php:1028 -#: ../../godmode/users/configure_user.php:1044 -#: ../../include/functions_reporting_html.php:5199 -#: ../../include/functions_reporting_html.php:6367 -#: ../../include/functions_reporting_html.php:6390 +#: ../../godmode/users/configure_user.php:1045 +#: ../../godmode/users/configure_user.php:1103 +#: ../../include/functions_reporting_html.php:5218 +#: ../../include/functions_reporting_html.php:6386 +#: ../../include/functions_reporting_html.php:6409 #: ../../include/class/SnmpConsole.class.php:341 -#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:261 +#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:268 msgid "User ID" msgstr "ID usuario" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6368 -#: ../../include/functions_reporting_html.php:6391 +#: ../../include/functions_reporting_html.php:6387 +#: ../../include/functions_reporting_html.php:6410 msgid "Full name" msgstr "Nombre completo" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6369 -#: ../../include/functions_reporting_html.php:6392 +#: ../../include/functions_reporting_html.php:6388 +#: ../../include/functions_reporting_html.php:6411 msgid "Permissions" msgstr "Permisos" @@ -25248,14 +25085,14 @@ msgstr "Última vez" #: ../../enterprise/include/functions_reporting_csv.php:2836 #: ../../include/functions_reports.php:926 -#: ../../include/functions_reporting.php:6278 +#: ../../include/functions_reporting.php:6493 msgid "Netflow top-N connections" msgstr "Conexiones Netflow top-N" #: ../../enterprise/include/functions_reporting_csv.php:2858 #: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:5908 -#: ../../include/functions.php:3073 ../../include/functions_netflow.php:347 +#: ../../include/functions_reporting_html.php:5927 +#: ../../include/functions.php:3099 ../../include/functions_netflow.php:347 #: ../../include/class/AuditLog.class.php:110 #: ../../operation/snmpconsole/snmp_statistics.php:182 #: ../../general/logon_ok.php:252 @@ -25268,8 +25105,7 @@ msgid "Destination IP" msgstr "IP de destino" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1009 -#: ../../include/functions_config.php:3209 +#: ../../include/functions_config.php:990 ../../include/functions_config.php:3185 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:206 #: ../../operation/network/network_report.php:238 @@ -25387,7 +25223,7 @@ msgid "Microsoft Compute" msgstr "Microsoft Compute" #: ../../enterprise/include/class/Azure.cloud.php:355 -#: ../../enterprise/include/class/Aws.cloud.php:1494 +#: ../../enterprise/include/class/Aws.cloud.php:1493 #: ../../enterprise/include/class/Google.cloud.php:349 #, php-format msgid "%s not found or not executable" @@ -25410,7 +25246,7 @@ msgstr "Acceso no autorizado" #: ../../enterprise/include/class/DB2.app.php:437 #: ../../enterprise/include/class/Aws.S3.php:401 #: ../../enterprise/include/class/SAP.app.php:469 -#: ../../enterprise/include/class/Aws.cloud.php:1202 +#: ../../enterprise/include/class/Aws.cloud.php:1201 #: ../../enterprise/include/class/MySQL.app.php:442 #: ../../enterprise/include/class/Google.cloud.php:759 #: ../../enterprise/include/class/Oracle.app.php:444 @@ -25424,13 +25260,13 @@ msgstr "Nombre de la tarea" #: ../../enterprise/include/class/Azure.cloud.php:797 #: ../../enterprise/include/class/VMware.app.php:614 #: ../../enterprise/include/class/Aws.S3.php:559 -#: ../../enterprise/include/class/Aws.cloud.php:541 +#: ../../enterprise/include/class/Aws.cloud.php:540 msgid "Tentacle options" msgstr "Opciones de Tentacle" #: ../../enterprise/include/class/Azure.cloud.php:872 -#: ../../enterprise/include/class/Aws.cloud.php:743 -#: ../../enterprise/include/class/Aws.cloud.php:1275 +#: ../../enterprise/include/class/Aws.cloud.php:742 +#: ../../enterprise/include/class/Aws.cloud.php:1274 #: ../../enterprise/include/class/Google.cloud.php:822 msgid "No instances found." msgstr "No se han encontrado instancias." @@ -25441,29 +25277,29 @@ msgid "Select target virtual machines" msgstr "Seleccionar máquinas virtuales de destino" #: ../../enterprise/include/class/Azure.cloud.php:928 -#: ../../enterprise/include/class/Aws.cloud.php:672 +#: ../../enterprise/include/class/Aws.cloud.php:671 msgid "Scan and general monitoring." msgstr "Escaneo y monitorización general." #: ../../enterprise/include/class/Azure.cloud.php:941 -#: ../../enterprise/include/class/Aws.cloud.php:689 +#: ../../enterprise/include/class/Aws.cloud.php:688 msgid "Cpu performance summary" msgstr "Resumen del rendimiento de CPU" #: ../../enterprise/include/class/Azure.cloud.php:949 -#: ../../enterprise/include/class/Aws.cloud.php:699 +#: ../../enterprise/include/class/Aws.cloud.php:698 #: ../../enterprise/include/class/Google.cloud.php:911 msgid "IOPS performance summary" msgstr "Resumen del rendimiento de IOPS" #: ../../enterprise/include/class/Azure.cloud.php:957 -#: ../../enterprise/include/class/Aws.cloud.php:709 +#: ../../enterprise/include/class/Aws.cloud.php:708 #: ../../enterprise/include/class/Google.cloud.php:919 msgid "Disk performance summary" msgstr "Resumen del rendimiento de disco" #: ../../enterprise/include/class/Azure.cloud.php:965 -#: ../../enterprise/include/class/Aws.cloud.php:719 +#: ../../enterprise/include/class/Aws.cloud.php:718 #: ../../enterprise/include/class/Google.cloud.php:927 msgid "Network performance summary" msgstr "Resumen del rendimiento de la red" @@ -25473,12 +25309,12 @@ msgstr "Resumen del rendimiento de la red" #: ../../enterprise/include/class/DB2.app.php:869 #: ../../enterprise/include/class/Aws.S3.php:659 #: ../../enterprise/include/class/SAP.app.php:925 -#: ../../enterprise/include/class/Aws.cloud.php:1592 +#: ../../enterprise/include/class/Aws.cloud.php:1591 #: ../../enterprise/include/class/MySQL.app.php:945 #: ../../enterprise/include/class/Google.cloud.php:952 #: ../../enterprise/include/class/Oracle.app.php:978 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:822 -#: ../../godmode/wizards/HostDevices.class.php:1614 +#: ../../godmode/wizards/HostDevices.class.php:1613 #: ../../include/class/CustomNetScan.class.php:759 msgid "Task configured." msgstr "Tarea configurada." @@ -25491,7 +25327,7 @@ msgstr "Tarea configurada." #: ../../enterprise/include/class/Google.cloud.php:956 #: ../../enterprise/include/class/Oracle.app.php:982 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:826 -#: ../../godmode/wizards/HostDevices.class.php:1618 +#: ../../godmode/wizards/HostDevices.class.php:1617 #: ../../include/class/CustomNetScan.class.php:763 msgid "Wizard failed. Cannot configure task." msgstr "Error del asistente. No puede configurar la tarea." @@ -25506,7 +25342,7 @@ msgstr "Ya se ha definido la configuración VMware. Edítela o cree una nueva." #: ../../enterprise/include/class/DB2.app.php:197 #: ../../enterprise/include/class/Aws.S3.php:183 #: ../../enterprise/include/class/SAP.app.php:185 -#: ../../enterprise/include/class/Aws.cloud.php:918 +#: ../../enterprise/include/class/Aws.cloud.php:917 #: ../../enterprise/include/class/MySQL.app.php:206 #: ../../enterprise/include/class/Oracle.app.php:204 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 @@ -25519,7 +25355,7 @@ msgstr "Añada un nombre a la tarea" #: ../../enterprise/include/class/DB2.app.php:202 #: ../../enterprise/include/class/Aws.S3.php:188 #: ../../enterprise/include/class/SAP.app.php:190 -#: ../../enterprise/include/class/Aws.cloud.php:923 +#: ../../enterprise/include/class/Aws.cloud.php:922 #: ../../enterprise/include/class/MySQL.app.php:211 #: ../../enterprise/include/class/Oracle.app.php:209 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 @@ -25536,7 +25372,7 @@ msgstr "Añada una IP V-Center o FQDN válida." #: ../../enterprise/include/class/DB2.app.php:212 #: ../../enterprise/include/class/Aws.S3.php:193 #: ../../enterprise/include/class/SAP.app.php:200 -#: ../../enterprise/include/class/Aws.cloud.php:928 +#: ../../enterprise/include/class/Aws.cloud.php:927 #: ../../enterprise/include/class/MySQL.app.php:226 #: ../../enterprise/include/class/Oracle.app.php:219 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 @@ -25585,7 +25421,7 @@ msgstr "Actualizar y continuar" #: ../../enterprise/include/class/VMware.app.php:547 #: ../../enterprise/include/class/Aws.S3.php:554 -#: ../../enterprise/include/class/Aws.cloud.php:501 +#: ../../enterprise/include/class/Aws.cloud.php:500 msgid "" "This kind of task uses multipurpose plugins in order to generate monitoring " "data, configure your desired tentacle target." @@ -25597,7 +25433,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:449 #: ../../enterprise/include/class/Aws.S3.php:413 #: ../../enterprise/include/class/SAP.app.php:482 -#: ../../enterprise/include/class/Aws.cloud.php:1214 +#: ../../enterprise/include/class/Aws.cloud.php:1213 #: ../../enterprise/include/class/MySQL.app.php:454 #: ../../enterprise/include/class/Oracle.app.php:456 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 @@ -25618,7 +25454,7 @@ msgstr "Usuario del datacenter" #: ../../enterprise/include/class/DB2.app.php:537 #: ../../enterprise/include/class/Aws.S3.php:507 #: ../../enterprise/include/class/SAP.app.php:514 -#: ../../enterprise/include/class/Aws.cloud.php:1320 +#: ../../enterprise/include/class/Aws.cloud.php:1319 #: ../../enterprise/include/class/MySQL.app.php:559 #: ../../enterprise/include/class/Oracle.app.php:544 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 @@ -25632,7 +25468,7 @@ msgstr "Intervalo manual significa que será ejecutado solo bajo demanda." #: ../../enterprise/include/class/DB2.app.php:544 #: ../../enterprise/include/class/Aws.S3.php:514 #: ../../enterprise/include/class/SAP.app.php:521 -#: ../../enterprise/include/class/Aws.cloud.php:1327 +#: ../../enterprise/include/class/Aws.cloud.php:1326 #: ../../enterprise/include/class/MySQL.app.php:566 #: ../../enterprise/include/class/Oracle.app.php:551 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 @@ -25648,7 +25484,7 @@ msgstr "Definido" #: ../../enterprise/include/class/SAPView.class.php:259 #: ../../enterprise/include/class/SAPView.class.php:296 #: ../../enterprise/include/class/SAP.app.php:540 -#: ../../enterprise/include/class/Aws.cloud.php:1344 +#: ../../enterprise/include/class/Aws.cloud.php:1343 #: ../../enterprise/include/class/MySQL.app.php:583 #: ../../enterprise/include/class/Oracle.app.php:568 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 @@ -25679,7 +25515,7 @@ msgstr "Cifrar contraseñas" #: ../../enterprise/include/class/DB2.app.php:470 #: ../../enterprise/include/class/Aws.S3.php:435 #: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Aws.cloud.php:1235 +#: ../../enterprise/include/class/Aws.cloud.php:1234 #: ../../enterprise/include/class/MySQL.app.php:475 #: ../../enterprise/include/class/Oracle.app.php:477 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 @@ -25956,8 +25792,8 @@ msgstr "Escaneo de red programado. Puede ver el progreso en %s." #: ../../enterprise/include/class/DeploymentCenter.class.php:1268 #: ../../enterprise/include/class/SAP.app.php:604 #: ../../enterprise/include/class/SAP.app.php:607 -#: ../../godmode/wizards/HostDevices.class.php:1456 -#: ../../godmode/wizards/HostDevices.class.php:1459 +#: ../../godmode/wizards/HostDevices.class.php:1455 +#: ../../godmode/wizards/HostDevices.class.php:1458 msgid "No credentials available" msgstr "No hay credenciales disponibles" @@ -25965,7 +25801,7 @@ msgstr "No hay credenciales disponibles" #: ../../enterprise/include/class/DeploymentCenter.class.php:1266 #: ../../enterprise/include/class/SAP.app.php:605 #: ../../godmode/agentes/module_manager_editor_network.php:518 -#: ../../godmode/wizards/HostDevices.class.php:1457 +#: ../../godmode/wizards/HostDevices.class.php:1456 msgid "Manage credentials" msgstr "Gestionar credenciales" @@ -25978,7 +25814,7 @@ msgid "Scan from" msgstr "Escanear desde" #: ../../enterprise/include/class/DeploymentCenter.class.php:1178 -#: ../../godmode/wizards/HostDevices.class.php:1469 +#: ../../godmode/wizards/HostDevices.class.php:1468 msgid "Credentials to try with" msgstr "Credenciales con los que probar" @@ -26076,7 +25912,7 @@ msgstr "Programado correctamente" #: ../../enterprise/tools/ipam/ipam_ajax.php:419 #: ../../enterprise/tools/ipam/ipam_massive.php:103 #: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/groups/group_list.php:913 #: ../../godmode/agentes/module_manager_editor_common.php:1075 #: ../../godmode/agentes/module_manager_editor_common.php:1085 #: ../../godmode/massive/massive_edit_agents.php:1137 @@ -26324,8 +26160,8 @@ msgstr "Plantilla actualizada" #: ../../enterprise/include/lib/Metaconsole/Node.php:1453 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5095 -#: ../../include/functions_reporting.php:5123 +#: ../../include/functions_reporting.php:5358 +#: ../../include/functions_reporting.php:5386 #, php-format msgid "Error: %s" msgstr "Error: %s" @@ -26874,7 +26710,7 @@ msgid "Aws S3" msgstr "Aws S3" #: ../../enterprise/include/class/Aws.S3.php:166 -#: ../../enterprise/include/class/Aws.cloud.php:887 +#: ../../enterprise/include/class/Aws.cloud.php:886 #: ../../include/class/CustomNetScan.class.php:134 msgid "This task has been already defined. Please edit it or create a new one." msgstr "La tarea ya se ha definido. Edite o cree una nueva." @@ -27200,56 +27036,56 @@ msgstr "Costes" msgid "Instances" msgstr "Instancias" -#: ../../enterprise/include/class/Aws.cloud.php:442 +#: ../../enterprise/include/class/Aws.cloud.php:441 msgid "Amazon EC2" msgstr "Amazon EC2" -#: ../../enterprise/include/class/Aws.cloud.php:447 +#: ../../enterprise/include/class/Aws.cloud.php:446 msgid "Amazon RDS" msgstr "Amazon RDS" -#: ../../enterprise/include/class/Aws.cloud.php:452 +#: ../../enterprise/include/class/Aws.cloud.php:451 msgid "S3 Buckets" msgstr "S3 Buckets" -#: ../../enterprise/include/class/Aws.cloud.php:472 +#: ../../enterprise/include/class/Aws.cloud.php:471 #: ../../godmode/wizards/HostDevices.class.php:698 msgid "NetScan" msgstr "NetScan" -#: ../../enterprise/include/class/Aws.cloud.php:511 +#: ../../enterprise/include/class/Aws.cloud.php:510 msgid "Discovery task name" msgstr "Nombre de la tarea de discovery" -#: ../../enterprise/include/class/Aws.cloud.php:615 +#: ../../enterprise/include/class/Aws.cloud.php:614 msgid "Total cost" msgstr "Coste total" -#: ../../enterprise/include/class/Aws.cloud.php:632 +#: ../../enterprise/include/class/Aws.cloud.php:631 msgid "Cost by region" msgstr "Coste por región" -#: ../../enterprise/include/class/Aws.cloud.php:646 +#: ../../enterprise/include/class/Aws.cloud.php:645 msgid "Cost interval" msgstr "Intervalo de coste" -#: ../../enterprise/include/class/Aws.cloud.php:774 +#: ../../enterprise/include/class/Aws.cloud.php:773 msgid "Select EC2 instances" msgstr "Seleccionar instancias EC2" -#: ../../enterprise/include/class/Aws.cloud.php:790 +#: ../../enterprise/include/class/Aws.cloud.php:789 msgid "Storage" msgstr "Almacenamiento" -#: ../../enterprise/include/class/Aws.cloud.php:800 +#: ../../enterprise/include/class/Aws.cloud.php:799 msgid "Elastic IP Adresses" msgstr "Direcciones IP elásticas" -#: ../../enterprise/include/class/Aws.cloud.php:983 +#: ../../enterprise/include/class/Aws.cloud.php:982 msgid "You must select at least one RDS instance." msgstr "Debe seleccionar al menos una instancia RDS" -#: ../../enterprise/include/class/Aws.cloud.php:988 +#: ../../enterprise/include/class/Aws.cloud.php:987 msgid "" "You cannot monitor RDS instances from different types. Please define several " "tasks for several types." @@ -27257,43 +27093,43 @@ msgstr "" "No puede monitorizar las instancias RDS desde diferentes tipos. Defina varias " "tareas para diferentes tipos." -#: ../../enterprise/include/class/Aws.cloud.php:995 +#: ../../enterprise/include/class/Aws.cloud.php:994 msgid "Discovery.Cloud.AWS.RDS" msgstr "Discovery.Cloud.AWS.RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1161 +#: ../../enterprise/include/class/Aws.cloud.php:1160 msgid "RDS" msgstr "RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1166 +#: ../../enterprise/include/class/Aws.cloud.php:1165 msgid "DB monitoring" msgstr "Monitorización de base de datos" -#: ../../enterprise/include/class/Aws.cloud.php:1176 +#: ../../enterprise/include/class/Aws.cloud.php:1175 msgid "AWS RDS" msgstr "AWS RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1250 +#: ../../enterprise/include/class/Aws.cloud.php:1249 msgid "Global DB User" msgstr "Usuario de la base de datos global" -#: ../../enterprise/include/class/Aws.cloud.php:1260 +#: ../../enterprise/include/class/Aws.cloud.php:1259 msgid "Global DB password" msgstr "Contraseña de la base de datos global" -#: ../../enterprise/include/class/Aws.cloud.php:1350 +#: ../../enterprise/include/class/Aws.cloud.php:1349 msgid "Select RDS instances" msgstr "Seleccionar instancias RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1654 +#: ../../enterprise/include/class/Aws.cloud.php:1653 msgid "Invalid group" msgstr "Grupo no válido" -#: ../../enterprise/include/class/Aws.cloud.php:1712 +#: ../../enterprise/include/class/Aws.cloud.php:1711 msgid "Cannot update the recon database" msgstr "No se ha podido actualizar la base de datos de reconocimiento" -#: ../../enterprise/include/class/Aws.cloud.php:1734 +#: ../../enterprise/include/class/Aws.cloud.php:1733 msgid "Engine not supported" msgstr "Motor no compatible" @@ -27575,47 +27411,47 @@ msgid "Block" msgstr "Bloquear" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1264 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1084 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1085 msgid "Log content" msgstr "Contenido de log" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1269 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1087 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1088 msgid "Log source" msgstr "Fuente de log" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1274 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1090 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1091 msgid "Log agent" msgstr "Agente de log" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1332 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1096 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1097 msgid "Event content" msgstr "Contenido de evento" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1337 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1093 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1094 msgid "Event user comment" msgstr "Comentario de usuario de evento" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1342 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1099 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1100 msgid "Event agent" msgstr "Agente de evento" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1347 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1102 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1103 msgid "Event module" msgstr "Módulo de evento" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1352 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1105 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1106 msgid "Event module alerts" msgstr "Alertas de módulos de eventos" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1357 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1108 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1109 msgid "Event group" msgstr "Grupo de eventos" @@ -27624,17 +27460,17 @@ msgid "Event group (recursive)" msgstr "Recursividad del grupo de eventos" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1369 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1114 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1115 msgid "Event severity" msgstr "Prioridad de evento" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1374 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1117 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1118 msgid "Event tag" msgstr "Etiqueta de evento" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1379 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1120 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1121 msgid "Event user" msgstr "Usuario de evento" @@ -27644,20 +27480,20 @@ msgstr "Operadores" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1414 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1458 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1433 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1434 msgid "greater than" msgstr "%1$s debe ser mayor que %2$d (incluido)" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1419 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1462 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1437 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1445 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1438 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1446 msgid "less than" msgstr "menor que" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1424 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1466 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1441 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1442 msgid "greater or equal than" msgstr "Mayor o igual (>=)" @@ -27668,25 +27504,25 @@ msgstr "menor o igual (<=)" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1434 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1474 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1449 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1450 msgid "is equal" msgstr "es igual" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1439 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1478 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1453 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1454 msgid "is different" msgstr "es diferente " #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1444 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1482 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1457 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1458 msgid "is like (regex)" msgstr "es como (regex)" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1449 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1486 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1461 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1462 msgid "is not like (regex)" msgstr "no es como (regex)" @@ -27750,10 +27586,10 @@ msgstr "Recuperación de alerta" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2078 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2735 -#: ../../godmode/alerts/alert_commands.php:101 -#: ../../godmode/alerts/alert_commands.php:106 -#: ../../godmode/alerts/alert_commands.php:122 -#: ../../godmode/alerts/alert_commands.php:128 +#: ../../godmode/alerts/alert_commands.php:102 +#: ../../godmode/alerts/alert_commands.php:107 +#: ../../godmode/alerts/alert_commands.php:123 +#: ../../godmode/alerts/alert_commands.php:129 #: ../../godmode/alerts/configure_alert_template.php:928 #: ../../godmode/alerts/alert_view.php:484 #: ../../godmode/alerts/alert_view.php:603 @@ -27761,6 +27597,12 @@ msgstr "Recuperación de alerta" msgid "Field %s" msgstr "Campo %s" +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2090 +msgid "Agent and module event recovery macros are not available in this section" +msgstr "" +"Las macros de recuperación de eventos de agente y módulo no están disponibles " +"en esta sección" + #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2090 #, php-format msgid "Recovery Field %s" @@ -28007,7 +27849,7 @@ msgid "Metaconsole" msgstr "Metaconsola" #: ../../enterprise/include/class/CommandCenter.class.php:265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:982 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994 msgid "" "Memory limit is recomended to be unlimited in metaconsole, please set to -1 in " "php.ini." @@ -28052,7 +27894,7 @@ msgid "Please restore your backups" msgstr "Restaure sus copias de seguridad" #: ../../enterprise/include/class/CommandCenter.class.php:452 -#: ../../include/functions_ui.php:6663 +#: ../../include/functions_ui.php:6667 msgid "Query" msgstr "Consulta" @@ -28094,7 +27936,8 @@ msgstr "El proceso se ha completado correctamente" #: ../../enterprise/include/class/CommandCenter.class.php:461 #: ../../enterprise/include/functions_login.php:145 -#: ../../include/class/Diagnostics.class.php:1821 +#: ../../include/functions_menu.php:799 +#: ../../include/class/Diagnostics.class.php:1826 msgid "Successfully" msgstr "Correcto" @@ -28248,7 +28091,7 @@ msgid "Admin Tools" msgstr "Herramientas de administrador" #: ../../enterprise/include/class/ManageBackups.class.php:121 -#: ../../enterprise/operation/menu.php:183 +#: ../../enterprise/operation/menu.php:170 msgid "DB Backup Manager" msgstr "Backup Manager de la BBDD" @@ -28268,7 +28111,7 @@ msgstr "" #: ../../include/functions_visual_map_editor.php:838 #: ../../include/functions_visual_map_editor.php:933 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:1991 +#: ../../include/rest-api/models/VisualConsole/Item.php:1992 #: ../../include/functions_filemanager.php:606 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250 @@ -28381,7 +28224,7 @@ msgstr "Elemento disponible creado desde el asistente" #: ../../enterprise/include/functions_reporting.php:1856 #: ../../enterprise/include/functions_reporting.php:2895 #: ../../enterprise/include/functions_reporting.php:3882 -#: ../../include/functions_reporting_html.php:548 +#: ../../include/functions_reporting_html.php:549 msgid "Max/Min Values" msgstr "Valores max/min" @@ -28390,7 +28233,7 @@ msgstr "Valores max/min" #: ../../enterprise/include/functions_reporting.php:2897 #: ../../enterprise/include/functions_reporting.php:3884 #: ../../enterprise/include/functions_reporting.php:6134 -#: ../../include/functions_reporting_html.php:550 +#: ../../include/functions_reporting_html.php:551 msgid "SLA Compliance" msgstr "Cumplimiento del SLA" @@ -28400,7 +28243,7 @@ msgstr "Cumplimiento del SLA" #: ../../enterprise/include/functions_reporting.php:3939 #: ../../enterprise/include/functions_reporting.php:4203 #: ../../enterprise/include/functions_reporting.php:4854 -#: ../../include/functions_reporting_html.php:873 +#: ../../include/functions_reporting_html.php:874 #: ../../include/functions_reporting_html.php:4795 msgid "Not Init" msgstr "No iniciado" @@ -28446,16 +28289,16 @@ msgstr "Log" #: ../../enterprise/include/functions_reporting.php:2495 #: ../../enterprise/include/functions_reporting.php:3439 #: ../../enterprise/include/functions_reporting.php:4414 -#: ../../include/functions_reporting.php:1005 -#: ../../include/functions_reporting.php:8923 +#: ../../include/functions_reporting.php:1006 +#: ../../include/functions_reporting.php:9141 msgid "There are no SLAs defined" msgstr "No hay SLA definidos" #: ../../enterprise/include/functions_reporting.php:2548 #: ../../enterprise/include/functions_reporting.php:3492 #: ../../enterprise/include/functions_reporting.php:4467 -#: ../../include/functions_reporting.php:1080 -#: ../../include/functions_reporting.php:9301 +#: ../../include/functions_reporting.php:1081 +#: ../../include/functions_reporting.php:9519 msgid "Inverse" msgstr "Inverso" @@ -28503,7 +28346,7 @@ msgstr "SLA %" #: ../../enterprise/include/functions_reporting.php:4198 #: ../../enterprise/include/functions_reporting.php:6199 #: ../../enterprise/include/functions_services.php:1453 -#: ../../include/functions_reporting_html.php:868 +#: ../../include/functions_reporting_html.php:869 #: ../../include/functions_reporting_html.php:4790 msgid "Unknow" msgstr "Desconocido" @@ -28511,7 +28354,7 @@ msgstr "Desconocido" #: ../../enterprise/include/functions_reporting.php:3207 #: ../../enterprise/include/functions_reporting.php:4208 #: ../../enterprise/include/functions_reporting.php:6204 -#: ../../include/functions_reporting_html.php:878 +#: ../../include/functions_reporting_html.php:879 #: ../../include/functions_reporting_html.php:4800 msgid "Downtimes" msgstr "Paradas planificadas" @@ -28542,17 +28385,17 @@ msgid "% time ok" msgstr "% tiempo ok" #: ../../enterprise/include/functions_reporting.php:4927 -#: ../../include/functions_reporting_html.php:637 -#: ../../include/functions_reporting_html.php:676 -#: ../../include/functions_reporting_html.php:747 -#: ../../include/functions_reporting_html.php:825 +#: ../../include/functions_reporting_html.php:638 +#: ../../include/functions_reporting_html.php:677 +#: ../../include/functions_reporting_html.php:748 +#: ../../include/functions_reporting_html.php:826 #: ../../include/functions_reporting_html.php:4248 #: ../../include/functions_reporting_html.php:4395 msgid "24 x 7" msgstr "24/7" #: ../../enterprise/include/functions_reporting.php:4967 -#: ../../include/functions_reporting_html.php:582 +#: ../../include/functions_reporting_html.php:583 msgid "Global Time" msgstr "Tiempo global" @@ -28561,7 +28404,7 @@ msgid "Time Critical" msgstr "Tiempo Crítico" #: ../../enterprise/include/functions_reporting.php:5062 -#: ../../include/functions_reporting_html.php:615 +#: ../../include/functions_reporting_html.php:616 msgid "Checks Time" msgstr "Tiempo de comprobaciones" @@ -28575,12 +28418,12 @@ msgid "Checks Warning" msgstr "Comprobaciones Advertencia" #: ../../enterprise/include/functions_reporting.php:5148 -#: ../../include/functions_reporting_html.php:805 +#: ../../include/functions_reporting_html.php:806 #: ../../include/functions_reporting_html.php:4438 #: ../../include/functions_reporting_html.php:4988 #: ../../include/functions_reporting_html.php:4991 -#: ../../include/functions_reporting.php:1650 -#: ../../include/functions_reporting.php:3513 +#: ../../include/functions_reporting.php:1651 +#: ../../include/functions_reporting.php:3631 msgid "There are no Agent/Modules defined" msgstr "No hay Agentes/Módulos definidos" @@ -28903,7 +28746,7 @@ msgid "User pass successfully updated" msgstr "La contraseña se ha actualizado correctamente." #: ../../enterprise/include/functions_login.php:216 -#: ../../include/auth/mysql.php:763 +#: ../../include/auth/mysql.php:741 msgid "The password provided is not valid. Please, set another one." msgstr "La contraseña proporcionada no es válida. Por favor, introduzca otra." @@ -28920,61 +28763,64 @@ msgid "Password must be different" msgstr "La contraseña no puede ser la misma." #: ../../enterprise/include/functions_login.php:256 +#: ../../enterprise/include/functions_login.php:306 msgid "Password too short" msgstr "La contraseña es demasiado corta" #: ../../enterprise/include/functions_login.php:268 +#: ../../enterprise/include/functions_login.php:313 msgid "Password must contain numbers" msgstr "La contraseña tiene que contener números." #: ../../enterprise/include/functions_login.php:281 +#: ../../enterprise/include/functions_login.php:321 msgid "Password must contain symbols" msgstr "La contraseña tiene que contener símbolos." -#: ../../enterprise/include/functions_login.php:304 +#: ../../enterprise/include/functions_login.php:339 msgid "Invalid old password" msgstr "Contraseña antigua no válida" -#: ../../enterprise/include/functions_login.php:341 +#: ../../enterprise/include/functions_login.php:376 msgid "Password confirm does not match" msgstr "Las contraseñas no coinciden." -#: ../../enterprise/include/functions_login.php:348 +#: ../../enterprise/include/functions_login.php:383 msgid "Password empty" msgstr "La contraseña está vacía." -#: ../../enterprise/include/functions_login.php:465 -#: ../../godmode/users/configure_user.php:2064 -#: ../../godmode/users/configure_user.php:2134 -#: ../../godmode/users/configure_user.php:2206 +#: ../../enterprise/include/functions_login.php:502 +#: ../../godmode/users/configure_user.php:2129 +#: ../../godmode/users/configure_user.php:2199 +#: ../../godmode/users/configure_user.php:2271 #: ../../include/ajax/double_auth.ajax.php:252 #: ../../include/ajax/double_auth.ajax.php:350 #: ../../include/ajax/double_auth.ajax.php:396 #: ../../include/ajax/double_auth.ajax.php:512 -#: ../../operation/users/user_edit.php:1086 -#: ../../operation/users/user_edit.php:1152 -#: ../../operation/users/user_edit.php:1223 ../../general/register.php:154 +#: ../../operation/users/user_edit.php:1160 +#: ../../operation/users/user_edit.php:1226 +#: ../../operation/users/user_edit.php:1297 ../../general/register.php:154 #: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "Error de autentificación" -#: ../../enterprise/include/functions_login.php:472 -#: ../../godmode/users/configure_user.php:2071 -#: ../../godmode/users/configure_user.php:2141 +#: ../../enterprise/include/functions_login.php:509 +#: ../../godmode/users/configure_user.php:2136 +#: ../../godmode/users/configure_user.php:2206 #: ../../include/ajax/double_auth.ajax.php:259 #: ../../include/ajax/double_auth.ajax.php:357 #: ../../include/ajax/double_auth.ajax.php:403 #: ../../include/ajax/double_auth.ajax.php:520 -#: ../../operation/users/user_edit.php:1093 -#: ../../operation/users/user_edit.php:1159 ../../general/register.php:161 +#: ../../operation/users/user_edit.php:1167 +#: ../../operation/users/user_edit.php:1233 ../../general/register.php:161 msgid "There was an error loading the data" msgstr "Error al cargar los datos" -#: ../../enterprise/include/functions_login.php:481 -#: ../../godmode/users/configure_user.php:2149 -#: ../../godmode/users/configure_user.php:2227 -#: ../../operation/users/user_edit.php:1167 -#: ../../operation/users/user_edit.php:1243 ../../general/register.php:170 +#: ../../enterprise/include/functions_login.php:518 +#: ../../godmode/users/configure_user.php:2214 +#: ../../godmode/users/configure_user.php:2292 +#: ../../operation/users/user_edit.php:1241 +#: ../../operation/users/user_edit.php:1317 ../../general/register.php:170 msgid "Double authentication activation" msgstr "Activación de doble autenticación" @@ -29024,8 +28870,8 @@ msgstr "Definición de plugin no válida" #: ../../enterprise/include/lib/NetworkManager.php:82 #: ../../godmode/setup/setup_ehorus.php:111 #: ../../godmode/setup/setup_integria.php:566 -#: ../../operation/users/user_edit.php:736 -#: ../../operation/users/user_edit.php:782 +#: ../../operation/users/user_edit.php:810 +#: ../../operation/users/user_edit.php:856 msgid "Test" msgstr "Probar" @@ -29042,7 +28888,7 @@ msgid "Send firmware" msgstr "Enviar firmware" #: ../../enterprise/include/lib/NetworkManager.php:88 -#: ../../godmode/setup/setup_general.php:408 +#: ../../godmode/setup/setup_general.php:489 msgid "On demand" msgstr "Por demanda" @@ -29078,43 +28924,43 @@ msgstr "Ejecutando scripts bajo demanda" msgid "Montly" msgstr "Mensualmente" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:838 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:852 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:839 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:853 msgid "There was a problem creating Action" msgstr "Ha habido un problema al crear la acción" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:889 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:902 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:890 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:903 msgid "There was a problem updating Action" msgstr "Ha habido un problema al actualizar la acción" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:938 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:952 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:939 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:953 msgid "There was a problem deleting Action" msgstr "Ha habido un problema al eliminar la acción" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:994 msgid "There was a problem standby alert" msgstr "Ha habido un problema en la alerta en suspensión" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1002 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1003 msgid "There was a problem standby off alert" msgstr "" "Ha ocurrido un problema al deshabilitar el modo suspensión de las alertas" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1045 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1046 msgid "There was a problem enabled alert" msgstr "Ha habido un problema en la alerta habilitada" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1055 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056 msgid "There was a problem disabled alert" msgstr "Ha habido un problema en la alerta deshabilitada" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1111 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1112 msgid "Event group Recursive" msgstr "Recursividad del grupo de eventos" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1126 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 #: ../../include/functions_reporting_html.php:1051 #: ../../include/functions_reporting_html.php:1317 #: ../../include/functions_reporting_html.php:2548 @@ -29122,25 +28968,25 @@ msgstr "Recursividad del grupo de eventos" msgid "Count" msgstr "Número" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1129 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 msgid "Time window" msgstr "Ventana de tiempo" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1663 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1664 msgid "Failed to cleanup old rules." msgstr "No se han podido limpiar las reglas antiguas." -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1671 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1672 #, php-format msgid "Failed SQL: %s" msgstr "SQL erróneo: %s" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1676 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1677 #, php-format msgid "Failed to apply rule: %s." msgstr "Error al aplicar la regla: %s" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1824 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1825 msgid "any" msgstr "cualquier" @@ -29382,12 +29228,12 @@ msgid "Failed to overwrite node data: %s" msgstr "Error al sobrescribir los datos del nodo: %s" #: ../../enterprise/include/lib/Metaconsole/Node.php:1703 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3008 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3037 msgid "Final step" msgstr "Paso final" #: ../../enterprise/include/lib/Metaconsole/Node.php:1704 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3009 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3038 msgid "Database merged" msgstr "Base de datos combinada" @@ -29396,71 +29242,71 @@ msgid "Activating node" msgstr "Activación del nodo" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:396 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:443 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:752 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:879 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1150 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1244 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1596 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1893 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2262 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3467 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3621 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3696 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3995 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4211 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:398 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:445 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:758 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:891 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1161 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1255 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1609 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1918 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2291 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3215 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3500 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3658 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3733 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4020 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4236 msgid "Connect node" msgstr "Conectar nodo" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:659 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:665 msgid "Create table tmerge_error" msgstr "Creando tabla tmerge_error" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:685 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:691 msgid "Create table tmerge_steps" msgstr "Creando tabla tmerge_steps" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:710 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:716 msgid "Create table tmerge_queries" msgstr "Creando tabla tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:851 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:861 #, php-format msgid "%s console" msgstr "%s consola" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:856 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:866 msgid "Check cron task" msgstr "Comprobar tarea cron" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:857 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867 msgid "Please login into this node before using this feature" msgstr "Inicie sesión en este nodo antes de utilizar esta función" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:939 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:951 msgid "memory_limit current value" msgstr "valor actual de memory_limit " -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:946 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:958 msgid "" "Check current packages, all nodes and metaconsole, are not in the same version" msgstr "" "Compruebe que los paquetes actuales, todos los nodos y la metaconsola, no " "están en la misma versión" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:958 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:970 msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" msgstr "" "Comprobar versión menor, Todos los nodos y metaconsola, no tienen el mismo mr" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:970 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:982 msgid "Max size collection, all nodes and metaconsole, are not equal" msgstr "" "Colección de tamaño máximo, todos los nodos y metaconsola, no son iguales" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:995 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1007 #, php-format msgid "" "Post max size, nodes cannot be smaller than the size of the metaconsole %s" @@ -29468,7 +29314,7 @@ msgstr "" "Tamaño máximo posterior, los nodos no pueden ser más pequeños que el tamaño de " "la metaconsola %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1010 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1022 #, php-format msgid "" "Upload max file size, nodes cannot be smaller than the size of the metaconsole " @@ -29477,243 +29323,243 @@ msgstr "" "Upload max file size: los nodos no pueden ser más pequeños que el tamaño de la " "metaconsola %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1072 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1088 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1084 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1100 msgid "Problems with the backup directory" msgstr "Problemas con el directorio de copia de seguridad" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1073 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1085 msgid "Cannot create \"merge_backups\" folder in attachment directory" msgstr "" "No se puede crear la carpeta \"merge_backups\" en el directorio de datos " "adjuntos" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1089 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1101 msgid "The \"merge_backpus\" directory does not have the correct permissions" msgstr "El directorio \"merge_backpus\" no tiene los permisos correctos" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1099 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1111 msgid "Extension ZIP" msgstr "Extensión ZIP" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1100 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1112 msgid "The ZIP extension is not loaded, please install this dependency" msgstr "La extensión ZIP no está cargada, instale esta dependencia" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1201 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1212 msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries" msgstr "" "Inserta copias de seguridad, deshabilita claves de antecesos, excepciones en " "tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1227 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1238 msgid "Resets foreing keys and exceptions and ends the merge preparation process" msgstr "" "Restablece las claves previas y las excepciones y finaliza el proceso de " "preparación de la combinación" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1274 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1285 msgid "Enable exceptions in tmerge_queries" msgstr "Habilitar excepciones en tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1298 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1309 msgid "Enable foreing keys in tmerge_queries" msgstr "Habilitar claves de anteo en tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1577 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1862 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1590 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1887 msgid "Preparation of all nodes for the table merge process" msgstr "Preparación de todos los nodos para el proceso de combinación de tablas" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1653 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1666 msgid "This table does not have the id" msgstr "Esta tabla no tiene el identificador" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1654 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1667 msgid "Prepare merge request" msgstr "Preparar la solicitud de combinación" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1980 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2005 msgid "Inserts truncate, autoincrement and inserts in tmerge_queries" msgstr "Inserta truncado, autoincremento e inserto en tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2150 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2179 msgid "Inserts updates in tmerge_queries" msgstr "Inserta actualizaciones en tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2187 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2216 msgid "Merging collections files" msgstr "Fusión de archivos de colecciones" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2243 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2389 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2560 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2272 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2418 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2589 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3202 #, php-format msgid "Api call: %s" msgstr "Llamada api: %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2301 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2302 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2330 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2331 msgid "Problems while backing up collections from: " msgstr "Problemas al realizar copias de seguridad de colecciones de: " -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2319 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2323 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2348 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2352 #, php-format msgid "Problems downloading collections from %s" msgstr "Problemas para descargar colecciones de %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2335 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2339 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2364 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2368 #, php-format msgid "Problems unzipping collection file from %s" msgstr "Problemas al descomprimir el archivo de recopilación de %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2618 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2647 msgid "Start phase merge" msgstr "Combinación de fases de inicio" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2630 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2659 msgid "Create backups" msgstr "Crear copia de seguridad" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2698 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2699 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2727 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2728 msgid "Problems creating the backup conf agents" msgstr "Problemas al crear los agentes conf de copia de seguridad" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2709 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2947 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3317 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2738 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2976 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3346 msgid "Class agent" msgstr "Clase de agente " -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2733 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2745 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2762 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2774 msgid "Disable_foreing" msgstr "Disable_foreing" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2757 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2786 msgid "Truncate table" msgstr "Tabla truncada" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2775 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2804 msgid "Autoincrement" msgstr "Autoincremento" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2787 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2816 msgid "Inserts" msgstr "Postizos" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2805 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2834 msgid "Disabling constraints" msgstr "Desactivación de restricciones" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2823 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2852 msgid "Updates" msgstr "Actualizaciones" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2846 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2875 msgid "Restoring constraints" msgstr "Restauración de restricciones" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2864 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2893 msgid "Enable exceptions" msgstr "Habilitar excepciones" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2882 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2911 msgid "Enable foreings keys" msgstr "Habilitar claves foreign" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2899 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2900 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2928 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929 msgid "Update conf agent policies" msgstr "Actualizar directivas de agente conf" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2936 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2937 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2965 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2966 msgid "Error updating agent conf" msgstr "Error al actualizar el agente conf" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2958 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2987 msgid "Synchronizing collections" msgstr "Sincronización de colecciones" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2970 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2971 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2999 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3000 msgid "Error synchronizing collections" msgstr "Error al sincronizar las colecciones al nodo %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3067 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3096 msgid "Problems unzipping collections at: " msgstr "Problemas para descomprimir colecciones en: " -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3068 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3097 #, php-format msgid "File is not a valid zip file \"%s\"" msgstr "El archivo no es un archivo zip válido \"%s\"" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3226 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3255 msgid "Restoring database backup" msgstr "Restaurar una copia de seguridad" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3252 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4476 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3281 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4501 msgid "Problems creating the backup" msgstr "Problemas al crear la copia de seguridad" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3265 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3294 msgid "Restore backups conf agents" msgstr "Restore backups conf agents" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3302 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3331 msgid "Problems restoring the backup conf agents" msgstr "Problemas para restaurar los agentes conf de copia de seguridad" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3304 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3333 #, php-format msgid "Agent \"%s\" with md5 file \"%s\"" msgstr "Agente \"%s\" con el archivo md5 \"%s\"" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3330 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3359 msgid "Restore collections" msgstr "Restaurar colecciones" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3345 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3346 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3374 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3375 msgid "Error Synch collections" msgstr "Colecciones de sincronización de errores" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3563 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3803 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3596 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3828 msgid "Insert info steps" msgstr "Insertar pasos de información" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3728 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3745 msgid "Node not ready" msgstr "Nodo no listo" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3729 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3746 msgid "Pending to be unified" msgstr "Pendiente de ser unificado" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3962 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3967 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4019 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4024 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3987 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3992 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4044 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4049 msgid "Initialize" msgstr "Iniciar" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4158 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4183 msgid "Backup" msgstr "Copia de seguridad" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4188 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4213 msgid "Applying" msgstr "Trabajo" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4407 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4432 msgid "Error updating events" msgstr "Error al actualizar eventos" @@ -29847,37 +29693,37 @@ msgstr "La política ya se ha definido: \"%s\"" #: ../../enterprise/include/functions_events.php:40 #: ../../godmode/events/event_filter.php:139 -#: ../../godmode/events/event_edit_filter.php:367 +#: ../../godmode/events/event_edit_filter.php:377 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 #: ../../operation/events/events.php:1688 ../../operation/events/events.php:2325 msgid "Event status" msgstr "Estado del evento" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:440 +#: ../../godmode/events/event_edit_filter.php:450 #: ../../operation/events/events.php:1964 msgid "User ack." msgstr "Validación del usuario" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:495 +#: ../../godmode/events/event_edit_filter.php:505 msgid "Date from" msgstr "Fecha desde" #: ../../enterprise/include/functions_events.php:121 -#: ../../godmode/events/event_edit_filter.php:498 +#: ../../godmode/events/event_edit_filter.php:508 msgid "Date to" msgstr "Fecha hasta" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:484 -#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4787 +#: ../../godmode/events/event_edit_filter.php:494 +#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4766 #: ../../operation/events/events.php:1720 msgid "Repeated" msgstr "Repetido" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:644 +#: ../../godmode/events/event_edit_filter.php:654 #: ../../operation/events/events.php:2000 msgid "Alert events" msgstr "Eventos de la alerta" @@ -29887,7 +29733,7 @@ msgid "Id source events" msgstr "Eventos fuente de ID" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:430 +#: ../../godmode/events/event_edit_filter.php:440 #: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 #: ../../include/class/SnmpConsole.class.php:467 #: ../../include/class/AuditLog.class.php:186 @@ -29904,13 +29750,13 @@ msgid "More than 5 tags" msgstr "Más de 5 etiquetas" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:539 +#: ../../godmode/events/event_edit_filter.php:549 #: ../../operation/events/events.php:2196 ../../operation/events/events.php:2199 msgid "Events with following tags" msgstr "Eventos con las siguientes etiquetas" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:592 +#: ../../godmode/events/event_edit_filter.php:602 #: ../../operation/events/events.php:2197 ../../operation/events/events.php:2200 msgid "Events without following tags" msgstr "Eventos sin las siguientes etiquetas" @@ -29925,52 +29771,52 @@ msgstr "Filtro activo" msgid "Active filters" msgstr "Filtros activos" -#: ../../enterprise/include/functions_metaconsole.php:2863 +#: ../../enterprise/include/functions_metaconsole.php:2864 msgid "Agent alerts action does not exist in target node" msgstr "La acción de alertas de agentes no existe en el nodo objetivo." -#: ../../enterprise/include/functions_metaconsole.php:2870 +#: ../../enterprise/include/functions_metaconsole.php:2871 msgid "Agent alerts template does not exist in target node" msgstr "La plantilla de alertas de agente no existe en el nodo objetivo" -#: ../../enterprise/include/functions_metaconsole.php:2877 +#: ../../enterprise/include/functions_metaconsole.php:2878 msgid "Agent inventory does not exist in target node" msgstr "El inventario de agente no existe en el nodo objetivo" -#: ../../enterprise/include/functions_metaconsole.php:2884 +#: ../../enterprise/include/functions_metaconsole.php:2885 msgid "Exists agent conf please remove configuration file from target node." msgstr "" "Existe archivo de configuración de agente, elimine el fichero del nodo " "objetivo." -#: ../../enterprise/include/functions_metaconsole.php:2891 +#: ../../enterprise/include/functions_metaconsole.php:2892 msgid "Agent collections does not exist in target node" msgstr "Las colecciones de agente no existen en el nodo objetivo" -#: ../../enterprise/include/functions_metaconsole.php:2898 +#: ../../enterprise/include/functions_metaconsole.php:2899 msgid "Agent plugins does not exist in target node" msgstr "El plugin de agente no existe en el nodo objetivo" -#: ../../enterprise/include/functions_metaconsole.php:2905 +#: ../../enterprise/include/functions_metaconsole.php:2906 msgid "" "Agent policies definitions does not match with defined ones in target node" msgstr "" "Las definiciones de políticas de agentes no coinciden con las definidas en el " "nodo objetivo" -#: ../../enterprise/include/functions_metaconsole.php:2912 +#: ../../enterprise/include/functions_metaconsole.php:2913 msgid "Agent group does not exist in target node" msgstr "El grupo de agente no existe en el nodo objetivo" -#: ../../enterprise/include/functions_metaconsole.php:2919 +#: ../../enterprise/include/functions_metaconsole.php:2920 msgid "Agent already exists in target node" msgstr "El agente ya existe en el nodo objetivo" -#: ../../enterprise/include/functions_metaconsole.php:2943 +#: ../../enterprise/include/functions_metaconsole.php:2944 msgid "The agent: has not been added due to problems in the insertion" msgstr "El agente: no se ha añadido por problemas en la inserción" -#: ../../enterprise/include/functions_metaconsole.php:2948 +#: ../../enterprise/include/functions_metaconsole.php:2949 msgid "The agent: has already been added to the migration queue" msgstr "El agente: ya se ha añadido a la cola de migración" @@ -29983,6 +29829,7 @@ msgid "Subscription" msgstr "Suscripción" #: ../../enterprise/include/functions_license.php:120 +#: ../../include/functions_menu.php:837 #: ../../include/class/Diagnostics.class.php:1159 msgid "Support expires" msgstr "El soporte caduca" @@ -30005,12 +29852,24 @@ msgstr "Siguiente IP disponible" #: ../../enterprise/include/functions_ipam.php:1341 #: ../../enterprise/tools/ipam/ipam_ajax.php:483 -#: ../../include/ajax/events.php:1673 +#: ../../include/ajax/events.php:1680 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378 msgid "Details" msgstr "Detalles" +#: ../../enterprise/include/functions_ipam.php:1386 +#: ../../enterprise/operation/services/services.list.php:639 +#: ../../godmode/agentes/inventory_manager.php:258 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:586 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:676 +#: ../../include/ajax/module.php:1065 ../../include/functions_ui.php:1162 +#: ../../operation/visual_console/view.php:406 +#: ../../operation/agentes/group_view.php:221 +#: ../../operation/agentes/group_view.php:283 +msgid "Force" +msgstr "Forzar" + #: ../../enterprise/include/functions_ipam.php:1559 #: ../../include/class/SnmpConsole.class.php:189 #: ../../operation/snmpconsole/snmp_statistics.php:78 @@ -30019,7 +29878,7 @@ msgid "Statistics" msgstr "Estadísticas" #: ../../enterprise/include/functions_ipam.php:1561 -#: ../../enterprise/include/functions_ipam.php:1995 +#: ../../enterprise/include/functions_ipam.php:2003 #: ../../enterprise/tools/ipam/ipam_excel.php:142 #: ../../enterprise/tools/ipam/ipam_excel.php:210 msgid "Total IPs" @@ -30030,7 +29889,7 @@ msgid "Occupied" msgstr "Ocupado" #: ../../enterprise/include/functions_ipam.php:1573 -#: ../../enterprise/include/functions_ipam.php:2048 +#: ../../enterprise/include/functions_ipam.php:2056 #: ../../enterprise/tools/ipam/ipam_network.php:401 #: ../../enterprise/tools/ipam/ipam_ajax.php:406 #: ../../enterprise/tools/ipam/ipam_massive.php:103 @@ -30042,8 +29901,8 @@ msgid "Not managed" msgstr "No gestionado" #: ../../enterprise/include/functions_ipam.php:1579 -#: ../../enterprise/include/functions_ipam.php:1734 -#: ../../enterprise/include/functions_ipam.php:2049 +#: ../../enterprise/include/functions_ipam.php:1742 +#: ../../enterprise/include/functions_ipam.php:2057 #: ../../enterprise/tools/ipam/ipam_network.php:402 #: ../../enterprise/tools/ipam/ipam_ajax.php:432 #: ../../enterprise/tools/ipam/ipam_massive.php:103 @@ -30058,17 +29917,17 @@ msgstr "No reservado" msgid "Occupancy statistics" msgstr "Estadísticas de ocupación" -#: ../../enterprise/include/functions_ipam.php:1646 +#: ../../enterprise/include/functions_ipam.php:1654 msgid "DESC" msgstr "Descendiente" -#: ../../enterprise/include/functions_ipam.php:1647 +#: ../../enterprise/include/functions_ipam.php:1655 msgid "ASC" msgstr "Ascendente" -#: ../../enterprise/include/functions_ipam.php:1648 -#: ../../enterprise/include/functions_ipam.php:1649 -#: ../../enterprise/include/functions_ipam.php:2043 +#: ../../enterprise/include/functions_ipam.php:1656 +#: ../../enterprise/include/functions_ipam.php:1657 +#: ../../enterprise/include/functions_ipam.php:2051 #: ../../enterprise/tools/ipam/ipam_network.php:397 #: ../../enterprise/tools/ipam/ipam_ajax.php:364 #: ../../include/class/Diagnostics.class.php:735 @@ -30076,179 +29935,179 @@ msgstr "Ascendente" msgid "Hostname" msgstr "Nombre de host" -#: ../../enterprise/include/functions_ipam.php:1648 +#: ../../enterprise/include/functions_ipam.php:1656 msgid "A -> Z" msgstr "A -> Z" -#: ../../enterprise/include/functions_ipam.php:1649 +#: ../../enterprise/include/functions_ipam.php:1657 msgid "Z -> A" msgstr "Z -> A" -#: ../../enterprise/include/functions_ipam.php:1650 -#: ../../enterprise/include/functions_ipam.php:1651 +#: ../../enterprise/include/functions_ipam.php:1658 +#: ../../enterprise/include/functions_ipam.php:1659 msgid "Last check" msgstr "Ultima comprobación" -#: ../../enterprise/include/functions_ipam.php:1650 +#: ../../enterprise/include/functions_ipam.php:1658 msgid "Newer -> Older" msgstr "Más reciente -> Más antiguo" -#: ../../enterprise/include/functions_ipam.php:1651 +#: ../../enterprise/include/functions_ipam.php:1659 msgid "Older -> Newer" msgstr "Más antiguo -> Más reciente" -#: ../../enterprise/include/functions_ipam.php:1678 +#: ../../enterprise/include/functions_ipam.php:1686 msgid "Exact address match" msgstr "Coincide la dirección exacta" -#: ../../enterprise/include/functions_ipam.php:1682 +#: ../../enterprise/include/functions_ipam.php:1690 msgid "S.O" msgstr "S.O" -#: ../../enterprise/include/functions_ipam.php:1695 +#: ../../enterprise/include/functions_ipam.php:1703 msgid "Big" msgstr "Grande" -#: ../../enterprise/include/functions_ipam.php:1696 +#: ../../enterprise/include/functions_ipam.php:1704 msgid "Tiny" msgstr "Pequeño" -#: ../../enterprise/include/functions_ipam.php:1697 +#: ../../enterprise/include/functions_ipam.php:1705 msgid "Icons style" msgstr "Estilo de iconos" -#: ../../enterprise/include/functions_ipam.php:1714 +#: ../../enterprise/include/functions_ipam.php:1722 msgid "Show not alive hosts" msgstr "Mostrar máquinas inactivas" -#: ../../enterprise/include/functions_ipam.php:1722 +#: ../../enterprise/include/functions_ipam.php:1730 msgid "Show only managed addresses" msgstr "Mostrar solo direcciones administradas" -#: ../../enterprise/include/functions_ipam.php:1730 +#: ../../enterprise/include/functions_ipam.php:1738 msgid "Reserved addresses" msgstr "Direcciones reservadas" -#: ../../enterprise/include/functions_ipam.php:1735 +#: ../../enterprise/include/functions_ipam.php:1743 msgid "Unreserved" msgstr "No reservado" -#: ../../enterprise/include/functions_ipam.php:1745 +#: ../../enterprise/include/functions_ipam.php:1753 msgid "Last Contact" msgstr "Último contacto" -#: ../../enterprise/include/functions_ipam.php:1788 +#: ../../enterprise/include/functions_ipam.php:1796 msgid "Filter options" msgstr "Opciones de filtro" -#: ../../enterprise/include/functions_ipam.php:1985 +#: ../../enterprise/include/functions_ipam.php:1993 msgid "id Network" msgstr "ID de red" -#: ../../enterprise/include/functions_ipam.php:1990 +#: ../../enterprise/include/functions_ipam.php:1998 msgid "ID recon task" msgstr "Tarea de reconocimiento de ID" -#: ../../enterprise/include/functions_ipam.php:1991 +#: ../../enterprise/include/functions_ipam.php:1999 msgid "Scan Interval" msgstr "Intervalo de escaneo" -#: ../../enterprise/include/functions_ipam.php:1992 +#: ../../enterprise/include/functions_ipam.php:2000 msgid "Users Operator" msgstr "Operador de usuarios" -#: ../../enterprise/include/functions_ipam.php:1993 +#: ../../enterprise/include/functions_ipam.php:2001 msgid "Total Ips" msgstr "IPs totales" -#: ../../enterprise/include/functions_ipam.php:1994 +#: ../../enterprise/include/functions_ipam.php:2002 msgid "Last Update" msgstr "Última actualización" -#: ../../enterprise/include/functions_ipam.php:1996 +#: ../../enterprise/include/functions_ipam.php:2004 #: ../../enterprise/tools/ipam/ipam_excel.php:143 #: ../../enterprise/tools/ipam/ipam_excel.php:211 msgid "Alive IPs" msgstr "IPs activas" -#: ../../enterprise/include/functions_ipam.php:1997 +#: ../../enterprise/include/functions_ipam.php:2005 #: ../../enterprise/tools/ipam/ipam_excel.php:144 #: ../../enterprise/tools/ipam/ipam_excel.php:212 msgid "Occupied %" msgstr "Ocupado %" -#: ../../enterprise/include/functions_ipam.php:1998 +#: ../../enterprise/include/functions_ipam.php:2006 #: ../../enterprise/tools/ipam/ipam_excel.php:145 #: ../../enterprise/tools/ipam/ipam_excel.php:213 msgid "Available %" msgstr "Disponible %" -#: ../../enterprise/include/functions_ipam.php:1999 +#: ../../enterprise/include/functions_ipam.php:2007 #: ../../enterprise/tools/ipam/ipam_excel.php:146 #: ../../enterprise/tools/ipam/ipam_excel.php:214 msgid "Managed IPs" msgstr "IPs gestionadas" -#: ../../enterprise/include/functions_ipam.php:2000 +#: ../../enterprise/include/functions_ipam.php:2008 #: ../../enterprise/tools/ipam/ipam_excel.php:147 #: ../../enterprise/tools/ipam/ipam_excel.php:215 msgid "Managed %" msgstr "Gestionadas %" -#: ../../enterprise/include/functions_ipam.php:2001 +#: ../../enterprise/include/functions_ipam.php:2009 #: ../../enterprise/tools/ipam/ipam_excel.php:148 #: ../../enterprise/tools/ipam/ipam_excel.php:216 msgid "Unmanaged %" msgstr "No gestionadas %" -#: ../../enterprise/include/functions_ipam.php:2002 +#: ../../enterprise/include/functions_ipam.php:2010 #: ../../enterprise/tools/ipam/ipam_excel.php:149 #: ../../enterprise/tools/ipam/ipam_excel.php:217 msgid "Reserved IPs" msgstr "IPs reservadas" -#: ../../enterprise/include/functions_ipam.php:2003 +#: ../../enterprise/include/functions_ipam.php:2011 #: ../../enterprise/tools/ipam/ipam_excel.php:150 #: ../../enterprise/tools/ipam/ipam_excel.php:218 msgid "Reserved %" msgstr "Reservado %" -#: ../../enterprise/include/functions_ipam.php:2004 +#: ../../enterprise/include/functions_ipam.php:2012 #: ../../enterprise/tools/ipam/ipam_excel.php:151 #: ../../enterprise/tools/ipam/ipam_excel.php:219 msgid "Not reserved %" msgstr "No reservadas %" -#: ../../enterprise/include/functions_ipam.php:2047 +#: ../../enterprise/include/functions_ipam.php:2055 msgid "OS Name" msgstr "Nombre del OS" -#: ../../enterprise/include/functions_ipam.php:2050 +#: ../../enterprise/include/functions_ipam.php:2058 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 msgid "Created at" msgstr "Creado en" -#: ../../enterprise/include/functions_ipam.php:2051 +#: ../../enterprise/include/functions_ipam.php:2059 msgid "Last updated" msgstr "Última actualización" -#: ../../enterprise/include/functions_ipam.php:2052 +#: ../../enterprise/include/functions_ipam.php:2060 msgid "Last modified" msgstr "Última modificación" -#: ../../enterprise/include/functions_ipam.php:2053 +#: ../../enterprise/include/functions_ipam.php:2061 msgid "Dhcp Leased" msgstr "Dhcp prestado" -#: ../../enterprise/include/functions_ipam.php:2054 +#: ../../enterprise/include/functions_ipam.php:2062 msgid "Dhcp Leased Mode" msgstr "Modo Dhcp prestado" -#: ../../enterprise/include/functions_ipam.php:2055 +#: ../../enterprise/include/functions_ipam.php:2063 msgid "Dhcp Leased Expiration" msgstr "Caducidad de Dhcp prestado" -#: ../../enterprise/include/functions_ipam.php:2056 +#: ../../enterprise/include/functions_ipam.php:2064 msgid "Mac address" msgstr "Dirección Mac" @@ -30318,21 +30177,21 @@ msgid "Module will be unlinked in the next application" msgstr "El módulo será desenlazado en la próxima aplicación." #: ../../enterprise/include/functions_policies.php:3738 -#: ../../godmode/agentes/configurar_agente.php:550 -#: ../../godmode/agentes/configurar_agente.php:771 +#: ../../godmode/agentes/configurar_agente.php:563 +#: ../../godmode/agentes/configurar_agente.php:784 #: ../../godmode/setup/snmp_wizard.php:31 msgid "SNMP Wizard" msgstr "Asistente SNMP" #: ../../enterprise/include/functions_policies.php:3741 -#: ../../godmode/agentes/configurar_agente.php:560 -#: ../../godmode/agentes/configurar_agente.php:777 +#: ../../godmode/agentes/configurar_agente.php:573 +#: ../../godmode/agentes/configurar_agente.php:790 msgid "SNMP Interfaces wizard" msgstr "Asistente de interfaces SNMP" #: ../../enterprise/include/functions_policies.php:3744 -#: ../../godmode/agentes/configurar_agente.php:570 -#: ../../godmode/agentes/configurar_agente.php:783 +#: ../../godmode/agentes/configurar_agente.php:583 +#: ../../godmode/agentes/configurar_agente.php:796 msgid "WMI Wizard" msgstr "Asistente WMI" @@ -30405,14 +30264,14 @@ msgstr "SO vacío" msgid "Copy of" msgstr "Copia de" -#: ../../enterprise/include/functions_ux_console.php:507 +#: ../../enterprise/include/functions_ux_console.php:517 #: ../../enterprise/operation/agentes/tag_view.php:901 #: ../../enterprise/operation/agentes/tag_view.php:911 #: ../../enterprise/operation/agentes/ux_console_view.php:102 #: ../../enterprise/operation/agentes/ux_console_view.php:297 -#: ../../enterprise/operation/agentes/ux_console_view.php:377 -#: ../../enterprise/operation/agentes/wux_console_view.php:352 -#: ../../include/functions_ui.php:6318 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:337 +#: ../../include/functions_ui.php:6322 msgid "Snapshot view" msgstr "Vista de captura de pantalla" @@ -30486,8 +30345,8 @@ msgstr "Veces" #: ../../include/functions_agents.php:2944 #: ../../include/functions_agents.php:2955 ../../include/functions_ui.php:1259 #: ../../include/class/AgentsAlerts.class.php:943 -#: ../../include/class/SnmpConsole.class.php:876 -#: ../../include/functions_reporting.php:12590 +#: ../../include/class/SnmpConsole.class.php:877 +#: ../../include/functions_reporting.php:12876 msgid "Alert not fired" msgstr "Alerta no disparada" @@ -30521,7 +30380,7 @@ msgid "(Adopted) (Unlinked)" msgstr "(Adoptados)(Desvinculados)" #: ../../enterprise/operation/agentes/policy_view.php:457 -#: ../../godmode/agentes/module_manager.php:1146 +#: ../../godmode/agentes/module_manager.php:1147 msgid "Non initialized module" msgstr "Módulo no iniciado" @@ -30546,16 +30405,16 @@ msgstr "Módulo no iniciado" #: ../../operation/agentes/status_monitor.php:1717 #: ../../operation/agentes/status_monitor.php:1727 #: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 -#: ../../operation/agentes/pandora_networkmap.view.php:1824 -#: ../../operation/agentes/pandora_networkmap.view.php:1829 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149 #: ../../operation/search_modules.php:157 msgid "Last status" msgstr "Último estado" #: ../../enterprise/operation/agentes/tag_view.php:41 -#: ../../enterprise/operation/menu.php:174 +#: ../../enterprise/operation/menu.php:161 msgid "Tag view" msgstr "Visor de etiquetas" @@ -30568,7 +30427,7 @@ msgstr "Visor de etiquetas" #: ../../operation/agentes/interface_view.php:76 #: ../../operation/agentes/status_monitor.php:108 #: ../../operation/agentes/group_view.php:102 -#: ../../operation/agentes/tactical.php:82 ../../operation/menu.php:39 +#: ../../operation/agentes/tactical.php:83 ../../operation/menu.php:39 msgid "Views" msgstr "Vistas" @@ -30667,6 +30526,18 @@ msgstr "Tipo de dato" msgid "Agent custom fields" msgstr "Campos personalizados de agente" +#: ../../enterprise/operation/agentes/tag_view.php:578 +#: ../../enterprise/operation/services/services.treeview_services.php:255 +#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 +#: ../../godmode/groups/group_list.php:1039 +#: ../../include/functions_inventory.php:301 +#: ../../include/class/Heatmap.class.php:820 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 +#: ../../operation/tree.php:415 ../../operation/tree.php:446 +#: ../../operation/network/network_report.php:317 +msgid "No data found" +msgstr "No se encontraron datos" + #: ../../enterprise/operation/agentes/tag_view.php:647 #: ../../operation/agentes/estado_agente.php:894 msgid "Remote config" @@ -30682,7 +30553,7 @@ msgstr "Configuración remota" #: ../../include/ajax/module.php:996 #: ../../include/class/NetworkMap.class.php:3041 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4332 +#: ../../include/functions_events.php:4311 #: ../../operation/agentes/status_monitor.php:1359 #: ../../operation/search_modules.php:37 msgid "Graph" @@ -30691,7 +30562,7 @@ msgstr "Gráfico" #: ../../enterprise/operation/agentes/tag_view.php:683 #: ../../godmode/agentes/status_monitor_custom_fields.php:109 #: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/agentes/module_manager.php:906 +#: ../../godmode/agentes/module_manager.php:907 #: ../../operation/agentes/status_monitor.php:1364 msgid "Warn" msgstr "Advertencia" @@ -30699,81 +30570,81 @@ msgstr "Advertencia" #: ../../enterprise/operation/agentes/tag_view.php:963 #: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 #: ../../include/functions_modules.php:2874 -#: ../../include/functions_modules.php:4136 ../../include/functions_events.php:70 +#: ../../include/functions_modules.php:4211 ../../include/functions_events.php:70 #: ../../operation/agentes/status_monitor.php:1585 #: ../../operation/search_modules.php:108 ../../operation/events/events.php:716 msgid "NOT INIT" msgstr "No iniciado" #: ../../enterprise/operation/agentes/tag_view.php:1103 -#: ../../include/functions_reporting.php:12712 -#: ../../include/functions_reporting.php:12721 +#: ../../include/functions_reporting.php:12998 +#: ../../include/functions_reporting.php:13007 #, php-format msgid "%d Total modules" msgstr "%d módulos totales" #: ../../enterprise/operation/agentes/tag_view.php:1104 -#: ../../include/functions_reporting.php:12713 +#: ../../include/functions_reporting.php:12999 #, php-format msgid "%d Modules in normal status" msgstr "%d módulos en estado normal" #: ../../enterprise/operation/agentes/tag_view.php:1105 -#: ../../include/functions_reporting.php:12714 +#: ../../include/functions_reporting.php:13000 #, php-format msgid "%d Modules in critical status" msgstr "%d módulos en estado crítico" #: ../../enterprise/operation/agentes/tag_view.php:1106 -#: ../../include/functions_reporting.php:12715 +#: ../../include/functions_reporting.php:13001 #, php-format msgid "%d Modules in warning status" msgstr "%d módulos en estado de advertencia" #: ../../enterprise/operation/agentes/tag_view.php:1107 -#: ../../include/functions_reporting.php:12716 +#: ../../include/functions_reporting.php:13002 #, php-format msgid "%d Modules in unknown status" msgstr "%d módulos en estado desconocido" #: ../../enterprise/operation/agentes/tag_view.php:1108 -#: ../../include/functions_reporting.php:12717 +#: ../../include/functions_reporting.php:13003 #, php-format msgid "%d Modules in not init status" msgstr "%d módulos en estado no iniciado" #: ../../enterprise/operation/agentes/ver_agente.php:72 -#: ../../operation/agentes/ver_agente.php:1029 +#: ../../operation/agentes/ver_agente.php:1035 msgid "Main IP" msgstr "IP principal" #: ../../enterprise/operation/agentes/ver_agente.php:78 -#: ../../include/functions_events.php:4259 -#: ../../operation/agentes/ver_agente.php:1041 +#: ../../include/functions_events.php:4238 +#: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "Último contacto remoto" #: ../../enterprise/operation/agentes/ver_agente.php:122 -#: ../../operation/agentes/ver_agente.php:1086 +#: ../../operation/agentes/ver_agente.php:1092 msgid "Monitors down" msgstr "Monitores caídos" #: ../../enterprise/operation/agentes/ver_agente.php:164 #: ../../mobile/operation/groups.php:174 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 -#: ../../operation/agentes/ver_agente.php:1127 +#: ../../operation/agentes/ver_agente.php:1133 msgid "Alerts fired" msgstr "Alertas disparadas" -#: ../../enterprise/operation/agentes/ver_agente.php:258 +#: ../../enterprise/operation/agentes/ver_agente.php:235 msgid "URL Route Analyzer" msgstr "Analizador de ruta de URL" -#: ../../enterprise/operation/agentes/ver_agente.php:274 +#: ../../enterprise/operation/agentes/ver_agente.php:251 msgid "UX Console" msgstr "Consola UX" -#: ../../enterprise/operation/agentes/ver_agente.php:290 +#: ../../enterprise/operation/agentes/ver_agente.php:267 msgid "WUX Console" msgstr "Consola WUX" @@ -30789,15 +30660,6 @@ msgstr "No hay ningún agente seleccionado." msgid "Route not found" msgstr "Ruta no encontrada" -#: ../../enterprise/operation/agentes/agent_inventory.php:73 -msgid "This agent has not modules inventory" -msgstr "Este agente no tiene módulos de inventario." - -#: ../../enterprise/operation/agentes/agent_inventory.php:193 -#: ../../enterprise/operation/agentes/agent_inventory.php:194 -msgid "Diff view" -msgstr "Vista de diferencia" - #: ../../enterprise/operation/agentes/ux_console_view.php:43 msgid "No ux transaction selected." msgstr "Ninguna transacción UX seleccionada" @@ -30807,12 +30669,12 @@ msgid "No ux transactions found." msgstr "Ninguna transacción UX encontrada" #: ../../enterprise/operation/agentes/ux_console_view.php:133 -#: ../../enterprise/operation/agentes/wux_console_view.php:261 +#: ../../enterprise/operation/agentes/wux_console_view.php:246 msgid "Transaction" msgstr "Transacción" #: ../../enterprise/operation/agentes/ux_console_view.php:142 -#: ../../enterprise/operation/agentes/wux_console_view.php:286 +#: ../../enterprise/operation/agentes/wux_console_view.php:271 msgid "Show transaction" msgstr "Mostrar transacción" @@ -30821,12 +30683,12 @@ msgid "Execution results for transaction " msgstr "Resultados de ejecución para la transacción " #: ../../enterprise/operation/agentes/ux_console_view.php:266 -#: ../../enterprise/operation/agentes/wux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:317 msgid "Global results" msgstr "Resultados globales" -#: ../../enterprise/operation/agentes/ux_console_view.php:332 -#: ../../enterprise/operation/agentes/wux_console_view.php:570 +#: ../../enterprise/operation/agentes/ux_console_view.php:339 +#: ../../enterprise/operation/agentes/wux_console_view.php:545 msgid "Transaction history" msgstr "Histórico de transacciones" @@ -30840,63 +30702,63 @@ msgstr "Ninguna transacción WUX seleccionada" msgid "Phase modules not found" msgstr "Fase de módulo no encontrada" -#: ../../enterprise/operation/agentes/wux_console_view.php:224 +#: ../../enterprise/operation/agentes/wux_console_view.php:209 msgid "Selected transaction has no stats" msgstr "La transacción seleccionada no tiene estadísticas." -#: ../../enterprise/operation/agentes/wux_console_view.php:242 +#: ../../enterprise/operation/agentes/wux_console_view.php:227 msgid "No WUX transactions found." msgstr "Ninguna transacción WUX encontrada" -#: ../../enterprise/operation/agentes/wux_console_view.php:357 +#: ../../enterprise/operation/agentes/wux_console_view.php:342 msgid "Failed: " msgstr "Fallo: " -#: ../../enterprise/operation/agentes/wux_console_view.php:357 -#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../enterprise/operation/agentes/wux_console_view.php:342 +#: ../../enterprise/operation/agentes/wux_console_view.php:363 #: ../../godmode/setup/performance.php:188 #: ../../godmode/setup/performance.php:243 ../../general/logon_ok.php:193 msgid "ago" msgstr "hace" -#: ../../enterprise/operation/agentes/wux_console_view.php:369 -#: ../../enterprise/operation/agentes/wux_console_view.php:373 +#: ../../enterprise/operation/agentes/wux_console_view.php:354 +#: ../../enterprise/operation/agentes/wux_console_view.php:358 #: ../../include/functions_alerts.php:681 msgid "Unknown status" msgstr "Estado desconocido" -#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../enterprise/operation/agentes/wux_console_view.php:363 msgid "Success: " msgstr "Éxito: " -#: ../../enterprise/operation/agentes/wux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:369 msgid "Total transaction time: " msgstr "Tiempo total de la transacción: " -#: ../../enterprise/operation/agentes/wux_console_view.php:398 +#: ../../enterprise/operation/agentes/wux_console_view.php:383 #, php-format msgid "Execution results for transaction %s" msgstr "Resultados de ejecución de la transacción %s" -#: ../../enterprise/operation/agentes/wux_console_view.php:527 +#: ../../enterprise/operation/agentes/wux_console_view.php:503 msgid "View all stats" msgstr "Ver todas las estadísticas" -#: ../../enterprise/operation/agentes/wux_console_view.php:595 -#: ../../include/class/SnmpConsole.class.php:923 -#: ../../include/class/SnmpConsole.class.php:924 ../../operation/menu.php:250 -#: ../../operation/menu.php:252 ../../operation/events/events.php:560 +#: ../../enterprise/operation/agentes/wux_console_view.php:570 +#: ../../include/class/SnmpConsole.class.php:924 +#: ../../include/class/SnmpConsole.class.php:925 ../../operation/menu.php:254 +#: ../../operation/menu.php:256 ../../operation/events/events.php:560 #: ../../operation/events/events.php:825 msgid "Show more" msgstr "Mostrar más" -#: ../../enterprise/operation/agentes/wux_console_view.php:611 +#: ../../enterprise/operation/agentes/wux_console_view.php:586 msgid "Invalid transaction." msgstr "Transacción no válida" #: ../../enterprise/operation/log/elasticsearch_interface.php:39 #: ../../enterprise/operation/log/log_viewer.php:392 -#: ../../enterprise/operation/menu.php:194 +#: ../../enterprise/operation/menu.php:181 msgid "Elasticsearch Interface" msgstr "Interfaz de ElasticSearch" @@ -30920,6 +30782,14 @@ msgstr "" msgid "Log sources" msgstr "Fuentes de log" +#: ../../enterprise/operation/log/log_viewer.php:459 +#: ../../godmode/modules/manage_inventory_modules.php:72 +#: ../../godmode/modules/manage_inventory_modules_form.php:48 +#: ../../godmode/netflow/nf_edit.php:47 +#: ../../operation/netflow/nf_live_view.php:141 +msgid "Not supported in Windows systems" +msgstr "No compatible con sistemas Windows" + #: ../../enterprise/operation/log/log_viewer.php:479 msgid "All words" msgstr "Todas las palabras" @@ -31038,41 +30908,16 @@ msgstr "Error al borrar modelo" msgid "Error update model" msgstr "Error al actualizar modelo" -#: ../../enterprise/operation/menu.php:32 ../../operation/menu.php:151 +#: ../../enterprise/operation/menu.php:19 ../../operation/menu.php:155 msgid "Cluster View" msgstr "Visor de clústers" -#: ../../enterprise/operation/menu.php:61 -#: ../../operation/agentes/ver_agente.php:1695 -#: ../../operation/agentes/ver_agente.php:1894 +#: ../../enterprise/operation/menu.php:48 +#: ../../operation/agentes/ver_agente.php:1713 +#: ../../operation/agentes/ver_agente.php:1912 msgid "SAP view" msgstr "Vista SAP" -#: ../../enterprise/operation/inventory/inventory.php:203 -#: ../../include/chart_generator.php:125 ../../operation/agentes/stat_win.php:51 -#: ../../operation/agentes/stat_win.php:176 -#: ../../operation/agentes/realtime_win.php:51 -#: ../../operation/agentes/interface_traffic_graph_win.php:54 -msgid "There was a problem connecting with the node" -msgstr "Error al conectar con el nodo" - -#: ../../enterprise/operation/inventory/inventory.php:289 -msgid "You must select at least one filter." -msgstr "Debe seleccionar al menos un filtro." - -#: ../../enterprise/operation/inventory/inventory.php:434 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2193 -msgid "Last" -msgstr "Último" - -#: ../../enterprise/operation/inventory/inventory.php:438 -msgid "Order by agent" -msgstr "Ordenar por agente" - -#: ../../enterprise/operation/inventory/inventory.php:482 -msgid "Export this list to CSV" -msgstr "Exportar esta lista a CSV" - #: ../../enterprise/operation/services/services.service.php:63 #: ../../enterprise/operation/services/services.service_map.php:78 #: ../../include/lib/Dashboard/Widgets/service_map.php:192 @@ -31227,7 +31072,7 @@ msgstr "Resumen de elementos de servicio" #: ../../enterprise/operation/services/massive/service.create.elements.php:531 #: ../../enterprise/operation/services/massive/service.edit.elements.php:294 #: ../../include/functions_visual_map_editor.php:1148 -#: ../../include/rest-api/models/VisualConsole/Item.php:2527 +#: ../../include/rest-api/models/VisualConsole/Item.php:2528 msgid "Critical weight" msgstr "Peso crítico" @@ -31235,7 +31080,7 @@ msgstr "Peso crítico" #: ../../enterprise/operation/services/massive/service.create.elements.php:544 #: ../../enterprise/operation/services/massive/service.edit.elements.php:307 #: ../../include/functions_visual_map_editor.php:1174 -#: ../../include/rest-api/models/VisualConsole/Item.php:2541 +#: ../../include/rest-api/models/VisualConsole/Item.php:2542 msgid "Warning weight" msgstr "Peso de advertencia" @@ -31423,7 +31268,7 @@ msgid "Create Service" msgstr "Crear servicio" #: ../../enterprise/operation/services/services.treeview_services.php:256 -#: ../../godmode/groups/group_list.php:1035 +#: ../../godmode/groups/group_list.php:1040 msgid "Found groups" msgstr "Grupos encontrados" @@ -31479,7 +31324,7 @@ msgid "Config" msgstr "Configuración" #: ../../enterprise/operation/services/services.table_services.php:45 -#: ../../godmode/groups/group_list.php:355 +#: ../../godmode/groups/group_list.php:360 msgid "Table view" msgstr "Vista de tabla" @@ -31573,7 +31418,7 @@ msgstr "Superred creada" msgid "Operation View" msgstr "Vista de operación" -#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:396 +#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:399 #: ../../godmode/setup/file_manager.php:56 msgid "Admin tools" msgstr "Herramientas administrativas" @@ -31901,7 +31746,7 @@ msgstr "Eliminar red" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410 #: ../../operation/agentes/interface_view.functions.php:93 #: ../../operation/agentes/interface_view.functions.php:131 -#: ../../operation/agentes/ver_agente.php:1422 +#: ../../operation/agentes/ver_agente.php:1428 msgid "Interfaces" msgstr "Interfaces" @@ -31982,7 +31827,7 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "El nombre de red ya existe en la superred %s (%s)" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1652 +#: ../../operation/agentes/pandora_networkmap.view.php:1656 msgid "Could not be updated." msgstr "No se pudo actualizar" @@ -31993,7 +31838,7 @@ msgid "Successfully updated." msgstr "Actualizado correctamente" #: ../../enterprise/tools/ipam/ipam_action.php:456 -#: ../../include/functions_reporting.php:2880 +#: ../../include/functions_reporting.php:2998 msgid "No changes found." msgstr "No se han encontrado cambios" @@ -32005,7 +31850,7 @@ msgstr "No pudo ser creado. Nombre en blanco" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 #: ../../godmode/modules/manage_nc_groups.php:119 #: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:108 -#: ../../godmode/events/event_edit_filter.php:233 +#: ../../godmode/events/event_edit_filter.php:243 msgid "Not updated. Error updating data" msgstr "No se ha podido actualizar. Error al actualizar los datos." @@ -32097,7 +31942,7 @@ msgid "Executing command: %s" msgstr "Ejecutar comando: %s" #: ../../enterprise/tools/ipam/ipam_ajax.php:551 -#: ../../include/functions_events.php:5730 +#: ../../include/functions_events.php:5743 msgid "Execute again" msgstr "Ejecutar de nuevo" @@ -32490,7 +32335,7 @@ msgid "Visit our privacy policy for more information" msgstr "Visite nuestra política de privacidad para obtener más información" #: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1913 +#: ../../include/class/Diagnostics.class.php:1918 msgid "Your email" msgstr "Su email" @@ -32912,65 +32757,77 @@ msgstr "" "Puede obtener más recursos en nuestra Librería de recursos pública" -#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248 +#: ../../extensions/api_checker.php:190 ../../extensions/api_checker.php:332 msgid "API checker" msgstr "Comprobación API" -#: ../../extensions/api_checker.php:128 +#: ../../extensions/api_checker.php:207 #, php-format msgid "%s Console URL" msgstr "%s URL de la consola" -#: ../../extensions/api_checker.php:133 +#: ../../extensions/api_checker.php:212 +#: ../../godmode/users/configure_user.php:1049 +#: ../../godmode/users/configure_user.php:1075 +#: ../../operation/users/user_edit.php:271 +#: ../../operation/users/user_edit.php:310 +msgid "API Token" +msgstr "Token de API" + +#: ../../extensions/api_checker.php:212 +msgid "Use API Token instead API Pass, User and Password." +msgstr "Utilice el token de API en lugar de API Pass, Usuario y Contraseña." + +#: ../../extensions/api_checker.php:217 msgid "API Pass" msgstr "Contraseña de la API" -#: ../../extensions/api_checker.php:151 +#: ../../extensions/api_checker.php:235 msgid "Action (get or set)" msgstr "Acción (obtener o establecer)" -#: ../../extensions/api_checker.php:166 +#: ../../extensions/api_checker.php:250 msgid "ID 2" msgstr "ID 2" -#: ../../extensions/api_checker.php:171 +#: ../../extensions/api_checker.php:255 msgid "Return Type" msgstr "Tipo de retorno" -#: ../../extensions/api_checker.php:181 +#: ../../extensions/api_checker.php:265 msgid "Other Mode" msgstr "Otro modo" -#: ../../extensions/api_checker.php:189 +#: ../../extensions/api_checker.php:273 msgid "Raw URL" msgstr "URL en crudo" -#: ../../extensions/api_checker.php:200 +#: ../../extensions/api_checker.php:284 msgid "Call parameters" msgstr "Parámetros de llamada" -#: ../../extensions/api_checker.php:200 +#: ../../extensions/api_checker.php:284 msgid "Action: get Operation: module_last_value id: 63" msgstr "Acción: obtener Operación : module_last_value id: 63" -#: ../../extensions/api_checker.php:207 +#: ../../extensions/api_checker.php:291 msgid "Custom URL" msgstr "URL personalizada:" -#: ../../extensions/api_checker.php:213 +#: ../../extensions/api_checker.php:297 msgid "Call" msgstr "Llamada" -#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239 +#: ../../extensions/api_checker.php:306 ../../extensions/api_checker.php:323 msgid "Show URL" msgstr "Mostrar URL" -#: ../../extensions/api_checker.php:235 +#: ../../extensions/api_checker.php:319 msgid "Hide URL" msgstr "Ocultar URL" #: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 -#: ../../godmode/menu.php:453 +#: ../../godmode/menu.php:456 msgid "DB Schema check" msgstr "Comprobación del esquema de la BD" @@ -33136,7 +32993,7 @@ msgstr "Ejecutar SQL" msgid "Error querying database node" msgstr "Error al consultar el nodo de la base de datos" -#: ../../extensions/dbmanager.php:307 ../../godmode/menu.php:453 +#: ../../extensions/dbmanager.php:307 ../../godmode/menu.php:456 msgid "DB interface" msgstr "Interfaz de la BD" @@ -33176,7 +33033,7 @@ msgid "Secondary groups and agent subgroups will be taken into account." msgstr "Los grupos secundarios y los subgrupos de agentes se tendrán en cuenta." #: ../../extensions/agents_modules.php:750 -#: ../../include/functions_reporting.php:3154 +#: ../../include/functions_reporting.php:3272 msgid "There are no agents with modules" msgstr "No hay agentes con módulos" @@ -33410,7 +33267,7 @@ msgstr "" msgid "There are no defined groups or module groups" msgstr "No hay grupos o grupos de módulos definidos" -#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:112 +#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:113 #: ../../godmode/reporting/reporting_builder.item_editor.php:86 #: ../../include/lib/Dashboard/Widgets/tree_view.php:330 #: ../../operation/tree.php:102 @@ -33603,6 +33460,62 @@ msgstr "" msgid "There are no defined component groups" msgstr "No hay grupos de componentes definidos" +#: ../../godmode/modules/manage_inventory_modules.php:40 +msgid "To manage inventory plugin you must activate centralized management" +msgstr "Para administrar el plugin de inventario active la gestión centralizada" + +#: ../../godmode/modules/manage_inventory_modules.php:121 +msgid "Successfully created inventory module" +msgstr "Inventario de módulo creado correctamente" + +#: ../../godmode/modules/manage_inventory_modules.php:122 +msgid "Error creating inventory module" +msgstr "Error al crear módulo del inventario" + +#: ../../godmode/modules/manage_inventory_modules.php:168 +#: ../../godmode/modules/manage_inventory_modules.php:189 +#: ../../godmode/agentes/inventory_manager.php:100 +msgid "Successfully deleted inventory module" +msgstr "Módulo del inventario eliminado correctamente" + +#: ../../godmode/modules/manage_inventory_modules.php:169 +#: ../../godmode/modules/manage_inventory_modules.php:190 +#: ../../godmode/agentes/inventory_manager.php:102 +msgid "Error deleting inventory module" +msgstr "Error al eliminar el módulo del inventario" + +#: ../../godmode/modules/manage_inventory_modules.php:281 +#: ../../godmode/modules/manage_inventory_modules_form.php:118 +msgid "Interpreter" +msgstr "Intérprete" + +#: ../../godmode/modules/manage_inventory_modules.php:290 +msgid "No inventory modules defined" +msgstr "No hay módulos de inventario definidos" + +#: ../../godmode/modules/manage_inventory_modules.php:311 +msgid "Local module" +msgstr "Módulo local" + +#: ../../godmode/modules/manage_inventory_modules.php:313 +msgid "Remote/Local" +msgstr "Remoto/Local" + +#: ../../godmode/modules/manage_inventory_modules.php:359 +msgid "" +"The configurations of inventory modules from the nodes have been unified.\n" +"\t\tFrom this point on, changes to the inventory scripts must be made through " +"this screen." +msgstr "" +"Las configuraciones de los módulos de inventario de los nodos se han " +"unificado.\n" +"\t\tA partir de este momento, los cambios en los scripts de inventario deben " +"realizarse a través de esta pantalla." + +#: ../../godmode/modules/manage_inventory_modules.php:361 +msgid "You can find more information at:" +msgstr "Encontrará más información en:" + #: ../../godmode/modules/manage_network_components_form_common.php:723 #: ../../godmode/agentes/module_manager_editor_common.php:2014 msgid "Please introduce a positive percentage value" @@ -33793,6 +33706,58 @@ msgstr "Filtros de consulta" msgid "Field value" msgstr "Calor de campo" +#: ../../godmode/modules/manage_inventory_modules_form.php:75 +#: ../../godmode/agentes/inventory_manager.php:165 +msgid "Inventory module error" +msgstr "Error del módulo del inventario" + +#: ../../godmode/modules/manage_inventory_modules_form.php:120 +msgid "Left blank for the LOCAL inventory modules" +msgstr "Dejar en blanco para los módulos de inventario LOCALES" + +#: ../../godmode/modules/manage_inventory_modules_form.php:122 +msgid "Block Mode" +msgstr "Modo bloqueo" + +#: ../../godmode/modules/manage_inventory_modules_form.php:125 +#: ../../godmode/massive/massive_standby_alerts.php:224 +#: ../../godmode/massive/massive_standby_alerts.php:259 +#: ../../godmode/massive/massive_enable_disable_alerts.php:196 +#: ../../godmode/massive/massive_enable_disable_alerts.php:231 +#: ../../include/class/ModuleTemplates.class.php:1209 +msgid "Format" +msgstr "Formato" + +#: ../../godmode/modules/manage_inventory_modules_form.php:126 +msgid "separate fields with " +msgstr "Separar campos con " + +#: ../../godmode/modules/manage_inventory_modules_form.php:129 +msgid "Script mode" +msgstr "Modo script" + +#: ../../godmode/modules/manage_inventory_modules_form.php:131 +msgid "Use script" +msgstr "Usar script" + +#: ../../godmode/modules/manage_inventory_modules_form.php:139 +msgid "Use inline code" +msgstr "Usar código en línea" + +#: ../../godmode/modules/manage_inventory_modules_form.php:151 +#: ../../include/ajax/double_auth.ajax.php:149 +#: ../../include/ajax/double_auth.ajax.php:292 +msgid "Code" +msgstr "Código" + +#: ../../godmode/modules/manage_inventory_modules_form.php:152 +msgid "" +"Here is placed the script for the REMOTE inventory modules Local inventory " +"modules don't use this field" +msgstr "" +"Aquí se coloca el script para los módulos de inventario REMOTOS. Los módulos " +"de inventario locales no usan este campo." + #: ../../godmode/modules/module_list.php:29 msgid "Defined modules" msgstr "Módulos definidos" @@ -33838,7 +33803,7 @@ msgid "Database size stats" msgstr "Tamaño de estadísticas de la base de datos" #: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:570 -#: ../../include/functions_reporting.php:14264 +#: ../../include/functions_reporting.php:14550 msgid "Total events" msgstr "Total de eventos" @@ -33900,12 +33865,12 @@ msgid "Update group" msgstr "Actualizar grupo" #: ../../godmode/groups/configure_group.php:108 -#: ../../godmode/groups/group_list.php:981 +#: ../../godmode/groups/group_list.php:986 msgid "Create group" msgstr "Crear grupo" #: ../../godmode/groups/configure_group.php:126 -#: ../../godmode/groups/group_list.php:384 +#: ../../godmode/groups/group_list.php:389 msgid "Manage agents group" msgstr "Administrar grupo de agentes" @@ -33940,7 +33905,7 @@ msgstr "" "de él." #: ../../godmode/groups/configure_group.php:246 -#: ../../include/functions_events.php:4876 +#: ../../include/functions_events.php:4855 msgid "Contact" msgstr "Contacto" @@ -33961,31 +33926,31 @@ msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "" "Establezca el máximo de agentes permitidos en este grupo. 0 es ilimitado." -#: ../../godmode/groups/group_list.php:309 +#: ../../godmode/groups/group_list.php:314 msgid "Tree Group view" msgstr "Vista de árbol de grupos" -#: ../../godmode/groups/group_list.php:333 +#: ../../godmode/groups/group_list.php:338 msgid "Credential Store" msgstr "Almacén de credenciales" -#: ../../godmode/groups/group_list.php:339 +#: ../../godmode/groups/group_list.php:344 #, php-format msgid "Groups defined in %s" msgstr "Grupos definidos en %s" -#: ../../godmode/groups/group_list.php:349 +#: ../../godmode/groups/group_list.php:354 #: ../../godmode/agentes/module_manager_editor_network.php:164 -#: ../../godmode/menu.php:220 ../../include/class/AgentWizard.class.php:722 +#: ../../godmode/menu.php:223 ../../include/class/AgentWizard.class.php:722 #: ../../include/class/AgentWizard.class.php:778 msgid "Credential store" msgstr "Almacén de credenciales" -#: ../../godmode/groups/group_list.php:365 +#: ../../godmode/groups/group_list.php:370 msgid "Edit or delete groups can cause problems with synchronization" msgstr "Editar o borrar grupos puede causar problemas con la sincronización." -#: ../../godmode/groups/group_list.php:403 +#: ../../godmode/groups/group_list.php:408 #, php-format msgid "" "This node is configured with centralized mode. All groups information is read " @@ -33994,43 +33959,43 @@ msgstr "" "Este nodo esta configurado con el modo centralizado. Toda la información de " "las políticas está en modo lectura. Vaya a %s para administrarlo." -#: ../../godmode/groups/group_list.php:468 +#: ../../godmode/groups/group_list.php:473 #: ../../godmode/groups/modu_group_list.php:119 msgid "Group successfully created" msgstr "Grupo creado correctamente" -#: ../../godmode/groups/group_list.php:470 +#: ../../godmode/groups/group_list.php:475 #: ../../godmode/groups/modu_group_list.php:122 msgid "There was a problem creating group" msgstr "Ha habido un problema al crear el grupo." -#: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:478 +#: ../../godmode/groups/group_list.php:550 msgid "Each group must have a different name" msgstr "Cada grupo debe tener un nombre diferente" -#: ../../godmode/groups/group_list.php:476 -#: ../../godmode/groups/group_list.php:548 +#: ../../godmode/groups/group_list.php:481 +#: ../../godmode/groups/group_list.php:553 msgid "Group must have a name" msgstr "El grupo debe tener un nombre" -#: ../../godmode/groups/group_list.php:540 +#: ../../godmode/groups/group_list.php:545 #: ../../godmode/groups/modu_group_list.php:155 msgid "Group successfully updated" msgstr "Grupo actualizado correctamente" -#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/group_list.php:547 #: ../../godmode/groups/modu_group_list.php:158 msgid "There was a problem modifying group" msgstr "Ha habido un problema al modificar el grupo" -#: ../../godmode/groups/group_list.php:605 +#: ../../godmode/groups/group_list.php:610 #, php-format msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "" "El grupo %s no puede ser borrado porque en el nodo se está usando en este grupo" -#: ../../godmode/groups/group_list.php:679 +#: ../../godmode/groups/group_list.php:684 msgid "" "The group has not been deleted in the metaconsole due to an error in the node " "database" @@ -34038,36 +34003,36 @@ msgstr "" "El grupo no se ha eliminado de la Metaconsola por un error en la base de datos " "de los nodos" -#: ../../godmode/groups/group_list.php:688 +#: ../../godmode/groups/group_list.php:693 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "El grupo %s se ha borrado de los nodos" -#: ../../godmode/groups/group_list.php:720 +#: ../../godmode/groups/group_list.php:725 #: ../../godmode/groups/modu_group_list.php:229 msgid "Group successfully deleted" msgstr "Grupo eliminado correctamente" -#: ../../godmode/groups/group_list.php:723 +#: ../../godmode/groups/group_list.php:728 #: ../../godmode/groups/modu_group_list.php:227 msgid "There was a problem deleting group" msgstr "Ha habido un problema al borrar el grupo." -#: ../../godmode/groups/group_list.php:730 +#: ../../godmode/groups/group_list.php:735 #, php-format msgid "The group is not empty. It is use in %s." msgstr "El grupo no está vacío. Está en uso en %s." -#: ../../godmode/groups/group_list.php:775 -#: ../../godmode/groups/group_list.php:969 +#: ../../godmode/groups/group_list.php:780 +#: ../../godmode/groups/group_list.php:974 msgid "There are no defined groups" msgstr "No hay grupos definidos" -#: ../../godmode/groups/group_list.php:924 +#: ../../godmode/groups/group_list.php:929 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "¿Está seguro? Este grupo también se borrará de todos los nodos." -#: ../../godmode/groups/group_list.php:930 +#: ../../godmode/groups/group_list.php:935 msgid "" "The child groups will be updated to use the parent id of the deleted group" msgstr "Los grupos hijo se actualizarán y usarán el id padre del grupo eliminado" @@ -34374,6 +34339,7 @@ msgid "Manage NCM" msgstr "Administrar NCM" #: ../../godmode/users/configure_profile.php:378 +#: ../../godmode/users/configure_user.php:321 msgid "Manage users" msgstr "Gestionar usuarios" @@ -34386,30 +34352,34 @@ msgstr "Gestionar la base de datos" msgid "%s management" msgstr "Gestión %s." +#: ../../godmode/users/configure_profile.php:454 +msgid "Profile name already on use, please, change the name before save" +msgstr "Nombre de perfil en uso, por favor, cambie el nombre antes de guardar" + #: ../../godmode/users/user_list.php:289 #, php-format msgid "Users defined on %s" msgstr "Usuarios definidos en %s" #: ../../godmode/users/user_list.php:338 -#: ../../godmode/users/configure_user.php:166 +#: ../../godmode/users/configure_user.php:162 #, php-format msgid "Deleted user %s" msgstr "Usuario eliminado %s" #: ../../godmode/users/user_list.php:345 ../../godmode/users/user_list.php:389 -#: ../../godmode/users/configure_user.php:173 +#: ../../godmode/users/configure_user.php:169 msgid "There was a problem deleting the user" msgstr "Error al borrar el usuario" #: ../../godmode/users/user_list.php:363 -#: ../../godmode/users/configure_user.php:188 +#: ../../godmode/users/configure_user.php:184 #, php-format msgid "Deleted user %s from metaconsole" msgstr "Usuario %s eliminado de la Metaconsola" #: ../../godmode/users/user_list.php:375 -#: ../../godmode/users/configure_user.php:199 +#: ../../godmode/users/configure_user.php:196 #, php-format msgid "Deleted user %s from %s" msgstr "Usuario %s eliminado de %s" @@ -34438,7 +34408,7 @@ msgstr "Error al deshabilitar el usuario" msgid "There was a problem enabling user" msgstr "Error al habilitar el usuario" -#: ../../godmode/users/user_list.php:492 ../../operation/users/user_edit.php:254 +#: ../../godmode/users/user_list.php:492 ../../operation/users/user_edit.php:261 #, php-format msgid "" "This node is configured with centralized mode. All users information is read " @@ -34472,54 +34442,53 @@ msgstr "" "perfiles no se muestran. No puede habilitar/deshabilitar o borrar este usuario." #: ../../godmode/users/user_list.php:783 -#: ../../include/functions_reporting.php:4773 -#: ../../include/functions_reporting.php:4820 ../../operation/search_users.php:87 +#: ../../include/functions_reporting.php:5036 +#: ../../include/functions_reporting.php:5083 ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "El usuario no tiene ningún perfil asignado." #: ../../godmode/users/user_list.php:933 -#: ../../godmode/users/configure_user.php:278 +#: ../../godmode/users/configure_user.php:308 msgid "Create user" msgstr "Crear usuario" #: ../../godmode/users/user_list.php:936 -#: ../../godmode/users/configure_user.php:386 +#: ../../godmode/users/configure_user.php:397 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "El sistema de autenticación no permite crear usuarios en %s." -#: ../../godmode/users/configure_user.php:276 +#: ../../godmode/users/configure_user.php:308 msgid "Update user" msgstr "Actualizar usuario" -#: ../../godmode/users/configure_user.php:314 -#: ../../operation/users/user_edit.php:31 -msgid "User detail editor" +#: ../../godmode/users/configure_user.php:325 +msgid "User Detail Editor" msgstr "Editor de detalles de usuario" -#: ../../godmode/users/configure_user.php:473 +#: ../../godmode/users/configure_user.php:487 msgid "User ID cannot be empty" msgstr "El ID de usuario no puede estar vacío." -#: ../../godmode/users/configure_user.php:480 +#: ../../godmode/users/configure_user.php:494 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "" "ID de usuario no válido: no están permitidos los espacios en blanco al " "principio o al final" -#: ../../godmode/users/configure_user.php:488 +#: ../../godmode/users/configure_user.php:502 msgid "Passwords cannot be empty" msgstr "Las contraseñas no pueden estar vacías." -#: ../../godmode/users/configure_user.php:495 +#: ../../godmode/users/configure_user.php:509 msgid "Passwords didn't match" msgstr "Las contraseñas no coinciden." -#: ../../godmode/users/configure_user.php:502 +#: ../../godmode/users/configure_user.php:516 msgid "The password provided is not valid. Please set another one." msgstr "La contraseña proporcionada no es válida. Por favor, introduzca otra." -#: ../../godmode/users/configure_user.php:564 +#: ../../godmode/users/configure_user.php:578 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." @@ -34527,108 +34496,142 @@ msgstr "" "ACL estricto no está recomendado para usuarios administradores porque el " "rendimiento podría verse afectado." -#: ../../godmode/users/configure_user.php:648 -#: ../../godmode/users/configure_user.php:981 +#: ../../godmode/users/configure_user.php:662 +#: ../../godmode/users/configure_user.php:998 msgid "Profile added successfully" msgstr "Perfil añadido correctamente" -#: ../../godmode/users/configure_user.php:649 -#: ../../godmode/users/configure_user.php:982 +#: ../../godmode/users/configure_user.php:663 +#: ../../godmode/users/configure_user.php:999 msgid "Profile cannot be added" msgstr "El perfil no se puede añadir." -#: ../../godmode/users/configure_user.php:773 -#: ../../godmode/users/configure_user.php:797 -#: ../../godmode/users/configure_user.php:871 -#: ../../godmode/users/configure_user.php:878 -#: ../../godmode/users/configure_user.php:910 -#: ../../operation/users/user_edit.php:187 -#: ../../operation/users/user_edit.php:232 +#: ../../godmode/users/configure_user.php:790 +#: ../../godmode/users/configure_user.php:814 +#: ../../godmode/users/configure_user.php:888 +#: ../../godmode/users/configure_user.php:895 +#: ../../godmode/users/configure_user.php:927 +#: ../../operation/users/user_edit.php:193 +#: ../../operation/users/user_edit.php:239 msgid "User info successfully updated" msgstr "Información del usuario actualizada correctamente" -#: ../../godmode/users/configure_user.php:774 -#: ../../godmode/users/configure_user.php:798 -#: ../../godmode/users/configure_user.php:872 -#: ../../godmode/users/configure_user.php:879 -#: ../../godmode/users/configure_user.php:911 +#: ../../godmode/users/configure_user.php:791 +#: ../../godmode/users/configure_user.php:815 +#: ../../godmode/users/configure_user.php:889 +#: ../../godmode/users/configure_user.php:896 +#: ../../godmode/users/configure_user.php:928 msgid "Error updating user info (no change?)" msgstr "Error al actualizar la información del usuario (¿no hubo cambios?)" -#: ../../godmode/users/configure_user.php:803 +#: ../../godmode/users/configure_user.php:820 msgid "Password of the active user is required to perform password change" msgstr "Se necesita la contraseña del usuario activo para cambiar la contraseña" -#: ../../godmode/users/configure_user.php:805 +#: ../../godmode/users/configure_user.php:822 msgid "Password of active user is not correct" msgstr "La contraseña del usuario activo no es correcta" -#: ../../godmode/users/configure_user.php:821 +#: ../../godmode/users/configure_user.php:838 msgid "Passwords does not match" msgstr "Las contraseñas no coinciden." -#: ../../godmode/users/configure_user.php:900 +#: ../../godmode/users/configure_user.php:888 +#: ../../operation/users/user_edit.php:191 +msgid "You have generated a new API Token." +msgstr "Ha generado un nuevo token de API." + +#: ../../godmode/users/configure_user.php:917 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "" "ACL estricto no está recomendado para este usuario. El rendimiento podría " "verse afectado." -#: ../../godmode/users/configure_user.php:1022 +#: ../../godmode/users/configure_user.php:1039 msgid "Update User" msgstr "Actualizar usuario" -#: ../../godmode/users/configure_user.php:1022 +#: ../../godmode/users/configure_user.php:1039 msgid "Create User" msgstr "Crear usuario" -#: ../../godmode/users/configure_user.php:1075 -#: ../../operation/users/user_edit.php:275 +#: ../../godmode/users/configure_user.php:1055 +#: ../../operation/users/user_edit.php:278 +msgid "" +"The API token will be renewed. After this action, the last token you were " +"using will not work. Are you sure?" +msgstr "" +"Se renovará el token de la API. Después de esta acción, el último token que " +"estabs usando no funcionará. ¿Está seguro?" + +#: ../../godmode/users/configure_user.php:1063 +#: ../../operation/users/user_edit.php:286 +msgid "Renew API Token" +msgstr "Renovar token de API" + +#: ../../godmode/users/configure_user.php:1076 +#: ../../operation/users/user_edit.php:311 +msgid "Your API Token is:" +msgstr "Su token de API es:" + +#: ../../godmode/users/configure_user.php:1076 +#: ../../operation/users/user_edit.php:311 +msgid "Please, avoid share this string with others." +msgstr "Por favor, evite compartir esta cadena con otros." + +#: ../../godmode/users/configure_user.php:1083 +#: ../../operation/users/user_edit.php:318 +msgid "Show API Token" +msgstr "Mostrar token de API" + +#: ../../godmode/users/configure_user.php:1134 +#: ../../operation/users/user_edit.php:349 msgid "Full (display) name" msgstr "Nombre completo" -#: ../../godmode/users/configure_user.php:1092 +#: ../../godmode/users/configure_user.php:1151 #: ../../godmode/massive/massive_edit_users.php:470 -#: ../../operation/users/user_edit.php:422 +#: ../../operation/users/user_edit.php:496 msgid "Timezone" msgstr "Zona horaria" -#: ../../godmode/users/configure_user.php:1093 +#: ../../godmode/users/configure_user.php:1152 #: ../../godmode/massive/massive_edit_users.php:470 -#: ../../operation/users/user_edit.php:422 +#: ../../operation/users/user_edit.php:496 msgid "The timezone must be that of the associated server." msgstr "La zona horaria debe ser la del servidor asociado." -#: ../../godmode/users/configure_user.php:1126 -#: ../../operation/users/user_edit.php:302 +#: ../../godmode/users/configure_user.php:1185 +#: ../../operation/users/user_edit.php:376 msgid "Password confirmation" msgstr "Confirmar contraseña" -#: ../../godmode/users/configure_user.php:1144 +#: ../../godmode/users/configure_user.php:1203 msgid "Own password confirmation" msgstr "Confirmación de contraseña propia" -#: ../../godmode/users/configure_user.php:1154 +#: ../../godmode/users/configure_user.php:1213 msgid "Administrator user" msgstr "Usuario administrador" -#: ../../godmode/users/configure_user.php:1181 -#: ../../operation/users/user_edit.php:295 +#: ../../godmode/users/configure_user.php:1240 +#: ../../operation/users/user_edit.php:369 msgid "E-mail" msgstr "Correo electrónico" -#: ../../godmode/users/configure_user.php:1197 -#: ../../operation/users/user_edit.php:297 +#: ../../godmode/users/configure_user.php:1256 +#: ../../operation/users/user_edit.php:371 msgid "Phone number" msgstr "Número de teléfono" -#: ../../godmode/users/configure_user.php:1213 -#: ../../operation/users/user_edit.php:619 +#: ../../godmode/users/configure_user.php:1272 +#: ../../operation/users/user_edit.php:693 msgid "Login allowed IP list" msgstr "Lista de IP permitidas para iniciar sesión" -#: ../../godmode/users/configure_user.php:1214 -#: ../../operation/users/user_edit.php:620 +#: ../../godmode/users/configure_user.php:1273 +#: ../../operation/users/user_edit.php:694 msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." @@ -34636,34 +34639,32 @@ msgstr "" "Agregue las direcciones IP de origen que permitirán el acceso a la consola. " "Cada IP debe estar separada solo por comas. * permite todo." -#: ../../godmode/users/configure_user.php:1252 -#: ../../operation/users/user_edit.php:404 -#: ../../operation/users/user_edit.php:413 +#: ../../godmode/users/configure_user.php:1311 msgid "Skin" msgstr "Apariencia" -#: ../../godmode/users/configure_user.php:1261 +#: ../../godmode/users/configure_user.php:1320 msgid "Search custom field view" msgstr "Buscar vista de campo personalizado" -#: ../../godmode/users/configure_user.php:1261 +#: ../../godmode/users/configure_user.php:1320 msgid "Load by default the selected view in custom field view" msgstr "" "Cargar por defecto la vista seleccionada en la vista de campo personalizado" -#: ../../godmode/users/configure_user.php:1278 +#: ../../godmode/users/configure_user.php:1337 msgid "Use global conf" msgstr "Usar configuración global" -#: ../../godmode/users/configure_user.php:1283 +#: ../../godmode/users/configure_user.php:1342 #: ../../godmode/massive/massive_edit_users.php:271 -#: ../../operation/users/user_edit.php:357 +#: ../../operation/users/user_edit.php:431 msgid "Home screen" msgstr "Pantalla de inicio" -#: ../../godmode/users/configure_user.php:1284 +#: ../../godmode/users/configure_user.php:1343 #: ../../godmode/massive/massive_edit_users.php:271 -#: ../../operation/users/user_edit.php:357 +#: ../../operation/users/user_edit.php:431 msgid "" "User can customize the home page. By default, will display 'Agent Detail'. " "Example: Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/" @@ -34674,41 +34675,41 @@ msgstr "" "sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 para mostrar la vista " "de detalle de agente" -#: ../../godmode/users/configure_user.php:1291 +#: ../../godmode/users/configure_user.php:1350 #: ../../godmode/massive/massive_edit_users.php:276 -#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:361 +#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:435 #: ../../operation/events/events.php:1438 msgid "Event list" msgstr "Lista de eventos" -#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/configure_user.php:1353 #: ../../godmode/massive/massive_edit_users.php:279 -#: ../../operation/users/user_edit.php:364 +#: ../../operation/users/user_edit.php:438 #: ../../operation/agentes/alerts_status.php:190 ../../operation/menu.php:68 msgid "Alert detail" msgstr "Detalle de alertas" -#: ../../godmode/users/configure_user.php:1295 +#: ../../godmode/users/configure_user.php:1354 msgid "External link" msgstr "Enlace externo" -#: ../../godmode/users/configure_user.php:1388 +#: ../../godmode/users/configure_user.php:1447 msgid "Metaconsole access" msgstr "Acceso a la Metaconsola" -#: ../../godmode/users/configure_user.php:1406 +#: ../../godmode/users/configure_user.php:1465 msgid "Not Login" msgstr "No se inicia la sesión" -#: ../../godmode/users/configure_user.php:1408 +#: ../../godmode/users/configure_user.php:1467 msgid "The user with not login set only can access to API." msgstr "El usuario sin permiso de acceso solo puede tener acceso a la API." -#: ../../godmode/users/configure_user.php:1418 +#: ../../godmode/users/configure_user.php:1477 msgid "Local user" msgstr "Usuario local" -#: ../../godmode/users/configure_user.php:1420 +#: ../../godmode/users/configure_user.php:1479 msgid "" "The user with local authentication enabled will always use local " "authentication." @@ -34716,11 +34717,11 @@ msgstr "" "El usuario con la autenticación local habilitada siempre utilizará la " "autenticación local." -#: ../../godmode/users/configure_user.php:1430 +#: ../../godmode/users/configure_user.php:1489 msgid "Session Time" msgstr "TIempo de sesión" -#: ../../godmode/users/configure_user.php:1432 +#: ../../godmode/users/configure_user.php:1491 msgid "" "This is defined in minutes, If you wish a permanent session should putting -1 " "in this field." @@ -34728,69 +34729,69 @@ msgstr "" "Esto está definido en minutos; si quieres una sesión permanente, pon -1 en " "este campo." -#: ../../godmode/users/configure_user.php:1466 +#: ../../godmode/users/configure_user.php:1524 msgid "Default event filter" msgstr "Filtro de evento por defecto" -#: ../../godmode/users/configure_user.php:1480 +#: ../../godmode/users/configure_user.php:1538 msgid "eHorus user access enabled" msgstr "Acceso de usuario eHorus habilitado" -#: ../../godmode/users/configure_user.php:1488 -#: ../../include/functions_config.php:1741 +#: ../../godmode/users/configure_user.php:1546 +#: ../../include/functions_config.php:1722 msgid "eHorus user" msgstr "Usuario de eHorus" -#: ../../godmode/users/configure_user.php:1497 -#: ../../include/functions_config.php:1745 +#: ../../godmode/users/configure_user.php:1555 +#: ../../include/functions_config.php:1726 msgid "eHorus password" msgstr "Contraseña de eHorus" -#: ../../godmode/users/configure_user.php:1520 +#: ../../godmode/users/configure_user.php:1578 msgid "User must be created before activating double authentication." msgstr "El usuario debe estar creado antes de activar la doble autenticación." -#: ../../godmode/users/configure_user.php:1530 -#: ../../operation/users/user_edit.php:440 +#: ../../godmode/users/configure_user.php:1588 +#: ../../operation/users/user_edit.php:514 msgid "Show information" msgstr "Mostrar información" -#: ../../godmode/users/configure_user.php:1548 +#: ../../godmode/users/configure_user.php:1606 msgid "Enable agents managment" msgstr "Habilitar gestión de agentes" -#: ../../godmode/users/configure_user.php:1556 +#: ../../godmode/users/configure_user.php:1614 msgid "Enable node access" msgstr "Habilitar el acceso al nodo" -#: ../../godmode/users/configure_user.php:1556 +#: ../../godmode/users/configure_user.php:1614 msgid "With this option enabled, the user will can access to nodes console" msgstr "" "Con esta opción habilitada, el usuario podrá tener acceso a los nodos de la " "consola." -#: ../../godmode/users/configure_user.php:1791 +#: ../../godmode/users/configure_user.php:1854 msgid "yes" msgstr "sí" -#: ../../godmode/users/configure_user.php:1794 +#: ../../godmode/users/configure_user.php:1857 msgid "no" msgstr "no" -#: ../../godmode/users/configure_user.php:1798 +#: ../../godmode/users/configure_user.php:1861 msgid "Please select profile and group" msgstr "Seleccione un perfil y grupo" -#: ../../godmode/users/configure_user.php:1812 -#: ../../godmode/users/configure_user.php:1863 +#: ../../godmode/users/configure_user.php:1875 +#: ../../godmode/users/configure_user.php:1926 msgid "This profile is already defined" msgstr "Este perfil ya está definido" -#: ../../godmode/users/configure_user.php:1875 +#: ../../godmode/users/configure_user.php:1940 msgid "Deleting last profile will delete this user" msgstr "Eliminar el último perfil eliminará este usuario" -#: ../../godmode/users/configure_user.php:1915 +#: ../../godmode/users/configure_user.php:1980 msgid "" "User will be created without profiles assigned and won't be able to log in, " "are you sure?" @@ -34798,35 +34799,35 @@ msgstr "" "El usuario se creará sin perfiles asignados y no podrá identificarse, ¿está " "seguro?" -#: ../../godmode/users/configure_user.php:2082 -#: ../../operation/users/user_edit.php:1104 +#: ../../godmode/users/configure_user.php:2147 +#: ../../operation/users/user_edit.php:1178 msgid "Double autentication information" msgstr "Información sobre la doble autentificación" -#: ../../godmode/users/configure_user.php:2172 -#: ../../operation/users/user_edit.php:1193 +#: ../../godmode/users/configure_user.php:2237 +#: ../../operation/users/user_edit.php:1267 msgid "The double authentication will be deactivated" msgstr "La doble autentificación se desactivará" -#: ../../godmode/users/configure_user.php:2173 -#: ../../operation/users/user_edit.php:1194 +#: ../../godmode/users/configure_user.php:2238 +#: ../../operation/users/user_edit.php:1268 msgid "Deactivate" msgstr "Desactivado" -#: ../../godmode/users/configure_user.php:2209 -#: ../../operation/users/user_edit.php:1226 +#: ../../godmode/users/configure_user.php:2274 +#: ../../operation/users/user_edit.php:1300 msgid "The double autentication was deactivated successfully" msgstr "La doble autentificación fue desactivada correctamente" -#: ../../godmode/users/configure_user.php:2213 -#: ../../godmode/users/configure_user.php:2217 -#: ../../operation/users/user_edit.php:1229 -#: ../../operation/users/user_edit.php:1233 +#: ../../godmode/users/configure_user.php:2278 +#: ../../godmode/users/configure_user.php:2282 +#: ../../operation/users/user_edit.php:1303 +#: ../../operation/users/user_edit.php:1307 msgid "There was an error deactivating the double autentication" msgstr "Error al desactivar la doble autentificación" #: ../../godmode/agentes/agent_template.php:67 -#: ../../include/functions_api.php:15025 +#: ../../include/functions_api.php:15030 msgid "Created by template " msgstr "Creado mediante la plantilla " @@ -34839,7 +34840,7 @@ msgid "Error adding modules. The following errors already exists: " msgstr "Error al añadir los módulos. Ocurrieron los siguientes errores: " #: ../../godmode/agentes/agent_template.php:163 -#: ../../include/functions_api.php:15119 +#: ../../include/functions_api.php:15124 msgid "Modules successfully added" msgstr "Módulos añadidos correctamente" @@ -34847,7 +34848,7 @@ msgstr "Módulos añadidos correctamente" msgid "Assign" msgstr "Asignar" -#: ../../godmode/agentes/agent_template.php:269 +#: ../../godmode/agentes/agent_template.php:270 #: ../../mobile/operation/modules.php:772 msgid "No modules" msgstr "Sin módulos" @@ -34931,7 +34932,7 @@ msgid "Show monitor detail fields" msgstr "Mostrar campo de detalle de monitor" #: ../../godmode/agentes/configurar_agente.php:254 -#: ../../godmode/agentes/configurar_agente.php:1069 +#: ../../godmode/agentes/configurar_agente.php:1082 msgid "No agent alias specified" msgstr "No se ha especificado el alias del agente" @@ -34949,96 +34950,96 @@ msgstr "No se pudo crear, el nombre ya existe." msgid "Could not be created, because IP already exists" msgstr "No se ha podido crear porque la IP ya existe" -#: ../../godmode/agentes/configurar_agente.php:449 ../../godmode/menu.php:173 +#: ../../godmode/agentes/configurar_agente.php:449 ../../godmode/menu.php:174 #: ../../godmode/wizards/HostDevices.class.php:1081 msgid "Module templates" msgstr "Plantillas de módulos" -#: ../../godmode/agentes/configurar_agente.php:521 -#: ../../operation/agentes/ver_agente.php:1499 +#: ../../godmode/agentes/configurar_agente.php:534 +#: ../../operation/agentes/ver_agente.php:1517 msgid "GIS data" msgstr "Datos GIS" -#: ../../godmode/agentes/configurar_agente.php:593 -#: ../../godmode/agentes/configurar_agente.php:761 -#: ../../operation/agentes/ver_agente.php:1519 ../../operation/menu.php:502 +#: ../../godmode/agentes/configurar_agente.php:606 +#: ../../godmode/agentes/configurar_agente.php:774 +#: ../../operation/agentes/ver_agente.php:1537 ../../operation/menu.php:506 #: ../../operation/incidents/incident_statistics.php:21 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "Incidentes" -#: ../../godmode/agentes/configurar_agente.php:756 +#: ../../godmode/agentes/configurar_agente.php:769 msgid "Gis" msgstr "GIS" -#: ../../godmode/agentes/configurar_agente.php:798 +#: ../../godmode/agentes/configurar_agente.php:811 msgid "SNMP explorer" msgstr "Explorador SNMP" -#: ../../godmode/agentes/configurar_agente.php:829 -#: ../../godmode/agentes/configurar_agente.php:851 -#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:128 +#: ../../godmode/agentes/configurar_agente.php:842 +#: ../../godmode/agentes/configurar_agente.php:864 +#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:129 msgid "Resources" msgstr "Recursos" -#: ../../godmode/agentes/configurar_agente.php:839 +#: ../../godmode/agentes/configurar_agente.php:852 msgid "Agent manager" msgstr "Administrador de agente" -#: ../../godmode/agentes/configurar_agente.php:879 +#: ../../godmode/agentes/configurar_agente.php:892 #: ../../godmode/servers/modificar_server.php:248 msgid "Conf file deleted successfully" msgstr "Archivo de configuración borrado correctamente" -#: ../../godmode/agentes/configurar_agente.php:880 +#: ../../godmode/agentes/configurar_agente.php:893 #: ../../godmode/servers/modificar_server.php:249 msgid "Could not delete conf file" msgstr "No se puede borrar el archivo de configuración" -#: ../../godmode/agentes/configurar_agente.php:897 -#: ../../godmode/agentes/configurar_agente.php:1064 +#: ../../godmode/agentes/configurar_agente.php:910 +#: ../../godmode/agentes/configurar_agente.php:1077 #: ../../include/class/ExternalTools.class.php:756 msgid "The ip or dns name entered cannot be resolved" msgstr "La IP o nombre del DNS no se puede resolver" -#: ../../godmode/agentes/configurar_agente.php:924 -#: ../../godmode/agentes/configurar_agente.php:928 +#: ../../godmode/agentes/configurar_agente.php:937 +#: ../../godmode/agentes/configurar_agente.php:941 msgid "No data to normalize" msgstr "No hay datos para normalizar" -#: ../../godmode/agentes/configurar_agente.php:933 +#: ../../godmode/agentes/configurar_agente.php:946 #, php-format msgid "Deleted data above %f" msgstr "Eliminar datos por encima de %f" -#: ../../godmode/agentes/configurar_agente.php:934 +#: ../../godmode/agentes/configurar_agente.php:947 #, php-format msgid "Error normalizing module %s" msgstr "Error al normalizar el módulo %s" -#: ../../godmode/agentes/configurar_agente.php:1080 +#: ../../godmode/agentes/configurar_agente.php:1093 #, php-format msgid "The group id %d is incorrect." msgstr "El grupo id %d es incorrecto." -#: ../../godmode/agentes/configurar_agente.php:1082 +#: ../../godmode/agentes/configurar_agente.php:1095 msgid "Agent cannot be updated due to the maximum agent limit for this group" msgstr "" "El agente no se puede actualizar por el límite máximo de agentes de este grupo" -#: ../../godmode/agentes/configurar_agente.php:1084 +#: ../../godmode/agentes/configurar_agente.php:1097 msgid "Duplicate main IP address" msgstr "Duplicar la dirección IP principal" -#: ../../godmode/agentes/configurar_agente.php:1138 +#: ../../godmode/agentes/configurar_agente.php:1151 msgid "There was a problem updating the agent" msgstr "Hubo un problema al actualizar el agente" -#: ../../godmode/agentes/configurar_agente.php:1231 +#: ../../godmode/agentes/configurar_agente.php:1244 msgid "There was a problem loading the agent" msgstr "Hubo un problema al cargar el agente" -#: ../../godmode/agentes/configurar_agente.php:1745 +#: ../../godmode/agentes/configurar_agente.php:1758 msgid "" "There was a problem updating module. Another module already exists with the " "same name." @@ -35046,26 +35047,26 @@ msgstr "" "Hubo un problema al actualizar el módulo. Ya existe otro módulo con el mismo " "nombre." -#: ../../godmode/agentes/configurar_agente.php:1749 +#: ../../godmode/agentes/configurar_agente.php:1762 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" "Hubo un problema al actualizar el módulo. Faltan algunos campos requeridos: " "(nombre)" -#: ../../godmode/agentes/configurar_agente.php:1753 +#: ../../godmode/agentes/configurar_agente.php:1766 msgid "There was a problem updating module. \"No change\"" msgstr "Hubo un problema al actualizar el módulo. \"Sin cambios\"." -#: ../../godmode/agentes/configurar_agente.php:1759 +#: ../../godmode/agentes/configurar_agente.php:1772 msgid "There was a problem updating module. Processing error" msgstr "Hubo un problema al actualizar el módulo. Error de procesamiento." -#: ../../godmode/agentes/configurar_agente.php:1788 +#: ../../godmode/agentes/configurar_agente.php:1801 msgid "Module successfully updated" msgstr "Módulo actualizado correctamente" -#: ../../godmode/agentes/configurar_agente.php:1936 +#: ../../godmode/agentes/configurar_agente.php:1949 msgid "" "There was a problem adding module. Another module already exists with the same " "name." @@ -35073,50 +35074,50 @@ msgstr "" "Hubo un problema al añadir el módulo. Ya existe otro módulo con el mismo " "nombre." -#: ../../godmode/agentes/configurar_agente.php:1940 +#: ../../godmode/agentes/configurar_agente.php:1953 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" "Hubo un problema al añadir el módulo. Faltan algunos campos requeridos: " "(nombre)" -#: ../../godmode/agentes/configurar_agente.php:1946 +#: ../../godmode/agentes/configurar_agente.php:1959 msgid "There was a problem adding module. Processing error" msgstr "Hubo un problema al añadir el módulo. Error de procesamiento." -#: ../../godmode/agentes/configurar_agente.php:1975 +#: ../../godmode/agentes/configurar_agente.php:1988 #: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "Módulo añadido correctamente" -#: ../../godmode/agentes/configurar_agente.php:2126 +#: ../../godmode/agentes/configurar_agente.php:2142 msgid "There was a problem deleting the module" msgstr "Hubo un problema al borrar el módulo" -#: ../../godmode/agentes/configurar_agente.php:2130 +#: ../../godmode/agentes/configurar_agente.php:2146 msgid "Module deleted succesfully" msgstr "Módulo borrado correctamente" -#: ../../godmode/agentes/configurar_agente.php:2269 -#: ../../include/functions_api.php:11167 +#: ../../godmode/agentes/configurar_agente.php:2285 +#: ../../include/functions_api.php:11172 #, php-format msgid "Save by %s Console" msgstr "Guardar por consola de %s" -#: ../../godmode/agentes/configurar_agente.php:2287 -#: ../../include/functions_api.php:11168 +#: ../../godmode/agentes/configurar_agente.php:2303 +#: ../../include/functions_api.php:11173 #, php-format msgid "Update by %s Console" msgstr "Actualizar por consola de %s" -#: ../../godmode/agentes/configurar_agente.php:2303 -#: ../../include/functions_api.php:11169 +#: ../../godmode/agentes/configurar_agente.php:2319 +#: ../../include/functions_api.php:11174 #, php-format msgid "Insert by %s Console" msgstr "Insertar por consola de %s" -#: ../../godmode/agentes/configurar_agente.php:2376 -#: ../../godmode/agentes/configurar_agente.php:2388 +#: ../../godmode/agentes/configurar_agente.php:2392 +#: ../../godmode/agentes/configurar_agente.php:2408 msgid "Invalid tab specified" msgstr "La pestaña no es válida" @@ -35195,6 +35196,14 @@ msgstr "" msgid "Please select a file before clicking Load" msgstr "Seleccione un archivo antes de hacer clic en Cargar" +#: ../../godmode/agentes/inventory_manager.php:110 +msgid "Successfully forced inventory module" +msgstr "Módulo del inventario forzado correctamente" + +#: ../../godmode/agentes/inventory_manager.php:112 +msgid "Error forcing inventory module" +msgstr "Error al forzar un módulo del inventario" + #: ../../godmode/agentes/modificar_agente.php:95 #, php-format msgid "Agents defined in %s" @@ -35326,7 +35335,7 @@ msgstr "Todos los módulos" #: ../../godmode/agentes/planned_downtime.list.php:211 #: ../../godmode/agentes/planned_downtime.editor.php:68 -#: ../../include/functions_reporting_html.php:883 +#: ../../include/functions_reporting_html.php:884 #: ../../include/functions_reporting_html.php:4805 msgid "Scheduled Downtime" msgstr "Parada planificada" @@ -35426,8 +35435,8 @@ msgstr "" "de inactividad." #: ../../godmode/agentes/planned_downtime.editor.php:254 -#: ../../include/functions_planned_downtimes.php:40 -#: ../../include/functions_planned_downtimes.php:759 +#: ../../include/functions_planned_downtimes.php:41 +#: ../../include/functions_planned_downtimes.php:760 msgid "" "Not created. Error inserting data. Start time must be higher than the current " "time" @@ -35439,45 +35448,45 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:262 #: ../../godmode/agentes/planned_downtime.editor.php:270 #: ../../godmode/agentes/planned_downtime.editor.php:274 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:764 -#: ../../include/functions_planned_downtimes.php:771 -#: ../../include/functions_planned_downtimes.php:779 -#: ../../include/functions_planned_downtimes.php:787 -#: ../../include/functions_planned_downtimes.php:792 -#: ../../include/functions_planned_downtimes.php:797 -#: ../../include/functions_planned_downtimes.php:802 -#: ../../include/functions_planned_downtimes.php:807 -#: ../../include/functions_planned_downtimes.php:812 -#: ../../include/functions_planned_downtimes.php:817 +#: ../../include/functions_planned_downtimes.php:43 +#: ../../include/functions_planned_downtimes.php:48 +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:765 +#: ../../include/functions_planned_downtimes.php:772 +#: ../../include/functions_planned_downtimes.php:780 +#: ../../include/functions_planned_downtimes.php:788 +#: ../../include/functions_planned_downtimes.php:793 +#: ../../include/functions_planned_downtimes.php:798 +#: ../../include/functions_planned_downtimes.php:803 +#: ../../include/functions_planned_downtimes.php:808 +#: ../../include/functions_planned_downtimes.php:813 +#: ../../include/functions_planned_downtimes.php:818 msgid "Not created. Error inserting data" msgstr "No se pudo crear. Error al insertar los datos." #: ../../godmode/agentes/planned_downtime.editor.php:258 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:771 +#: ../../include/functions_planned_downtimes.php:43 +#: ../../include/functions_planned_downtimes.php:772 msgid "The end date must be higher than the start date" msgstr "La fecha de fin debe ser posterior a la fecha de inicio." #: ../../godmode/agentes/planned_downtime.editor.php:262 -#: ../../include/functions_planned_downtimes.php:764 +#: ../../include/functions_planned_downtimes.php:765 msgid "The end date must be higher than the current time" msgstr "La fecha fin debería ser posterior a la fecha actual." #: ../../godmode/agentes/planned_downtime.editor.php:270 #: ../../godmode/agentes/planned_downtime.editor.php:992 #: ../../godmode/agentes/planned_downtime.editor.php:1005 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:779 +#: ../../include/functions_planned_downtimes.php:48 +#: ../../include/functions_planned_downtimes.php:780 msgid "The end time must be higher than the start time" msgstr "La hora de fin debe ser posterior a la fecha de inicio." #: ../../godmode/agentes/planned_downtime.editor.php:274 #: ../../godmode/agentes/planned_downtime.editor.php:977 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:787 +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:788 msgid "The end day must be higher than the start day" msgstr "El día de fin debe ser posterior el día de inicio." @@ -35532,15 +35541,15 @@ msgid "Downtime stop cron expression is not correct" msgstr "La expresión cron de parada de tiempo de inactividad no es correcta" #: ../../godmode/agentes/planned_downtime.editor.php:530 -#: ../../include/functions_planned_downtimes.php:98 -#: ../../include/functions_planned_downtimes.php:831 +#: ../../include/functions_planned_downtimes.php:99 +#: ../../include/functions_planned_downtimes.php:832 msgid "Each scheduled downtime must have a different name" msgstr "Cada tiempo de inactividad programado debe tener un nombre diferente" #: ../../godmode/agentes/planned_downtime.editor.php:535 #: ../../godmode/agentes/planned_downtime.editor.php:568 -#: ../../include/functions_planned_downtimes.php:103 -#: ../../include/functions_planned_downtimes.php:837 +#: ../../include/functions_planned_downtimes.php:104 +#: ../../include/functions_planned_downtimes.php:838 msgid "Scheduled downtime must have a name" msgstr "La parada de servicio planeada debe tener un nombre." @@ -35566,15 +35575,15 @@ msgid "Cron from/to" msgstr "Cron desde/hasta" #: ../../godmode/agentes/planned_downtime.editor.php:904 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5717 +#: ../../include/functions_reporting_html.php:87 +#: ../../include/functions_reporting_html.php:5736 #: ../../include/ajax/alert_list.ajax.php:592 msgid "From:" msgstr "Desde:" #: ../../godmode/agentes/planned_downtime.editor.php:908 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5717 +#: ../../include/functions_reporting_html.php:87 +#: ../../include/functions_reporting_html.php:5736 #: ../../include/ajax/alert_list.ajax.php:606 msgid "To:" msgstr "Hasta:" @@ -35638,7 +35647,7 @@ msgstr "Añadir módulo:" msgid "Please select a module." msgstr "Por favor, seleccione un módulo." -#: ../../godmode/agentes/planned_downtime.editor.php:1890 +#: ../../godmode/agentes/planned_downtime.editor.php:1894 msgid "" "WARNING: If you edit this scheduled downtime, the data of future SLA reports " "may be altered" @@ -35737,7 +35746,7 @@ msgid "Use alias as name" msgstr "Usar el alias como nombre" #: ../../godmode/agentes/agent_manager.php:304 -#: ../../godmode/setup/setup_general.php:459 +#: ../../godmode/setup/setup_general.php:540 #: ../../include/functions_config.php:368 msgid "Unique IP" msgstr "IP única" @@ -35808,8 +35817,8 @@ msgstr "Modo deshabilitado" #: ../../godmode/agentes/agent_manager.php:662 #: ../../godmode/agentes/agent_manager.php:679 -#: ../../include/functions_treeview.php:757 -#: ../../operation/agentes/ver_agente.php:1538 +#: ../../include/functions_treeview.php:752 +#: ../../operation/agentes/ver_agente.php:1556 #: ../../operation/agentes/estado_generalagente.php:495 msgid "Url address" msgstr "Dirección URL" @@ -36021,108 +36030,104 @@ msgstr "Añadir relación" msgid "Changes" msgstr "Cambios" -#: ../../godmode/agentes/module_manager.php:121 +#: ../../godmode/agentes/module_manager.php:120 msgid "Create a new data server module" msgstr "Crear un nuevo módulo de servidor de datos" -#: ../../godmode/agentes/module_manager.php:123 +#: ../../godmode/agentes/module_manager.php:122 msgid "Create a new network server module" msgstr "Crear un nuevo módulo de servidor de red" -#: ../../godmode/agentes/module_manager.php:127 +#: ../../godmode/agentes/module_manager.php:126 msgid "Create a new plugin server module" msgstr "Crear un nuevo módulo de servidor de complementos" -#: ../../godmode/agentes/module_manager.php:131 +#: ../../godmode/agentes/module_manager.php:130 msgid "Create a new WMI server module" msgstr "Crear un nuevo módulo de servidor WMI" -#: ../../godmode/agentes/module_manager.php:135 +#: ../../godmode/agentes/module_manager.php:134 msgid "Create a new prediction server module" msgstr "Crear un nuevo módulo de servidor de predicción" -#: ../../godmode/agentes/module_manager.php:139 +#: ../../godmode/agentes/module_manager.php:138 msgid "Create a new web Server module" msgstr "Crear un nuevo módulo de servidor web" -#: ../../godmode/agentes/module_manager.php:183 +#: ../../godmode/agentes/module_manager.php:182 #: ../../operation/agentes/estado_monitores.php:582 msgid "Show in hierachy mode" msgstr "Mostrar en modo jerarquía" -#: ../../godmode/agentes/module_manager.php:202 -msgid "

Type

" -msgstr "

Tipo

" - -#: ../../godmode/agentes/module_manager.php:232 +#: ../../godmode/agentes/module_manager.php:231 msgid "Get more modules on Monitoring Library" msgstr "Añadir más módulos de la Librería de módulos" -#: ../../godmode/agentes/module_manager.php:271 +#: ../../godmode/agentes/module_manager.php:272 msgid "There was a problem completing the operation" msgstr "Hubo un problema al completar la operación" -#: ../../godmode/agentes/module_manager.php:428 -#: ../../godmode/agentes/module_manager.php:474 -#: ../../godmode/agentes/module_manager.php:520 +#: ../../godmode/agentes/module_manager.php:429 +#: ../../godmode/agentes/module_manager.php:475 +#: ../../godmode/agentes/module_manager.php:521 #, php-format msgid "There was a problem completing the operation. Applied to 0/%d modules." msgstr "" "Ha habido un problema al completar la operación. Aplicado a los módulos 0/%d." -#: ../../godmode/agentes/module_manager.php:434 -#: ../../godmode/agentes/module_manager.php:480 -#: ../../godmode/agentes/module_manager.php:526 +#: ../../godmode/agentes/module_manager.php:435 +#: ../../godmode/agentes/module_manager.php:481 +#: ../../godmode/agentes/module_manager.php:527 msgid "Operation finished successfully." msgstr "Operación concluida correctamente." -#: ../../godmode/agentes/module_manager.php:438 -#: ../../godmode/agentes/module_manager.php:484 -#: ../../godmode/agentes/module_manager.php:530 +#: ../../godmode/agentes/module_manager.php:439 +#: ../../godmode/agentes/module_manager.php:485 +#: ../../godmode/agentes/module_manager.php:531 #, php-format msgid "There was a problem completing the operation. Applied to %d/%d modules." msgstr "" "Ha habido un problema al completar la operación. Aplicado a los módulos %d/%d." -#: ../../godmode/agentes/module_manager.php:836 +#: ../../godmode/agentes/module_manager.php:837 #: ../../godmode/reporting/map_builder.php:452 #: ../../godmode/reporting/map_builder.php:469 ../../include/ajax/module.php:573 #: ../../operation/agentes/datos_agente.php:295 msgid "No available data to show" msgstr "No hay datos disponibles para mostrar" -#: ../../godmode/agentes/module_manager.php:910 +#: ../../godmode/agentes/module_manager.php:911 msgid "Del." msgstr "Del." -#: ../../godmode/agentes/module_manager.php:1050 +#: ../../godmode/agentes/module_manager.php:1051 msgid "Module in scheduled downtime" msgstr "Módulo en tiempo de inactividad programado" -#: ../../godmode/agentes/module_manager.php:1102 -#: ../../godmode/agentes/module_manager.php:1110 +#: ../../godmode/agentes/module_manager.php:1103 +#: ../../godmode/agentes/module_manager.php:1111 #: ../../include/ajax/module.php:1097 ../../include/ajax/module.php:1105 msgid "Adopted" msgstr "Adoptado" -#: ../../godmode/agentes/module_manager.php:1240 +#: ../../godmode/agentes/module_manager.php:1245 msgid "Normalize" msgstr "Normalizar" -#: ../../godmode/agentes/module_manager.php:1250 +#: ../../godmode/agentes/module_manager.php:1255 msgid "Normalize (Disabled)" msgstr "Normalizar (deshabilitado)" -#: ../../godmode/agentes/module_manager.php:1265 +#: ../../godmode/agentes/module_manager.php:1270 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "Crear componentes de red" -#: ../../godmode/agentes/module_manager.php:1274 +#: ../../godmode/agentes/module_manager.php:1279 msgid "Create network component (Disabled)" msgstr "Crear componentes de red (desactivado)" -#: ../../godmode/agentes/module_manager.php:1337 +#: ../../godmode/agentes/module_manager.php:1342 #: ../../include/class/SatelliteAgent.class.php:245 msgid "Execute action" msgstr "Ejecutar acción" @@ -36170,7 +36175,7 @@ msgstr "Filtro de gestión Netflow" #: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63 #: ../../godmode/netflow/nf_edit_form.php:73 -#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:122 +#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:123 msgid "Netflow filters" msgstr "Filtros Netflow" @@ -36194,8 +36199,8 @@ msgstr "Filtro Netflow" #: ../../godmode/netflow/nf_edit_form.php:188 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:774 -#: ../../include/ajax/events.php:834 +#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:775 +#: ../../include/ajax/events.php:835 msgid "Update filter" msgstr "Actualizar filtro" @@ -36405,8 +36410,8 @@ msgid "Custom Value/Enterprise String" msgstr "Valor personalizado/Cadena Enterprise" #: ../../godmode/snmpconsole/snmp_alert.php:1271 -#: ../../include/functions_reporting_html.php:5267 -#: ../../include/functions_reporting_html.php:5389 +#: ../../include/functions_reporting_html.php:5286 +#: ../../include/functions_reporting_html.php:5408 #: ../../include/functions_treeview.php:454 msgid "Times fired" msgstr "Nº de veces disparada" @@ -36419,11 +36424,6 @@ msgstr "TF." msgid "ID Alert SNMP" msgstr "ID alerta SNMP" -#: ../../godmode/snmpconsole/snmp_alert.php:1545 -#: ../../godmode/snmpconsole/snmp_alert.php:1560 -msgid "Confirmation" -msgstr "Confirmación" - #: ../../godmode/snmpconsole/snmp_alert.php:1546 msgid "Do you want delete this alert?" msgstr "¿Desea eliminar esta alerta?" @@ -36432,7 +36432,7 @@ msgstr "¿Desea eliminar esta alerta?" msgid "Do you want delete the selected alerts?" msgstr "¿Desea eliminar las alertas seleccionadas?" -#: ../../godmode/snmpconsole/snmp_alert.php:1671 +#: ../../godmode/snmpconsole/snmp_alert.php:1676 msgid "Add action " msgstr "Añadir acción " @@ -36483,175 +36483,179 @@ msgstr "Haz clic para quitar el filtro" msgid "Click to add new filter" msgstr "Haz clic para añadir filtro nuevo" -#: ../../godmode/menu.php:62 +#: ../../godmode/menu.php:63 msgid "Network scan" msgstr "Escaneado de red" -#: ../../godmode/menu.php:64 +#: ../../godmode/menu.php:65 msgid "Custom network scan" msgstr "Escaneo de red personalizado" -#: ../../godmode/menu.php:68 +#: ../../godmode/menu.php:69 msgid "Manage scan scripts" msgstr "Gestionar guiones de escaneo" -#: ../../godmode/menu.php:71 ../../godmode/wizards/HostDevices.class.php:204 +#: ../../godmode/menu.php:72 ../../godmode/wizards/HostDevices.class.php:204 msgid "Host & devices" msgstr "Host & devices" -#: ../../godmode/menu.php:105 +#: ../../godmode/menu.php:106 msgid "Module categories" msgstr "Categorías de módulos" -#: ../../godmode/menu.php:109 +#: ../../godmode/menu.php:110 msgid "Module types" msgstr "Tipos de módulos" -#: ../../godmode/menu.php:115 +#: ../../godmode/menu.php:116 msgid "Operating systems" msgstr "Sistemas operativos" -#: ../../godmode/menu.php:136 +#: ../../godmode/menu.php:137 msgid "Manage agents groups" msgstr "Configuración de grupos de agentes" -#: ../../godmode/menu.php:175 ../../include/class/ConfigPEN.class.php:337 +#: ../../godmode/menu.php:176 ../../include/class/ConfigPEN.class.php:337 #: ../../include/class/ConfigPEN.class.php:345 msgid "Private Enterprise Numbers" msgstr "Números privados de empresa" -#: ../../godmode/menu.php:179 +#: ../../godmode/menu.php:180 msgid "Remote components" msgstr "Componentes remotos" -#: ../../godmode/menu.php:203 ../../godmode/massive/massive_operations.php:246 +#: ../../godmode/menu.php:206 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "Operaciones sobre agentes" -#: ../../godmode/menu.php:204 ../../godmode/massive/massive_operations.php:258 +#: ../../godmode/menu.php:207 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "Operaciones sobre módulos" -#: ../../godmode/menu.php:205 ../../godmode/massive/massive_operations.php:270 +#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "Operaciones de plugins" -#: ../../godmode/menu.php:207 ../../godmode/massive/massive_operations.php:234 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "Operaciones sobre usuarios" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:222 +#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "Operaciones sobre alertas" -#: ../../godmode/menu.php:228 +#: ../../godmode/menu.php:231 msgid "Event filters" msgstr "Filtro de eventos" -#: ../../godmode/menu.php:233 ../../godmode/events/events.php:80 +#: ../../godmode/menu.php:236 ../../godmode/events/events.php:80 #: ../../godmode/events/events.php:95 msgid "Custom columns" msgstr "Columnas personalizadas" -#: ../../godmode/menu.php:264 +#: ../../godmode/menu.php:267 msgid "List of Alerts" msgstr "Lista de alertas" -#: ../../godmode/menu.php:279 ../../godmode/menu.php:280 +#: ../../godmode/menu.php:282 ../../godmode/menu.php:283 msgid "Special days list" msgstr "Lista de días especiales" -#: ../../godmode/menu.php:284 +#: ../../godmode/menu.php:287 msgid "SNMP alerts" msgstr "Alertas SNMP" -#: ../../godmode/menu.php:301 +#: ../../godmode/menu.php:304 msgid "Manage servers" msgstr "Gestionar servidores" -#: ../../godmode/menu.php:312 +#: ../../godmode/menu.php:315 msgid "Register Plugin" msgstr "Registrar Plugin" -#: ../../godmode/menu.php:338 ../../include/class/OrderInterpreter.class.php:141 +#: ../../godmode/menu.php:341 ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "Configuración general" -#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:177 -#: ../../godmode/setup/setup.php:277 ../../operation/agentes/ver_agente.php:1621 +#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:177 +#: ../../godmode/setup/setup.php:277 ../../operation/agentes/ver_agente.php:1639 msgid "eHorus" msgstr "eHorus" -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:165 +#: ../../godmode/menu.php:369 ../../godmode/setup/setup.php:165 #: ../../godmode/setup/setup.php:283 ../../godmode/setup/setup_integria.php:585 msgid "Integria IMS" msgstr "Integria IMS" -#: ../../godmode/menu.php:374 +#: ../../godmode/menu.php:377 msgid "Websocket Engine" msgstr "Websocket Engine" -#: ../../godmode/menu.php:377 ../../godmode/setup/setup.php:224 -#: ../../godmode/setup/setup.php:311 ../../operation/agentes/ver_agente.php:1707 +#: ../../godmode/menu.php:380 ../../godmode/setup/setup.php:224 +#: ../../godmode/setup/setup.php:311 ../../operation/agentes/ver_agente.php:1725 msgid "External Tools" msgstr "Herramientas externas" -#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:295 +#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:295 msgid "Map conections GIS" msgstr "Conexión de mapa GIS" -#: ../../godmode/menu.php:409 +#: ../../godmode/menu.php:412 msgid "Diagnostic info" msgstr "Información de diagnóstico" -#: ../../godmode/menu.php:414 +#: ../../godmode/menu.php:417 msgid "Site news" msgstr "Noticias del sistema" -#: ../../godmode/menu.php:423 +#: ../../godmode/menu.php:426 msgid "DB Schema Check" msgstr "Comprobación del esquema de la BD" -#: ../../godmode/menu.php:426 +#: ../../godmode/menu.php:429 msgid "DB Interface" msgstr "Interfaz de la BBDD" -#: ../../godmode/menu.php:508 +#: ../../godmode/menu.php:511 msgid "Extension manager view" msgstr "Vista del gestor de extensiones" -#: ../../godmode/menu.php:512 +#: ../../godmode/menu.php:515 msgid "Extension manager" msgstr "Gestor de extensión" -#: ../../godmode/menu.php:544 ../../include/class/OrderInterpreter.class.php:339 +#: ../../godmode/menu.php:547 ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "Actualización de Warp" -#: ../../godmode/menu.php:549 +#: ../../godmode/menu.php:552 msgid "Update offline" msgstr "Actualizar sin conexión" -#: ../../godmode/menu.php:552 +#: ../../godmode/menu.php:555 msgid "Update online" msgstr "Actualizar en línea" -#: ../../godmode/menu.php:558 +#: ../../godmode/menu.php:561 msgid "Warp journal" msgstr "Diario Warp" -#: ../../godmode/menu.php:567 +#: ../../godmode/menu.php:570 #: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "Librería de módulos" -#: ../../godmode/menu.php:574 +#: ../../godmode/menu.php:577 #: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 msgid "Categories" msgstr "Categorías" +#: ../../godmode/menu.php:586 +msgid "About" +msgstr "Acerca de" + #: ../../godmode/gis_maps/configure_gis_map.php:86 #: ../../operation/gis_maps/gis_map.php:30 #: ../../operation/gis_maps/render_view.php:130 @@ -37044,57 +37048,57 @@ msgstr "Los usuarios no se pueden actualizar (%s)" #: ../../godmode/massive/massive_edit_users.php:210 #: ../../godmode/massive/massive_delete_profiles.php:154 #: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../include/functions_reporting.php:11921 +#: ../../include/functions_reporting.php:12207 #: ../../operation/search_results.php:94 msgid "Users" msgstr "Usuarios" #: ../../godmode/massive/massive_edit_users.php:341 -#: ../../operation/users/user_edit.php:448 +#: ../../operation/users/user_edit.php:522 msgid "Event filter" msgstr "Filtro de eventos" #: ../../godmode/massive/massive_edit_users.php:379 -#: ../../operation/users/user_edit.php:520 +#: ../../operation/users/user_edit.php:594 msgid "Autorefresh" msgstr "Actualización automática" #: ../../godmode/massive/massive_edit_users.php:380 -#: ../../operation/users/user_edit.php:521 +#: ../../operation/users/user_edit.php:595 msgid "This will activate autorefresh in selected pages" msgstr "Esto activará la actualización automática en las páginas seleccionadas." #: ../../godmode/massive/massive_edit_users.php:419 -#: ../../operation/users/user_edit.php:556 +#: ../../operation/users/user_edit.php:630 msgid "Full list of pages" msgstr "Lista completa de páginas" #: ../../godmode/massive/massive_edit_users.php:428 #: ../../godmode/massive/massive_edit_users.php:429 -#: ../../operation/users/user_edit.php:565 -#: ../../operation/users/user_edit.php:566 +#: ../../operation/users/user_edit.php:639 +#: ../../operation/users/user_edit.php:640 msgid "Push selected pages into autorefresh list" msgstr "Añadir las páginas seleccionadas a la lista de actualización automática" #: ../../godmode/massive/massive_edit_users.php:438 #: ../../godmode/massive/massive_edit_users.php:439 -#: ../../operation/users/user_edit.php:574 -#: ../../operation/users/user_edit.php:575 +#: ../../operation/users/user_edit.php:648 +#: ../../operation/users/user_edit.php:649 msgid "Pop selected pages out of autorefresh list" msgstr "Quitar las páginas seleccionadas de la lista de actualización automática" #: ../../godmode/massive/massive_edit_users.php:444 -#: ../../operation/users/user_edit.php:580 +#: ../../operation/users/user_edit.php:654 msgid "List of pages with autorefresh" msgstr "Lista de páginas con actualización automática" #: ../../godmode/massive/massive_edit_users.php:453 -#: ../../operation/users/user_edit.php:589 +#: ../../operation/users/user_edit.php:663 msgid "Time autorefresh" msgstr "Tiempo de actualización automática" #: ../../godmode/massive/massive_edit_users.php:455 -#: ../../operation/users/user_edit.php:591 +#: ../../operation/users/user_edit.php:665 msgid "" "Interval of autorefresh of the elements, by default they are 30 seconds, " "needing to enable the autorefresh first" @@ -37104,7 +37108,7 @@ msgstr "" #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:533 +#: ../../operation/agentes/alerts_status.php:540 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "No se seleccionó ninguna alerta" @@ -37333,7 +37337,7 @@ msgid "Configure alert command" msgstr "Configurar comando de alerta" #: ../../godmode/alerts/configure_alert_command.php:196 -#: ../../godmode/alerts/alert_commands.php:729 +#: ../../godmode/alerts/alert_commands.php:730 #, php-format msgid "" "This node is configured with centralized mode. All alert commands information " @@ -37370,7 +37374,7 @@ msgid "Hide" msgstr "Ocultar" #: ../../godmode/alerts/alert_actions.php:74 -#: ../../include/functions_reporting.php:3004 +#: ../../include/functions_reporting.php:3122 msgid "Alert actions" msgstr "Acciones de alerta" @@ -37438,7 +37442,7 @@ msgstr "Ver detalles avanzados de la alerta" msgid "No alerts defined" msgstr "No hay alertas definidas" -#: ../../godmode/alerts/alert_commands.php:144 +#: ../../godmode/alerts/alert_commands.php:145 msgid "" "For sending emails, text must be HTML format, if you want to use plain text, " "type it between the following labels:
"
@@ -37446,26 +37450,26 @@ msgstr ""
 "Para envíar emails, el texto debe estar en formato HTML, si quiere usar texto "
 "plano, escríbelo entre las etiquetas: 
"
 
-#: ../../godmode/alerts/alert_commands.php:220
-#: ../../godmode/alerts/alert_commands.php:251
+#: ../../godmode/alerts/alert_commands.php:221
+#: ../../godmode/alerts/alert_commands.php:252
 msgid "Text/plain"
 msgstr "Texto/plano"
 
-#: ../../godmode/alerts/alert_commands.php:222
-#: ../../godmode/alerts/alert_commands.php:253
+#: ../../godmode/alerts/alert_commands.php:223
+#: ../../godmode/alerts/alert_commands.php:254
 msgid "For sending emails only text plain"
 msgstr "Para mandar emails solo en texto plano"
 
-#: ../../godmode/alerts/alert_commands.php:236
-#: ../../godmode/alerts/alert_commands.php:267
+#: ../../godmode/alerts/alert_commands.php:237
+#: ../../godmode/alerts/alert_commands.php:268
 msgid "Text/html"
 msgstr "Texto/HTML"
 
-#: ../../godmode/alerts/alert_commands.php:560
+#: ../../godmode/alerts/alert_commands.php:561
 msgid "Permissions warning"
 msgstr "Alerta de permisos"
 
-#: ../../godmode/alerts/alert_commands.php:563
+#: ../../godmode/alerts/alert_commands.php:564
 msgid ""
 "Command management is limited to administrator users or user profiles with "
 "permissions PM"
@@ -37473,25 +37477,25 @@ msgstr ""
 "La gestión de comandos está limitado a los usuarios de administrador o los "
 "perfiles de usuario con permisos PM"
 
-#: ../../godmode/alerts/alert_commands.php:580
+#: ../../godmode/alerts/alert_commands.php:581
 msgid "Alert commands"
 msgstr "Comandos de alerta"
 
-#: ../../godmode/alerts/alert_commands.php:649
-#: ../../include/functions_alerts.php:2655
+#: ../../godmode/alerts/alert_commands.php:650
+#: ../../include/functions_alerts.php:2659
 msgid "No name specified"
 msgstr "Ningún nombre especificado"
 
-#: ../../godmode/alerts/alert_commands.php:653
-#: ../../include/functions_alerts.php:2650
+#: ../../godmode/alerts/alert_commands.php:654
+#: ../../include/functions_alerts.php:2654
 msgid "No command specified"
 msgstr "Ningún comando especificado"
 
-#: ../../godmode/alerts/alert_commands.php:705
+#: ../../godmode/alerts/alert_commands.php:706
 msgid " (copy)"
 msgstr " (copia)"
 
-#: ../../godmode/alerts/alert_commands.php:822
+#: ../../godmode/alerts/alert_commands.php:823
 msgid "No alert commands configured"
 msgstr "Comandos de alertas no configurados"
 
@@ -37734,12 +37738,12 @@ msgstr ""
 "Advertencia: unknown_updates de pandora_server.conf debe ser igual a 1"
 
 #: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:280
-#: ../../include/functions_events.php:4375
+#: ../../include/functions_events.php:4354
 msgid "Alert details"
 msgstr "Detalles de alerta"
 
 #: ../../godmode/alerts/alert_view.php:83 ../../godmode/alerts/alert_view.php:84
-#: ../../godmode/alerts/alert_list.php:487
+#: ../../godmode/alerts/alert_list.php:505
 msgid "List alerts"
 msgstr "Lista de alertas"
 
@@ -37845,7 +37849,7 @@ msgstr "Ya añadido"
 msgid "No template specified"
 msgstr "Ninguna plantilla especificada"
 
-#: ../../godmode/alerts/alert_list.php:491
+#: ../../godmode/alerts/alert_list.php:509
 msgid "Builder alert"
 msgstr "Creador de alerta"
 
@@ -38029,7 +38033,7 @@ msgid "Correct update the setup options"
 msgstr "Actualización correcta de las opciones de configuración"
 
 #: ../../godmode/setup/setup_ehorus.php:58
-#: ../../include/functions_config.php:1733
+#: ../../include/functions_config.php:1714
 msgid "Enable eHorus"
 msgstr "Activar eHorus"
 
@@ -38087,24 +38091,24 @@ msgstr "La sesión ha caducado."
 #: ../../godmode/setup/setup_ehorus.php:255
 #: ../../godmode/setup/setup_integria.php:720
 #: ../../godmode/setup/setup_integria.php:801
-#: ../../operation/users/user_edit.php:1268
-#: ../../operation/users/user_edit.php:1346
+#: ../../operation/users/user_edit.php:1342
+#: ../../operation/users/user_edit.php:1420
 msgid "Empty user or password"
 msgstr "Usuario o contraseña vacío"
 
 #: ../../godmode/setup/setup_ehorus.php:256
 #: ../../godmode/setup/setup_integria.php:721
 #: ../../godmode/setup/setup_integria.php:802
-#: ../../operation/users/user_edit.php:1269
-#: ../../operation/users/user_edit.php:1347
+#: ../../operation/users/user_edit.php:1343
+#: ../../operation/users/user_edit.php:1421
 msgid "User not found"
 msgstr "Usuario no encontrado"
 
 #: ../../godmode/setup/setup_ehorus.php:257
 #: ../../godmode/setup/setup_integria.php:722
 #: ../../godmode/setup/setup_integria.php:803
-#: ../../operation/users/user_edit.php:1270
-#: ../../operation/users/user_edit.php:1348
+#: ../../operation/users/user_edit.php:1344
+#: ../../operation/users/user_edit.php:1422
 msgid "Invalid password"
 msgstr "Contraseña incorrecta"
 
@@ -38121,7 +38125,7 @@ msgid "Bind port"
 msgstr "Puerto de enlace"
 
 #: ../../godmode/setup/setup_websocket_engine.php:67
-#: ../../include/functions_config.php:1885
+#: ../../include/functions_config.php:1866
 msgid "WebSocket proxy url"
 msgstr "URL del proxy de WebSocket"
 
@@ -38225,7 +38229,7 @@ msgstr "Google Maps"
 #: ../../godmode/setup/gis_step_2.php:234
 #: ../../godmode/reporting/visual_console_builder.elements.php:183
 #: ../../include/functions_visual_map_editor.php:1387
-#: ../../include/functions_visual_map.php:4249
+#: ../../include/functions_visual_map.php:4200
 #: ../../operation/visual_console/view.php:298
 msgid "Static Image"
 msgstr "Imagen estática"
@@ -38275,24 +38279,24 @@ msgid "Corners of the area of the image"
 msgstr "Esquinas del área de la imagen"
 
 #: ../../godmode/setup/gis_step_2.php:344
-#: ../../include/rest-api/models/VisualConsole/Item.php:1960
+#: ../../include/rest-api/models/VisualConsole/Item.php:1961
 msgid "Left"
 msgstr "Izquierda"
 
 #: ../../godmode/setup/gis_step_2.php:351
-#: ../../include/rest-api/models/VisualConsole/Item.php:1957
+#: ../../include/rest-api/models/VisualConsole/Item.php:1958
 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317
 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317
 msgid "Bottom"
 msgstr "Inferior"
 
 #: ../../godmode/setup/gis_step_2.php:358
-#: ../../include/rest-api/models/VisualConsole/Item.php:1959
+#: ../../include/rest-api/models/VisualConsole/Item.php:1960
 msgid "Right"
 msgstr "Derecha"
 
 #: ../../godmode/setup/gis_step_2.php:365
-#: ../../include/rest-api/models/VisualConsole/Item.php:1958
+#: ../../include/rest-api/models/VisualConsole/Item.php:1959
 msgid "Top"
 msgstr "Superior"
 
@@ -38392,7 +38396,7 @@ msgid "Integria IMS API is not reachable"
 msgstr "API de Integria IMS no accesible"
 
 #: ../../godmode/setup/setup_integria.php:261
-#: ../../include/functions_config.php:1771
+#: ../../include/functions_config.php:1752
 msgid "Enable Integria IMS"
 msgstr "Habilitar Integria IMS"
 
@@ -38462,42 +38466,42 @@ msgid "Unsucessful save the snmp translation."
 msgstr "No se pudo guardar la traducción de SNMP"
 
 #: ../../godmode/setup/setup_netflow.php:47
-#: ../../include/functions_config.php:1500
+#: ../../include/functions_config.php:1481
 msgid "Data storage path"
 msgstr "Ruta de almacenamiento de datos"
 
 #: ../../godmode/setup/setup_netflow.php:50
-#: ../../include/functions_config.php:1504
+#: ../../include/functions_config.php:1485
 msgid "Daemon interval"
 msgstr "Intervalo del demonio"
 
 #: ../../godmode/setup/setup_netflow.php:53
-#: ../../include/functions_config.php:1508
+#: ../../include/functions_config.php:1489
 msgid "Daemon binary path"
 msgstr "Ruta de demonio binario"
 
 #: ../../godmode/setup/setup_netflow.php:56
-#: ../../include/functions_config.php:1512
+#: ../../include/functions_config.php:1493
 msgid "Nfdump binary path"
 msgstr "Ruta binaria Nfdump"
 
 #: ../../godmode/setup/setup_netflow.php:59
-#: ../../include/functions_config.php:1516
+#: ../../include/functions_config.php:1497
 msgid "Nfexpire binary path"
 msgstr "Ruta binaria Nfexpire"
 
 #: ../../godmode/setup/setup_netflow.php:62
-#: ../../include/functions_config.php:1520
+#: ../../include/functions_config.php:1501
 msgid "Maximum chart resolution"
 msgstr "Máxima resolución del gráfico"
 
 #: ../../godmode/setup/setup_netflow.php:67
-#: ../../include/functions_config.php:1528
+#: ../../include/functions_config.php:1509
 msgid "Netflow max lifetime"
 msgstr "Tiempo  máximo del Netflow"
 
 #: ../../godmode/setup/setup_netflow.php:70
-#: ../../include/functions_config.php:1532
+#: ../../include/functions_config.php:1513
 msgid "Name resolution for IP address"
 msgstr "Habilitar la resolución de nombre con IP"
 
@@ -38515,7 +38519,7 @@ msgid "Click to display lateral menus"
 msgstr "Haz clic para mostrar el menú lateral"
 
 #: ../../godmode/setup/setup_visuals.php:116
-#: ../../include/functions_config.php:1316
+#: ../../include/functions_config.php:1297
 msgid "Service label font size"
 msgstr "Tamaño de fuente para el mapa de servicios"
 
@@ -38524,12 +38528,12 @@ msgid "Space between items in Service maps"
 msgstr "Espacio entre nodos para el mapa de servicios"
 
 #: ../../godmode/setup/setup_visuals.php:137
-#: ../../include/functions_config.php:1023
+#: ../../include/functions_config.php:1004
 msgid "Style template"
 msgstr "Plantilla de estilo"
 
 #: ../../godmode/setup/setup_visuals.php:150
-#: ../../include/functions_config.php:1043
+#: ../../include/functions_config.php:1024
 msgid "Status icon set"
 msgstr "Icono de estado en"
 
@@ -38546,23 +38550,23 @@ msgid "Colors and text"
 msgstr "Colores y texto"
 
 #: ../../godmode/setup/setup_visuals.php:176
-#: ../../include/functions_config.php:1119
+#: ../../include/functions_config.php:1100
 msgid "Login background"
 msgstr "Imagen de fondo de la pantalla de inicio de sesión"
 
 #: ../../godmode/setup/setup_visuals.php:394
-#: ../../include/functions_config.php:1079
+#: ../../include/functions_config.php:1060
 msgid "Custom documentation logo"
 msgstr "Logo de documentación personalizado"
 
 #: ../../godmode/setup/setup_visuals.php:414
-#: ../../include/functions_config.php:1083
+#: ../../include/functions_config.php:1064
 msgid "Custom support logo"
 msgstr "Logo de soporte personalizado"
 
 #: ../../godmode/setup/setup_visuals.php:433
-#: ../../include/functions_config.php:1087
-#: ../../include/functions_config.php:1091
+#: ../../include/functions_config.php:1068
+#: ../../include/functions_config.php:1072
 msgid "Custom networkmap center logo"
 msgstr "Logo central del mapa de red personalizado"
 
@@ -38579,7 +38583,7 @@ msgid "Disable helps"
 msgstr "Deshabilitar ayudas"
 
 #: ../../godmode/setup/setup_visuals.php:545
-#: ../../include/functions_config.php:1255
+#: ../../include/functions_config.php:1236
 msgid "Fixed header"
 msgstr "Cabecera fija"
 
@@ -38588,12 +38592,12 @@ msgid "Automatically hide submenu"
 msgstr "Ocultar submenú automáticamente"
 
 #: ../../godmode/setup/setup_visuals.php:584
-#: ../../include/functions_config.php:1227
+#: ../../include/functions_config.php:1208
 msgid "GIS Labels"
 msgstr "Etiquetas GIS"
 
 #: ../../godmode/setup/setup_visuals.php:599
-#: ../../include/functions_config.php:1235
+#: ../../include/functions_config.php:1216
 msgid "Default icon in GIS"
 msgstr "Icono GIS por defecto"
 
@@ -38606,8 +38610,8 @@ msgid "Graphs font size"
 msgstr "Tamaño de fuente de las gráficas"
 
 #: ../../godmode/setup/setup_visuals.php:654
-#: ../../include/functions_config.php:1203
-#: ../../include/functions_config.php:1207
+#: ../../include/functions_config.php:1184
+#: ../../include/functions_config.php:1188
 msgid "Agent size text"
 msgstr "Tamaño del texto del agente"
 
@@ -38622,18 +38626,18 @@ msgid "Normal:"
 msgstr "Normal:"
 
 #: ../../godmode/setup/setup_visuals.php:659
-#: ../../include/functions_config.php:1211
+#: ../../include/functions_config.php:1192
 msgid "Module size text"
 msgstr "Tamaño del nombre del módulo"
 
 #: ../../godmode/setup/setup_visuals.php:664
-#: ../../include/functions_config.php:1215
-#: ../../include/functions_config.php:1219
+#: ../../include/functions_config.php:1196
+#: ../../include/functions_config.php:1200
 msgid "Description size text"
 msgstr "Tamaño del texto de la descripción"
 
 #: ../../godmode/setup/setup_visuals.php:668
-#: ../../include/functions_config.php:1223
+#: ../../include/functions_config.php:1204
 msgid "Item title size text"
 msgstr "Tamaño del texto de los títulos de elementos"
 
@@ -38642,37 +38646,37 @@ msgid "Show unit along with value in reports"
 msgstr "Mostrar la unidad junto con el valor en los informes"
 
 #: ../../godmode/setup/setup_visuals.php:732
-#: ../../include/functions_config.php:982
+#: ../../include/functions_config.php:963
 msgid "Graph color #4"
 msgstr "Color del gráfico #4"
 
 #: ../../godmode/setup/setup_visuals.php:743
-#: ../../include/functions_config.php:986
+#: ../../include/functions_config.php:967
 msgid "Graph color #5"
 msgstr "Color del gráfico #5"
 
 #: ../../godmode/setup/setup_visuals.php:754
-#: ../../include/functions_config.php:990
+#: ../../include/functions_config.php:971
 msgid "Graph color #6"
 msgstr "Color del gráfico #6"
 
 #: ../../godmode/setup/setup_visuals.php:765
-#: ../../include/functions_config.php:994
+#: ../../include/functions_config.php:975
 msgid "Graph color #7"
 msgstr "Color del gráfico #7"
 
 #: ../../godmode/setup/setup_visuals.php:776
-#: ../../include/functions_config.php:998
+#: ../../include/functions_config.php:979
 msgid "Graph color #8"
 msgstr "Color del gráfico #8"
 
 #: ../../godmode/setup/setup_visuals.php:787
-#: ../../include/functions_config.php:1002
+#: ../../include/functions_config.php:983
 msgid "Graph color #9"
 msgstr "Color del gráfico #9"
 
 #: ../../godmode/setup/setup_visuals.php:798
-#: ../../include/functions_config.php:1006
+#: ../../include/functions_config.php:987
 msgid "Graph color #10"
 msgstr "Color del gráfico #10"
 
@@ -38685,7 +38689,7 @@ msgid "Data precision in graphs"
 msgstr "Precisión de datos en los gráficos"
 
 #: ../../godmode/setup/setup_visuals.php:858
-#: ../../include/functions_config.php:1283
+#: ../../include/functions_config.php:1264
 msgid "Default line thickness for the Custom Graph."
 msgstr "Espesor de la línea predeterminada para el gráfico personalizado"
 
@@ -38714,7 +38718,7 @@ msgid "Number of favorite visual consoles to show in the menu"
 msgstr "Nº de consolas visuales favoritas mostradas en el menú"
 
 #: ../../godmode/setup/setup_visuals.php:1088
-#: ../../include/functions_config.php:1191
+#: ../../include/functions_config.php:1172
 msgid "Default line thickness for the Visual Console"
 msgstr "Grosor de línea por defecto en las consolas visuales"
 
@@ -38732,7 +38736,7 @@ msgstr ""
 "de actualización de la consola."
 
 #: ../../godmode/setup/setup_visuals.php:1281
-#: ../../include/functions_config.php:1267
+#: ../../include/functions_config.php:1248
 msgid "Networkmap max width"
 msgstr "Máximo ancho de Networkmap"
 
@@ -38741,7 +38745,7 @@ msgid "Show empty groups in group view"
 msgstr "Mostrar grupos vacíos en la vista de grupo"
 
 #: ../../godmode/setup/setup_visuals.php:1320
-#: ../../include/functions_config.php:1489
+#: ../../include/functions_config.php:1470
 msgid "Decimal separator"
 msgstr "Separador decimal"
 
@@ -38859,79 +38863,100 @@ msgstr "Aplicar la información de uso de la URL pública"
 msgid "If public URL is not properly configured you will lose access to "
 msgstr "Si la URL pública no está configurada correctamente, perderá acceso a "
 
-#: ../../godmode/setup/setup_general.php:353
+#: ../../godmode/setup/setup_general.php:354
+#: ../../include/functions_config.php:401
+msgid "Inventory changes blacklist"
+msgstr "Lista negra ante cambios de inventario"
+
+#: ../../godmode/setup/setup_general.php:417
+msgid "Out of black list"
+msgstr "Fuera de la lista negra"
+
+#: ../../godmode/setup/setup_general.php:419
+msgid "In black list"
+msgstr "En la lista negra"
+
+#: ../../godmode/setup/setup_general.php:424
+msgid "Push selected modules into blacklist"
+msgstr "Mover los módulos seleccionados a la lista negra"
+
+#: ../../godmode/setup/setup_general.php:426
+msgid "Pop selected modules out of blacklist"
+msgstr "Sacar los módulos seleccionados de la lista negra"
+
+#: ../../godmode/setup/setup_general.php:434
 #: ../../include/functions_config.php:304
 msgid "Referer security"
 msgstr "Seguridad de Referer"
 
-#: ../../godmode/setup/setup_general.php:361
+#: ../../godmode/setup/setup_general.php:442
 #: ../../include/functions_config.php:308
 msgid "Event storm protection"
 msgstr "Protección de tormenta de eventos"
 
-#: ../../godmode/setup/setup_general.php:378
+#: ../../godmode/setup/setup_general.php:459
 msgid "Change remote config encoding"
 msgstr "Cambiar codificación de configuración remota"
 
-#: ../../godmode/setup/setup_general.php:386
+#: ../../godmode/setup/setup_general.php:467
 #: ../../include/functions_config.php:320
 msgid "Server logs directory"
 msgstr "Directorio de logs del servidor"
 
-#: ../../godmode/setup/setup_general.php:396
+#: ../../godmode/setup/setup_general.php:477
 #: ../../include/functions_config.php:324
 msgid "Log size limit in system logs viewer extension"
 msgstr "Límite de tamaño de logs en la extensión del visor de logs del sistema"
 
-#: ../../godmode/setup/setup_general.php:407
+#: ../../godmode/setup/setup_general.php:488
 msgid "Full mode"
 msgstr "Modo total"
 
-#: ../../godmode/setup/setup_general.php:409
+#: ../../godmode/setup/setup_general.php:490
 msgid "Expert"
 msgstr "Experta/o"
 
-#: ../../godmode/setup/setup_general.php:411
+#: ../../godmode/setup/setup_general.php:492
 #: ../../include/functions_config.php:328
 msgid "Tutorial mode"
 msgstr "Modo tutorial"
 
-#: ../../godmode/setup/setup_general.php:425
+#: ../../godmode/setup/setup_general.php:506
 #: ../../include/functions_config.php:332
 msgid "Allow create scheduled downtimes in the past"
 msgstr ""
 "Permitir la creación de paradas planificadas con fecha anterior a la actual"
 
-#: ../../godmode/setup/setup_general.php:433
+#: ../../godmode/setup/setup_general.php:514
 msgid "Limit for bulk operations"
 msgstr "Límite de operaciones en bloque"
 
-#: ../../godmode/setup/setup_general.php:443
+#: ../../godmode/setup/setup_general.php:524
 msgid "Include agents manually disabled"
 msgstr "Incluir agentes deshabilitados manualmente"
 
-#: ../../godmode/setup/setup_general.php:451
+#: ../../godmode/setup/setup_general.php:532
 msgid "Set alias as name by default in agent creation"
 msgstr "Poner alias como nombre por defecto en la creación de agente"
 
-#: ../../godmode/setup/setup_general.php:468
-#: ../../godmode/setup/setup_general.php:479
+#: ../../godmode/setup/setup_general.php:549
+#: ../../godmode/setup/setup_general.php:560
 msgid "Log location"
 msgstr "Localización de logs"
 
-#: ../../godmode/setup/setup_general.php:489
+#: ../../godmode/setup/setup_general.php:570
 msgid "Module custom ID readonly"
 msgstr "Solo lectura del ID personalizado de módulo"
 
-#: ../../godmode/setup/setup_general.php:490
+#: ../../godmode/setup/setup_general.php:571
 msgid "Useful for integrations"
 msgstr "Útil para integraciones"
 
-#: ../../godmode/setup/setup_general.php:514
+#: ../../godmode/setup/setup_general.php:595
 msgid "General options"
 msgstr "Opciones generales"
 
-#: ../../godmode/setup/setup_general.php:533
+#: ../../godmode/setup/setup_general.php:614
 msgid ""
 "Please notice that some providers like Gmail or Office365 need to setup/enable "
 "manually external connections using SMTP and you need to use STARTTLS on port "
@@ -38944,27 +38969,27 @@ msgstr ""
 "las conexiones externas manualmente utilizando SNMP y necesita usar STARTTLS "
 "en el puerto 587."
 
-#: ../../godmode/setup/setup_general.php:539
+#: ../../godmode/setup/setup_general.php:620
 msgid "From address"
 msgstr "De"
 
-#: ../../godmode/setup/setup_general.php:559
+#: ../../godmode/setup/setup_general.php:640
 msgid "SMTP Server"
 msgstr "Servidor SMTP"
 
-#: ../../godmode/setup/setup_general.php:569
+#: ../../godmode/setup/setup_general.php:650
 msgid "SMTP Port"
 msgstr "Puerto SMTP"
 
-#: ../../godmode/setup/setup_general.php:619
+#: ../../godmode/setup/setup_general.php:700
 msgid "Email test"
 msgstr "Prueba de email"
 
-#: ../../godmode/setup/setup_general.php:671 ../../general/header.php:826
+#: ../../godmode/setup/setup_general.php:752 ../../general/header.php:826
 msgid "Send"
 msgstr "Enviar"
 
-#: ../../godmode/setup/setup_general.php:681
+#: ../../godmode/setup/setup_general.php:762
 msgid "Check mail configuration"
 msgstr "Revisar configuración de correo"
 
@@ -39102,26 +39127,34 @@ msgstr ""
 msgid "SNMP walk binary (fallback)"
 msgstr "Binario walk SNMP (alternativa)"
 
+#: ../../godmode/setup/performance.php:671
+#, php-format
+msgid ""
+"%s web2image cache system cleanup. It is always cleaned up after perform an "
+"upgrade"
+msgstr ""
+"%s limpieza del sistema de caché web2image. Siempre se limpia después de "
+"realizar una actualización"
+
 #: ../../godmode/setup/performance.php:677
 msgid "WMI binary"
 msgstr "Binario WMI"
 
-#: ../../godmode/setup/performance.php:734
+#: ../../godmode/setup/performance.php:717
 msgid "Database maintenance options"
 msgstr "Opciones de mantenimiento de la base de datos"
 
-#: ../../godmode/setup/performance.php:740
+#: ../../godmode/setup/performance.php:723
 msgid "Historical database maintenance options"
 msgstr "Opciones de mantenimiento de la base de datos histórica"
 
-#: ../../godmode/setup/performance.php:746
-#: ../../include/functions_visual_map.php:2874
+#: ../../godmode/setup/performance.php:729 ../../include/graphs/fgraph.php:404
 #: ../../include/functions_netflow.php:2078
-#: ../../operation/network/network_report.php:326
+#: ../../include/functions_reporting.php:3959
 msgid "Others"
 msgstr "Otros"
 
-#: ../../godmode/setup/performance.php:751
+#: ../../godmode/setup/performance.php:734
 msgid "Agent SNMP Interface Wizard defaults"
 msgstr "Valores predeterminados del Asistente de interfaz SNMP del agente"
 
@@ -39157,8 +39190,9 @@ msgstr "Imagen de fondo"
 
 #: ../../godmode/reporting/visual_console_builder.data.php:181
 #: ../../include/functions_visual_map_editor.php:347
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:469
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:524
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:251
 msgid "Background color"
 msgstr "Color de fondo"
 
@@ -39323,14 +39357,14 @@ msgid "Parent container"
 msgstr "Contenedor padre"
 
 #: ../../godmode/reporting/create_container.php:345
-#: ../../include/functions.php:2708
+#: ../../include/functions.php:2734
 msgid "custom"
 msgstr "personalizado"
 
 #: ../../godmode/reporting/create_container.php:347
 #: ../../godmode/reporting/create_container.php:348
 #: ../../godmode/reporting/create_container.php:349
-#: ../../include/functions.php:2720 ../../include/functions.php:2721
+#: ../../include/functions.php:2746 ../../include/functions.php:2747
 #: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148
 #: ../../include/ajax/graph.ajax.php:149
 #, php-format
@@ -39345,13 +39379,13 @@ msgid "%s days"
 msgstr "%s días"
 
 #: ../../godmode/reporting/create_container.php:353
-#: ../../include/functions.php:2723 ../../include/ajax/module.php:211
+#: ../../include/functions.php:2749 ../../include/ajax/module.php:211
 #: ../../include/ajax/graph.ajax.php:153
 msgid "1 week"
 msgstr "1 semana"
 
 #: ../../godmode/reporting/create_container.php:355
-#: ../../include/functions.php:2725 ../../include/ajax/module.php:213
+#: ../../include/functions.php:2751 ../../include/ajax/module.php:213
 #: ../../include/ajax/graph.ajax.php:155
 msgid "1 month"
 msgstr "1 mes"
@@ -39491,7 +39525,7 @@ msgstr "Mostrar opciones"
 
 #: ../../godmode/reporting/graphs.php:310
 #: ../../include/functions_container.php:146 ../../operation/search_graphs.php:30
-#: ../../operation/reporting/graph_viewer.php:524
+#: ../../operation/reporting/graph_viewer.php:521
 msgid "Graph name"
 msgstr "Nombre del gráfico"
 
@@ -39566,6 +39600,11 @@ msgstr ""
 msgid "Show modules"
 msgstr "Mostrar módulos"
 
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2193
+#: ../../operation/inventory/inventory.php:437
+msgid "Last"
+msgstr "Último"
+
 #: ../../godmode/reporting/reporting_builder.item_editor.php:2272
 msgid "Target server"
 msgstr "Servidor Target"
@@ -39679,12 +39718,12 @@ msgstr ""
 "bytes/seg)"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3456
-#: ../../include/functions_reporting.php:4796
+#: ../../include/functions_reporting.php:5059
 msgid "Unassigned group"
 msgstr "Grupo no asignado"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3502
-#: ../../include/functions_reporting.php:4790
+#: ../../include/functions_reporting.php:5053
 msgid "Unnasigned group"
 msgstr "Grupo no asignado"
 
@@ -39824,7 +39863,7 @@ msgstr "Burbuja percentil"
 #: ../../godmode/reporting/visual_console_builder.elements.php:222
 #: ../../mobile/operation/events.php:837
 #: ../../include/functions_visual_map_editor.php:1389
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545
 #: ../../operation/visual_console/view.php:308
 msgid "Module Graph"
 msgstr "Gráfico de módulo"
@@ -39832,15 +39871,15 @@ msgstr "Gráfico de módulo"
 #: ../../godmode/reporting/visual_console_builder.elements.php:232
 #: ../../include/functions_visual_map_editor.php:59
 #: ../../include/functions_visual_map_editor.php:1392
-#: ../../include/functions_visual_map.php:4229
+#: ../../include/functions_visual_map.php:4180
 #: ../../operation/visual_console/view.php:328
 msgid "Event history graph"
 msgstr "Gráfica de histórico de eventos"
 
 #: ../../godmode/reporting/visual_console_builder.elements.php:241
 #: ../../include/functions_visual_map_editor.php:1393
-#: ../../include/functions_visual_map.php:4254
-#: ../../include/rest-api/models/VisualConsole/Item.php:2131
+#: ../../include/functions_visual_map.php:4205
+#: ../../include/rest-api/models/VisualConsole/Item.php:2132
 #: ../../operation/visual_console/view.php:333
 msgid "Simple Value"
 msgstr "Valor simple"
@@ -39860,7 +39899,7 @@ msgstr "Valor simple (media)"
 #: ../../godmode/reporting/visual_console_builder.elements.php:304
 #: ../../include/functions_visual_map_editor.php:71
 #: ../../include/functions_visual_map_editor.php:1398
-#: ../../include/functions_visual_map.php:4209
+#: ../../include/functions_visual_map.php:4160
 #: ../../operation/visual_console/view.php:358
 msgid "Box"
 msgstr "Caja"
@@ -39874,20 +39913,20 @@ msgstr "Link de red"
 #: ../../godmode/reporting/visual_console_builder.elements.php:344
 #: ../../include/functions_visual_map_editor.php:73
 #: ../../include/functions_visual_map_editor.php:1400
-#: ../../include/functions_visual_map.php:4269
-#: ../../include/rest-api/models/VisualConsole/Item.php:2143
+#: ../../include/functions_visual_map.php:4220
+#: ../../include/rest-api/models/VisualConsole/Item.php:2144
 #: ../../operation/visual_console/view.php:368
 msgid "Color cloud"
 msgstr "Nube de color"
 
 #: ../../godmode/reporting/visual_console_builder.elements.php:352
-#: ../../include/rest-api/models/VisualConsole/Item.php:2155
+#: ../../include/rest-api/models/VisualConsole/Item.php:2156
 #: ../../operation/visual_console/view.php:313
 msgid "Basic chart"
 msgstr "Gráfico básico"
 
 #: ../../godmode/reporting/visual_console_builder.elements.php:360
-#: ../../include/rest-api/models/VisualConsole/Item.php:2151
+#: ../../include/rest-api/models/VisualConsole/Item.php:2152
 #: ../../operation/visual_console/view.php:378
 msgid "Odometer"
 msgstr "Odómetro #1"
@@ -39895,8 +39934,8 @@ msgstr "Odómetro #1"
 #: ../../godmode/reporting/visual_console_builder.elements.php:368
 #: ../../include/functions_visual_map_editor.php:69
 #: ../../include/functions_visual_map_editor.php:1396
-#: ../../include/functions_visual_map.php:4219
-#: ../../include/rest-api/models/VisualConsole/Item.php:2103
+#: ../../include/functions_visual_map.php:4170
+#: ../../include/rest-api/models/VisualConsole/Item.php:2104
 #: ../../include/lib/Dashboard/Widgets/clock.php:158
 #: ../../include/lib/Dashboard/Widgets/clock.php:310
 #: ../../operation/visual_console/view.php:348
@@ -39955,7 +39994,7 @@ msgstr "Lista de informes"
 
 #: ../../godmode/reporting/reporting_builder.php:551
 #: ../../godmode/reporting/reporting_builder.php:3538
-#: ../../operation/menu.php:328 ../../operation/reporting/custom_reporting.php:23
+#: ../../operation/menu.php:332 ../../operation/reporting/custom_reporting.php:23
 msgid "Custom reporting"
 msgstr "Informes personalizados"
 
@@ -40000,8 +40039,8 @@ msgstr "Elemento percentil"
 #: ../../godmode/reporting/visual_console_builder.wizard.php:129
 #: ../../mobile/operation/home.php:102
 #: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map.php:4214
-#: ../../include/rest-api/models/VisualConsole/Item.php:2099
+#: ../../include/functions_visual_map.php:4165
+#: ../../include/rest-api/models/VisualConsole/Item.php:2100
 msgid "Module graph"
 msgstr "Gráfico de módulo"
 
@@ -40019,7 +40058,7 @@ msgid "Size (px)"
 msgstr "Tamaño (px)"
 
 #: ../../godmode/reporting/visual_console_builder.wizard.php:228
-#: ../../include/functions_config.php:1051
+#: ../../include/functions_config.php:1032
 msgid "Font size"
 msgstr "Tamaño de fuente"
 
@@ -40138,19 +40177,19 @@ msgstr "Eliminando"
 
 #: ../../godmode/reporting/graph_builder.main.php:218
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:356
-#: ../../operation/reporting/graph_viewer.php:374
+#: ../../operation/reporting/graph_viewer.php:346
 msgid "Bullet chart"
 msgstr "Gráfico de puntos"
 
 #: ../../godmode/reporting/graph_builder.main.php:219
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:357
-#: ../../operation/reporting/graph_viewer.php:375
+#: ../../operation/reporting/graph_viewer.php:347
 msgid "Gauge"
 msgstr "Calibrador"
 
 #: ../../godmode/reporting/graph_builder.main.php:222
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:360
-#: ../../operation/reporting/graph_viewer.php:378
+#: ../../operation/reporting/graph_viewer.php:350
 msgid "Pie"
 msgstr "Gráfico circular"
 
@@ -40271,100 +40310,105 @@ msgstr ""
 "Si está habilitado, el comando se mostrará a cualquier usuario que pueda "
 "ejecutar esta respuesta de evento"
 
-#: ../../godmode/events/event_edit_filter.php:266
+#: ../../godmode/events/event_edit_filter.php:276
 msgid "Update Filter"
 msgstr "Actualizar el filtro"
 
-#: ../../godmode/events/event_edit_filter.php:268
+#: ../../godmode/events/event_edit_filter.php:278
 msgid "Create Filter"
 msgstr "Crear filtro"
 
-#: ../../godmode/events/event_edit_filter.php:278
+#: ../../godmode/events/event_edit_filter.php:288
 #: ../../include/ajax/custom_fields.php:573
 #: ../../include/ajax/custom_fields.php:620
-#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:781
+#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:782
 msgid "Filter name"
 msgstr "Nombre del filtro"
 
-#: ../../godmode/events/event_edit_filter.php:281
+#: ../../godmode/events/event_edit_filter.php:291
 msgid "Save in group"
 msgstr "Guardar en grupo"
 
-#: ../../godmode/events/event_edit_filter.php:281
+#: ../../godmode/events/event_edit_filter.php:291
 msgid ""
 "This group will be use to restrict the visibility of this filter with ACLs"
 msgstr ""
 "Este grupo se usará para restringir la visibilidad de este filtro con ACLs."
 
-#: ../../godmode/events/event_edit_filter.php:443
+#: ../../godmode/events/event_edit_filter.php:453
 msgid "Choose between the users who have validated an event. "
 msgstr "Escoge entre los usuarios que tienen validado un evento. "
 
-#: ../../godmode/events/event_edit_filter.php:467
+#: ../../godmode/events/event_edit_filter.php:477
 msgid "Owner."
 msgstr "Propietario."
 
-#: ../../godmode/events/event_edit_filter.php:479
+#: ../../godmode/events/event_edit_filter.php:489
 #: ../../operation/events/events.php:1708
 msgid "All events"
 msgstr "Todos los eventos"
 
-#: ../../godmode/events/event_edit_filter.php:480
+#: ../../godmode/events/event_edit_filter.php:490
 #: ../../operation/events/events.php:1709 ../../operation/events/events.php:2375
 msgid "Group events"
 msgstr "Eventos agrupados"
 
-#: ../../godmode/events/event_edit_filter.php:481
+#: ../../godmode/events/event_edit_filter.php:491
 #: ../../include/ajax/heatmap.ajax.php:78 ../../operation/events/events.php:1710
 msgid "Group agents"
 msgstr "Grupos de agente"
 
-#: ../../godmode/events/event_edit_filter.php:482
+#: ../../godmode/events/event_edit_filter.php:492
 #: ../../operation/events/events.php:1711
 msgid "Group extra id"
 msgstr "ID adicional de grupo"
 
-#: ../../godmode/events/event_edit_filter.php:648
+#: ../../godmode/events/event_edit_filter.php:658
 #: ../../operation/events/events.php:1984
 msgid "Filter alert events"
 msgstr "Filtrar eventos de alertas"
 
-#: ../../godmode/events/event_edit_filter.php:649
+#: ../../godmode/events/event_edit_filter.php:659
 #: ../../operation/events/events.php:1985
 msgid "Only alert events"
 msgstr "Solo eventos de alertas"
 
-#: ../../godmode/events/event_edit_filter.php:676
+#: ../../godmode/events/event_edit_filter.php:686
 #: ../../operation/events/events.php:1855
 msgid "Extra ID"
 msgstr "ID extra"
 
-#: ../../godmode/events/event_edit_filter.php:682
+#: ../../godmode/events/event_edit_filter.php:692
 msgid "Custom data filter type"
 msgstr "Tipo de filtro de datos personalizado"
 
-#: ../../godmode/events/event_edit_filter.php:685
+#: ../../godmode/events/event_edit_filter.php:695
 msgid "Filter custom data by name field"
 msgstr "Filtrar datos personalizados por campo de nombre"
 
-#: ../../godmode/events/event_edit_filter.php:686
+#: ../../godmode/events/event_edit_filter.php:696
 msgid "Filter custom data by value field"
 msgstr "Filtrar datos personalizados por campo de valor"
 
-#: ../../godmode/events/event_edit_filter.php:696
+#: ../../godmode/events/event_edit_filter.php:706
 #: ../../godmode/events/custom_events.php:119
 #: ../../include/functions_reporting_html.php:1069
 #: ../../include/functions_reporting_html.php:1330
 #: ../../include/functions_reporting_html.php:2557
-#: ../../include/ajax/events.php:1718 ../../include/functions_events.php:221
+#: ../../include/ajax/events.php:1725 ../../include/functions_events.php:221
 #: ../../include/functions_events.php:323
 msgid "Custom data"
 msgstr "Datos personalizados"
 
-#: ../../godmode/events/event_edit_filter.php:700
+#: ../../godmode/events/event_edit_filter.php:710
 msgid "Id souce event"
 msgstr "Evento de origen de ID"
 
+#: ../../godmode/events/event_edit_filter.php:735
+#: ../../operation/events/events.php:256
+msgid "Metaconsola"
+msgstr "Metaconsola"
+
 #: ../../godmode/events/event_responses.list.php:32
 msgid "No responses found"
 msgstr "No se encontraron respuestas"
@@ -40430,9 +40474,9 @@ msgid "Severity mini"
 msgstr "Prioridad baja"
 
 #: ../../godmode/events/custom_events.php:118
-#: ../../include/functions_events.php:307 ../../include/functions_events.php:4911
+#: ../../include/functions_events.php:307 ../../include/functions_events.php:4890
 msgid "Module custom ID"
-msgstr "ID personalizada de mádulo"
+msgstr "ID personalizada de módulo"
 
 #: ../../godmode/events/custom_events.php:171
 msgid "Move up selected fields"
@@ -40637,27 +40681,27 @@ msgstr ""
 "Puede especificar varios valores, separados por coma, por ejemplo: public,"
 "mysecret,1234"
 
-#: ../../godmode/wizards/HostDevices.class.php:1375
+#: ../../godmode/wizards/HostDevices.class.php:1374
 msgid "OS detection"
 msgstr "Detección de SO"
 
-#: ../../godmode/wizards/HostDevices.class.php:1387
+#: ../../godmode/wizards/HostDevices.class.php:1386
 msgid "Name resolution"
 msgstr "Resolución de nombres"
 
-#: ../../godmode/wizards/HostDevices.class.php:1398
+#: ../../godmode/wizards/HostDevices.class.php:1397
 msgid "Parent detection"
 msgstr "Detección de padres"
 
-#: ../../godmode/wizards/HostDevices.class.php:1409
+#: ../../godmode/wizards/HostDevices.class.php:1408
 msgid "Parent recursion"
 msgstr "Recursión del padre"
 
-#: ../../godmode/wizards/HostDevices.class.php:1420
+#: ../../godmode/wizards/HostDevices.class.php:1419
 msgid "VLAN enabled"
 msgstr "VLAN habilitada"
 
-#: ../../godmode/wizards/HostDevices.class.php:1431
+#: ../../godmode/wizards/HostDevices.class.php:1430
 msgid "WMI enabled"
 msgstr "WMI habilitado"
 
@@ -41095,7 +41139,7 @@ msgstr "Registro de puglins"
 
 #: ../../godmode/servers/plugin_registration.php:103
 msgid "You can get more plugins in our"
-msgstr "Puedes obtener más plugins en nuestra"
+msgstr "Puede encontrar más plugins en nuestra"
 
 #: ../../godmode/servers/plugin_registration.php:105
 msgid "Public Resource Library"
@@ -41697,7 +41741,7 @@ msgstr "No se han encontrado agentes"
 msgid "Modules by status"
 msgstr "Módulos por estado"
 
-#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:829
+#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:824
 msgid "Events (24h)"
 msgstr "Eventos (24h)"
 
@@ -41715,7 +41759,7 @@ msgstr "Filtros de alertas por %s"
 msgid "Last Fired"
 msgstr "Última vez que se disparó"
 
-#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2395
+#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2406
 msgid "No alerts"
 msgstr "Sin alertas"
 
@@ -41792,7 +41836,7 @@ msgstr "Error al obtener el gráfico"
 #: ../../include/functions_reporting_html.php:1359
 #: ../../include/functions_reporting_html.php:2582
 #: ../../include/functions_events.php:2569
-#: ../../include/functions_events.php:4568 ../../operation/events/events.php:749
+#: ../../include/functions_events.php:4547 ../../operation/events/events.php:749
 msgid "New event"
 msgstr "Nuevo evento"
 
@@ -41801,7 +41845,7 @@ msgstr "Nuevo evento"
 #: ../../include/functions_reporting_html.php:1364
 #: ../../include/functions_reporting_html.php:2587
 #: ../../include/functions_events.php:2574
-#: ../../include/functions_events.php:4574 ../../operation/events/events.php:762
+#: ../../include/functions_events.php:4553 ../../operation/events/events.php:762
 msgid "Event validated"
 msgstr "Evento validado"
 
@@ -41810,7 +41854,7 @@ msgstr "Evento validado"
 #: ../../include/functions_reporting_html.php:1369
 #: ../../include/functions_reporting_html.php:2592
 #: ../../include/functions_events.php:2579
-#: ../../include/functions_events.php:4580 ../../operation/events/events.php:774
+#: ../../include/functions_events.php:4559 ../../operation/events/events.php:774
 msgid "Event in process"
 msgstr "Evento en proceso"
 
@@ -41826,11 +41870,11 @@ msgstr "Error al conectar con la base de datos"
 msgid "Event detail"
 msgstr "Detalles del evento"
 
-#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4721
+#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4700
 msgid "Event ID"
 msgstr "ID del evento"
 
-#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:4831
+#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:4810
 msgid "Acknowledged by"
 msgstr "Admitido por"
 
@@ -41852,10 +41896,10 @@ msgid "Preset Filters"
 msgstr "Fijar los filtros"
 
 #: ../../mobile/operation/events.php:1144
-#: ../../include/functions_reporting_html.php:6107
-#: ../../include/functions_reporting_html.php:6266
-#: ../../include/functions_reporting.php:2151
-#: ../../include/functions_reporting.php:2441
+#: ../../include/functions_reporting_html.php:6126
+#: ../../include/functions_reporting_html.php:6285
+#: ../../include/functions_reporting.php:2184
+#: ../../include/functions_reporting.php:2559
 #: ../../include/functions_events.php:2493
 #: ../../include/functions_events.php:2496
 msgid "No events"
@@ -41971,25 +42015,25 @@ msgid "Enable link"
 msgstr "Activar enlace"
 
 #: ../../include/functions_visual_map_editor.php:350
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:518
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508
 msgid "White"
 msgstr "Blanco"
 
 #: ../../include/functions_visual_map_editor.php:351
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509
 msgid "Black"
 msgstr "Negro"
 
 #: ../../include/functions_visual_map_editor.php:352
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:465
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:520
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510
 msgid "Transparent"
 msgstr "Transparente"
 
 #: ../../include/functions_visual_map_editor.php:378
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:499
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402
 msgid "Grid color"
 msgstr "Color de cuadrícula"
 
@@ -41998,32 +42042,31 @@ msgid "Data image"
 msgstr "Datos en imagen"
 
 #: ../../include/functions_visual_map_editor.php:503
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:258
 msgid "Resume data color"
 msgstr "Color de la leyenda"
 
 #: ../../include/functions_visual_map_editor.php:517
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:269
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274
 msgid "24h"
 msgstr "24h"
 
 #: ../../include/functions_visual_map_editor.php:518
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:271
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276
 msgid "8h"
 msgstr "8h"
 
 #: ../../include/functions_visual_map_editor.php:519
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:272
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
 msgid "2h"
 msgstr "2h"
 
 #: ../../include/functions_visual_map_editor.php:520
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:273
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278
 msgid "1h"
 msgstr "1h"
 
 #: ../../include/functions_visual_map_editor.php:524
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282
 msgid "Max. Time"
 msgstr "Tiempo máximo"
 
@@ -42044,14 +42087,16 @@ msgid "Height proportional"
 msgstr "Altura proporcional"
 
 #: ../../include/functions_visual_map_editor.php:688
+#: ../../include/functions_visual_map.php:4190
 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460
-msgid "Circular porgress bar"
+#: ../../include/rest-api/models/VisualConsole/Item.php:2124
+msgid "Circular progress bar"
 msgstr "Barra de progreso circular"
 
 #: ../../include/functions_visual_map_editor.php:689
-#: ../../include/functions_visual_map.php:4244
+#: ../../include/functions_visual_map.php:4195
 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462
-#: ../../include/rest-api/models/VisualConsole/Item.php:2127
+#: ../../include/rest-api/models/VisualConsole/Item.php:2128
 msgid "Circular progress bar (interior)"
 msgstr "Barra de progreso circular (interior)"
 
@@ -42097,7 +42142,7 @@ msgid "To value"
 msgstr "Hasta el valor"
 
 #: ../../include/functions_visual_map_editor.php:815
-#: ../../include/rest-api/index.php:375
+#: ../../include/rest-api/index.php:376
 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471
 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530
 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487
@@ -42133,32 +42178,32 @@ msgstr ""
 "alto."
 
 #: ../../include/functions_visual_map_editor.php:974
-#: ../../include/rest-api/models/VisualConsole/Item.php:2438
+#: ../../include/rest-api/models/VisualConsole/Item.php:2439
 msgid "Linked visual console"
 msgstr "Consola visual enlazada"
 
 #: ../../include/functions_visual_map_editor.php:1081
-#: ../../include/rest-api/models/VisualConsole/Item.php:2489
+#: ../../include/rest-api/models/VisualConsole/Item.php:2490
 msgid "By status weight"
 msgstr "Por peso de estadp"
 
 #: ../../include/functions_visual_map_editor.php:1082
-#: ../../include/rest-api/models/VisualConsole/Item.php:2490
+#: ../../include/rest-api/models/VisualConsole/Item.php:2491
 msgid "By critical elements"
 msgstr "Por elementos críticos"
 
 #: ../../include/functions_visual_map_editor.php:1097
-#: ../../include/rest-api/models/VisualConsole/Item.php:2497
+#: ../../include/rest-api/models/VisualConsole/Item.php:2498
 msgid "Type of the status calculation of the linked visual console"
 msgstr "Tipo de cálculo de estado de la consola visual enlazada"
 
 #: ../../include/functions_visual_map_editor.php:1102
-#: ../../include/rest-api/models/VisualConsole/Item.php:2488
+#: ../../include/rest-api/models/VisualConsole/Item.php:2489
 msgid "By default"
 msgstr "Por defecto"
 
 #: ../../include/functions_visual_map_editor.php:1122
-#: ../../include/rest-api/models/VisualConsole/Item.php:2513
+#: ../../include/rest-api/models/VisualConsole/Item.php:2514
 msgid "Linked visual console weight"
 msgstr "Peso de la consola visual enlazada"
 
@@ -42167,7 +42212,7 @@ msgid "Lines haven't advanced options"
 msgstr "Las líneas no tienen opciones avanzadas."
 
 #: ../../include/functions_visual_map_editor.php:1206
-#: ../../include/rest-api/models/VisualConsole/Item.php:2188
+#: ../../include/rest-api/models/VisualConsole/Item.php:2189
 msgid "Restrict access to group"
 msgstr "Restringir acceso al grupo"
 
@@ -42182,7 +42227,7 @@ msgstr ""
 "se utiliza para calcular consolas visuales de los hijos."
 
 #: ../../include/functions_visual_map_editor.php:1248
-#: ../../include/rest-api/models/VisualConsole/Item.php:2201
+#: ../../include/rest-api/models/VisualConsole/Item.php:2202
 msgid "Cache expiration"
 msgstr "Caducidad del caché"
 
@@ -42318,26 +42363,27 @@ msgstr "Error al exportar los datos"
 
 #: ../../include/graphs/functions_gd.php:183
 #: ../../include/graphs/functions_gd.php:466
-#: ../../include/functions_graph.php:2907 ../../include/functions_graph.php:2955
+#: ../../include/functions_graph.php:2775 ../../include/functions_graph.php:2823
 msgid "Out of limits"
 msgstr "Fuera de límites"
 
-#: ../../include/graphs/functions_flot.php:365
+#: ../../include/graphs/functions_flot.php:370
 msgid "Cancel zoom"
 msgstr "Cancelar el zoom"
 
-#: ../../include/graphs/functions_flot.php:367
+#: ../../include/graphs/functions_flot.php:372
 msgid "Warning and Critical thresholds"
 msgstr "Umbrales de advertencia y crítico"
 
-#: ../../include/graphs/functions_flot.php:372
+#: ../../include/graphs/functions_flot.php:377
 msgid "Overview graph"
 msgstr "Gráfico de vista general"
 
-#: ../../include/graphs/functions_flot.php:509
-#: ../../include/functions_reporting_html.php:659
+#: ../../include/graphs/functions_flot.php:514
+#: ../../include/functions_reporting_html.php:660
 #: ../../include/functions_reporting_html.php:4596
-#: ../../include/ajax/events.php:1259 ../../include/functions_treeview.php:315
+#: ../../include/ajax/events.php:1260 ../../include/functions_graph.php:4836
+#: ../../include/functions_treeview.php:315
 msgid "No data"
 msgstr "Sin datos"
 
@@ -42401,15 +42447,15 @@ msgstr "Servidor de predicción"
 msgid "Satellite server"
 msgstr "Servidor Satélite"
 
-#: ../../include/functions_reporting_html.php:109
+#: ../../include/functions_reporting_html.php:110
 msgid "Label: "
 msgstr "Etiqueta: "
 
-#: ../../include/functions_reporting_html.php:584
+#: ../../include/functions_reporting_html.php:585
 msgid "Time Failed"
 msgstr "Tiempo en fallo"
 
-#: ../../include/functions_reporting_html.php:588
+#: ../../include/functions_reporting_html.php:589
 msgid "Downtime"
 msgstr "Parada planificada"
 
@@ -42475,12 +42521,26 @@ msgstr "Sec. grupos"
 msgid "Remote conf."
 msgstr "Configuración remota"
 
+#: ../../include/functions_reporting_html.php:1831
+#: ../../include/functions_inventory.php:885
+#: ../../include/functions_inventory.php:948
+msgid "Added"
+msgstr "Añadido"
+
+#: ../../include/functions_reporting_html.php:1842
+#: ../../include/functions_inventory.php:891
+#: ../../include/functions_inventory.php:956
+#: ../../include/functions_filemanager.php:342
+#: ../../include/functions_filemanager.php:359
+msgid "Deleted"
+msgstr "Eliminado(s)"
+
 #: ../../include/functions_reporting_html.php:2198
 msgid "Cell turns grey when the module is in 'not initialize' status"
 msgstr "Celda gris cuando el módulo está en estado \"no iniciado\""
 
 #: ../../include/functions_reporting_html.php:2490
-#: ../../include/functions_reporting_html.php:5585
+#: ../../include/functions_reporting_html.php:5604
 msgid "Monitors"
 msgstr "Monitores"
 
@@ -42493,7 +42553,7 @@ msgid "Events validated by user"
 msgstr "Eventos validados por el usuario"
 
 #: ../../include/functions_reporting_html.php:2692
-#: ../../include/functions_reporting_html.php:5874
+#: ../../include/functions_reporting_html.php:5893
 msgid "Events by severity"
 msgstr "Eventos por gravedad"
 
@@ -42551,80 +42611,80 @@ msgid "Primary"
 msgstr "Primario"
 
 #: ../../include/functions_reporting_html.php:5130
-#: ../../include/functions_reporting.php:11614
-#: ../../include/functions_reporting.php:11635
+#: ../../include/functions_reporting.php:11900
+#: ../../include/functions_reporting.php:11921
 msgid "Alert level"
 msgstr "Nivel de alerta"
 
-#: ../../include/functions_reporting_html.php:5359
+#: ../../include/functions_reporting_html.php:5378
 #, php-format
 msgid "Agents in group: %s"
 msgstr "Agentes en el grupo: %s"
 
-#: ../../include/functions_reporting_html.php:5461
+#: ../../include/functions_reporting_html.php:5480
 msgid "Last failure"
 msgstr "Último fallo"
 
-#: ../../include/functions_reporting_html.php:5551
+#: ../../include/functions_reporting_html.php:5570
 msgid "N/A(*)"
 msgstr "N/A(*)"
 
-#: ../../include/functions_reporting_html.php:5799
-#: ../../include/functions_reporting.php:11846
+#: ../../include/functions_reporting_html.php:5818
+#: ../../include/functions_reporting.php:12132
 msgid "Monitor checks"
 msgstr "Comprobaciones de monitores"
 
-#: ../../include/functions_reporting_html.php:5806
-#: ../../include/functions_reporting.php:11865
+#: ../../include/functions_reporting_html.php:5825
+#: ../../include/functions_reporting.php:12151
 msgid "Total agents and monitors"
 msgstr "Total de agentes y monitores"
 
-#: ../../include/functions_reporting_html.php:5825
-#: ../../include/functions_reporting_html.php:5830
+#: ../../include/functions_reporting_html.php:5844
+#: ../../include/functions_reporting_html.php:5849
 msgid "Node overview"
 msgstr "Resumen de nodos"
 
-#: ../../include/functions_reporting_html.php:5850
-#: ../../include/functions_reporting_html.php:5862
+#: ../../include/functions_reporting_html.php:5869
+#: ../../include/functions_reporting_html.php:5881
 msgid "Critical events"
 msgstr "Eventos en estado crítico"
 
-#: ../../include/functions_reporting_html.php:5853
-#: ../../include/functions_reporting_html.php:5864
+#: ../../include/functions_reporting_html.php:5872
+#: ../../include/functions_reporting_html.php:5883
 msgid "Warning events"
 msgstr "Eventos en estado de advertencia"
 
-#: ../../include/functions_reporting_html.php:5856
-#: ../../include/functions_reporting_html.php:5866
+#: ../../include/functions_reporting_html.php:5875
+#: ../../include/functions_reporting_html.php:5885
 msgid "OK events"
 msgstr "Eventos OK"
 
-#: ../../include/functions_reporting_html.php:5859
-#: ../../include/functions_reporting_html.php:5868
+#: ../../include/functions_reporting_html.php:5878
+#: ../../include/functions_reporting_html.php:5887
 msgid "Unknown events"
 msgstr "Eventos desconocidos"
 
-#: ../../include/functions_reporting_html.php:5884
+#: ../../include/functions_reporting_html.php:5903
 msgid "Important Events by Criticity"
 msgstr "Eventos importantes por gravedad"
 
-#: ../../include/functions_reporting_html.php:5910
+#: ../../include/functions_reporting_html.php:5929
 #, php-format
 msgid "Last activity in %s console"
 msgstr "Última actividad en la consola %s"
 
-#: ../../include/functions_reporting_html.php:5997
-#: ../../include/functions_reporting_html.php:6139
+#: ../../include/functions_reporting_html.php:6016
+#: ../../include/functions_reporting_html.php:6158
 msgid "Events info (1hr.)"
 msgstr "Información de eventos (1h)"
 
-#: ../../include/functions_reporting_html.php:6296
+#: ../../include/functions_reporting_html.php:6315
 msgid "This SLA has been affected by the following scheduled downtimes"
 msgstr ""
 "Este SLA se ha visto afectado por los siguientes tiempos de inactividad "
 "programados"
 
-#: ../../include/functions_reporting_html.php:6297
+#: ../../include/functions_reporting_html.php:6316
 msgid ""
 "If the duration of the scheduled downtime is less than 5 minutes it will not "
 "be represented in the graph"
@@ -42632,162 +42692,162 @@ msgstr ""
 "Si la duración de la parada planificada es de menos de 5 minutos, no se "
 "representará en el gráfico"
 
-#: ../../include/functions_reporting_html.php:6304
+#: ../../include/functions_reporting_html.php:6323
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380
 msgid "Dates"
 msgstr "Fechas"
 
-#: ../../include/functions_reporting_html.php:6335
+#: ../../include/functions_reporting_html.php:6354
 msgid "This item is affected by a malformed scheduled downtime"
 msgstr "A este elemento le afecta una parada planificada mal formada."
 
-#: ../../include/functions_reporting_html.php:6335
+#: ../../include/functions_reporting_html.php:6354
 msgid "Go to the scheduled downtimes section to solve this"
 msgstr "Ir a la sección de paradas planificadas para solucionar este problema"
 
-#: ../../include/functions.php:484 ../../include/functions.php:636
+#: ../../include/functions.php:488 ../../include/functions.php:640
 msgid "s"
 msgstr "s"
 
-#: ../../include/functions.php:485 ../../include/functions.php:637
+#: ../../include/functions.php:489 ../../include/functions.php:641
 msgid "d"
 msgstr "d"
 
-#: ../../include/functions.php:486 ../../include/functions.php:638
+#: ../../include/functions.php:490 ../../include/functions.php:642
 msgid "M"
 msgstr "M"
 
-#: ../../include/functions.php:487 ../../include/functions.php:639
+#: ../../include/functions.php:491 ../../include/functions.php:643
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:259
-#: ../../include/rest-api/models/VisualConsole/Item.php:2036
+#: ../../include/rest-api/models/VisualConsole/Item.php:2037
 msgid "Y"
 msgstr "Y"
 
-#: ../../include/functions.php:488 ../../include/functions.php:640
+#: ../../include/functions.php:492 ../../include/functions.php:644
 msgid "m"
 msgstr "m"
 
-#: ../../include/functions.php:489 ../../include/functions.php:641
+#: ../../include/functions.php:493 ../../include/functions.php:645
 msgid "h"
 msgstr "h"
 
-#: ../../include/functions.php:490 ../../include/functions.php:642
+#: ../../include/functions.php:494 ../../include/functions.php:646
 msgid "N"
 msgstr "N"
 
-#: ../../include/functions.php:1043 ../../include/functions.php:1289
-#: ../../include/functions.php:1323 ../../include/functions_graph.php:3477
-#: ../../include/functions_graph.php:3478 ../../include/functions_graph.php:5060
+#: ../../include/functions.php:1069 ../../include/functions.php:1315
+#: ../../include/functions.php:1349 ../../include/functions_graph.php:3318
+#: ../../include/functions_graph.php:3320 ../../include/functions_graph.php:4848
 #: ../../include/functions_incidents.php:34
 #: ../../include/functions_incidents.php:75
-#: ../../include/functions_events.php:3090
+#: ../../include/functions_events.php:3069
 #: ../../operation/visual_console/view.php:433
 msgid "Maintenance"
 msgstr "Mantenimiento"
 
-#: ../../include/functions.php:1047 ../../include/functions.php:1290
-#: ../../include/functions.php:1327 ../../include/functions_graph.php:3482
-#: ../../include/functions_graph.php:3483 ../../include/functions_graph.php:5064
-#: ../../include/functions_events.php:3094
+#: ../../include/functions.php:1073 ../../include/functions.php:1316
+#: ../../include/functions.php:1353 ../../include/functions_graph.php:3324
+#: ../../include/functions_graph.php:3326 ../../include/functions_graph.php:4852
+#: ../../include/functions_events.php:3073
 msgid "Informational"
 msgstr "Informativo"
 
-#: ../../include/functions.php:1063 ../../include/functions.php:1292
-#: ../../include/functions.php:1343 ../../include/functions_graph.php:3492
-#: ../../include/functions_graph.php:3493 ../../include/functions_graph.php:5080
+#: ../../include/functions.php:1089 ../../include/functions.php:1318
+#: ../../include/functions.php:1369 ../../include/functions_graph.php:3336
+#: ../../include/functions_graph.php:3338 ../../include/functions_graph.php:4868
 msgid "Minor"
 msgstr "Menor"
 
-#: ../../include/functions.php:1067 ../../include/functions.php:1294
-#: ../../include/functions.php:1347 ../../include/functions_graph.php:3502
-#: ../../include/functions_graph.php:3503 ../../include/functions_graph.php:5084
+#: ../../include/functions.php:1093 ../../include/functions.php:1320
+#: ../../include/functions.php:1373 ../../include/functions_graph.php:3348
+#: ../../include/functions_graph.php:3350 ../../include/functions_graph.php:4872
 msgid "Major"
 msgstr "Principal"
 
-#: ../../include/functions.php:1242 ../../include/functions_events.php:3010
+#: ../../include/functions.php:1268 ../../include/functions_events.php:2989
 msgid "Monitor Critical"
 msgstr "Monitor en estado crítico"
 
-#: ../../include/functions.php:1243 ../../include/functions_events.php:3014
+#: ../../include/functions.php:1269 ../../include/functions_events.php:2993
 msgid "Monitor Warning"
 msgstr "Monitor en estado de advertencia"
 
-#: ../../include/functions.php:1244 ../../include/functions_events.php:3018
+#: ../../include/functions.php:1270 ../../include/functions_events.php:2997
 msgid "Monitor Normal"
 msgstr "Monitor en estado normal"
 
-#: ../../include/functions.php:1246
+#: ../../include/functions.php:1272
 msgid "Monitor Unknown"
 msgstr "Monitor en estado desconocido"
 
-#: ../../include/functions.php:1249 ../../include/functions_events.php:2794
-#: ../../include/functions_events.php:3026
+#: ../../include/functions.php:1275 ../../include/functions_events.php:2773
+#: ../../include/functions_events.php:3005
 msgid "Alert recovered"
 msgstr "Alerta recuperada"
 
-#: ../../include/functions.php:1250 ../../include/functions_events.php:2842
-#: ../../include/functions_events.php:3030
+#: ../../include/functions.php:1276 ../../include/functions_events.php:2821
+#: ../../include/functions_events.php:3009
 msgid "Alert ceased"
 msgstr "Alerta finalizada"
 
-#: ../../include/functions.php:1251 ../../include/functions_events.php:3034
+#: ../../include/functions.php:1277 ../../include/functions_events.php:3013
 msgid "Alert manual validation"
 msgstr "Validación manual de alerta"
 
-#: ../../include/functions.php:1253
+#: ../../include/functions.php:1279
 msgid "Agent created"
 msgstr "Agente creado"
 
-#: ../../include/functions.php:1254 ../../include/functions_events.php:3038
+#: ../../include/functions.php:1280 ../../include/functions_events.php:3017
 msgid "Recon host detected"
 msgstr "Equipo de red detectado con recon"
 
-#: ../../include/functions.php:1257 ../../include/functions_events.php:2838
-#: ../../include/functions_events.php:3050
+#: ../../include/functions.php:1283 ../../include/functions_events.php:2817
+#: ../../include/functions_events.php:3029
 msgid "Configuration change"
 msgstr "Cambio de configuración"
 
-#: ../../include/functions.php:1374 ../../include/functions.php:1404
+#: ../../include/functions.php:1400 ../../include/functions.php:1430
 msgid "ALERT FIRED"
 msgstr "ALERTA DISPARADA"
 
-#: ../../include/functions.php:1377 ../../include/functions.php:1414
-#: ../../include/functions_modules.php:4148
+#: ../../include/functions.php:1403 ../../include/functions.php:1440
+#: ../../include/functions_modules.php:4223
 #: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:567
 #: ../../operation/agentes/status_monitor.php:1669
 #: ../../operation/agentes/status_monitor.php:1682
 msgid "NO DATA"
 msgstr "SIN DATOS"
 
-#: ../../include/functions.php:2714
+#: ../../include/functions.php:2740
 #, php-format
 msgid "%s seconds"
 msgstr "%s segundos"
 
-#: ../../include/functions.php:2717 ../../include/functions.php:2718
+#: ../../include/functions.php:2743 ../../include/functions.php:2744
 #, php-format
 msgid "%s minutes"
 msgstr "%s minutos"
 
-#: ../../include/functions.php:2726 ../../include/functions.php:2727
+#: ../../include/functions.php:2752 ../../include/functions.php:2753
 #, php-format
 msgid "%s months"
 msgstr "%s meses"
 
-#: ../../include/functions.php:2729 ../../include/functions.php:2730
+#: ../../include/functions.php:2755 ../../include/functions.php:2756
 #, php-format
 msgid "%s years"
 msgstr "%s años"
 
-#: ../../include/functions.php:2732
+#: ../../include/functions.php:2758
 msgid "Default values will be used"
 msgstr "Se usarán los valores por defecto"
 
-#: ../../include/functions.php:2917 ../../include/functions.php:2922
+#: ../../include/functions.php:2943 ../../include/functions.php:2948
 msgid "The file exceeds the maximum size"
 msgstr "El archivo excede el tamaño máximo"
 
-#: ../../include/functions.php:2918
+#: ../../include/functions.php:2944
 msgid ""
 "Please check this PHP runtime variable values: 
  upload_max_filesize "
 "(currently "
@@ -42795,118 +42855,118 @@ msgstr ""
 "Compruebe los valores de esta variable de tiempo de ejecución de PHP: "
 "
upload_max_filesize (actualmente "
 
-#: ../../include/functions.php:2926
+#: ../../include/functions.php:2952
 msgid "The uploaded file was only partially uploaded"
 msgstr "El archivo se ha subido parcialmente."
 
-#: ../../include/functions.php:2930
+#: ../../include/functions.php:2956
 msgid "No file was uploaded"
 msgstr "No se subió ningún archivo."
 
-#: ../../include/functions.php:2934
+#: ../../include/functions.php:2960
 msgid "Missing a temporary folder"
 msgstr "El directorio temporal no existe."
 
-#: ../../include/functions.php:2938
+#: ../../include/functions.php:2964
 msgid "Failed to write file to disk"
 msgstr "No se pudo escribir el archivo al disco."
 
-#: ../../include/functions.php:2942
+#: ../../include/functions.php:2968
 msgid "File upload stopped by extension"
 msgstr "Subida de archivo cancelada por la extensión"
 
-#: ../../include/functions.php:2946
+#: ../../include/functions.php:2972
 msgid "Unknown upload error"
 msgstr "Error desconocido al subir el archivo"
 
-#: ../../include/functions.php:3057
+#: ../../include/functions.php:3083
 msgid "No data found to export"
 msgstr "Datos no encontrados para exportar"
 
-#: ../../include/functions.php:3378 ../../operation/gis_maps/render_view.php:149
+#: ../../include/functions.php:3404 ../../operation/gis_maps/render_view.php:149
 msgid "5 seconds"
 msgstr "5 segundos"
 
-#: ../../include/functions.php:3379 ../../operation/gis_maps/render_view.php:150
+#: ../../include/functions.php:3405 ../../operation/gis_maps/render_view.php:150
 msgid "10 seconds"
 msgstr "10 segundos"
 
-#: ../../include/functions.php:3380
+#: ../../include/functions.php:3406
 msgid "15 seconds"
 msgstr "15 segundos"
 
-#: ../../include/functions.php:3381 ../../include/ajax/heatmap.ajax.php:50
+#: ../../include/functions.php:3407 ../../include/ajax/heatmap.ajax.php:50
 #: ../../include/class/AgentsAlerts.class.php:804 ../../operation/heatmap.php:175
 #: ../../operation/gis_maps/render_view.php:151
 msgid "30 seconds"
 msgstr "30 segundos"
 
-#: ../../include/functions.php:3382 ../../include/ajax/heatmap.ajax.php:51
+#: ../../include/functions.php:3408 ../../include/ajax/heatmap.ajax.php:51
 #: ../../include/class/AgentsAlerts.class.php:805 ../../operation/heatmap.php:176
 #: ../../operation/gis_maps/render_view.php:152
 msgid "1 minute"
 msgstr "1 minuto"
 
-#: ../../include/functions.php:3383
+#: ../../include/functions.php:3409
 #: ../../include/class/AgentsAlerts.class.php:806
 #: ../../operation/gis_maps/render_view.php:153
 msgid "2 minutes"
 msgstr "2 minutos"
 
-#: ../../include/functions.php:3384 ../../include/ajax/heatmap.ajax.php:53
+#: ../../include/functions.php:3410 ../../include/ajax/heatmap.ajax.php:53
 #: ../../include/ajax/module.php:205
 #: ../../include/class/AgentsAlerts.class.php:807 ../../operation/heatmap.php:178
 #: ../../operation/gis_maps/render_view.php:154
 msgid "5 minutes"
 msgstr "5 minutos"
 
-#: ../../include/functions.php:3385
+#: ../../include/functions.php:3411
 msgid "15 minutes"
 msgstr "15 minutos"
 
-#: ../../include/functions.php:3386 ../../include/ajax/module.php:206
+#: ../../include/functions.php:3412 ../../include/ajax/module.php:206
 msgid "30 minutes"
 msgstr "30 minutos"
 
-#: ../../include/functions.php:3901
+#: ../../include/functions.php:3927
 msgid "Summatory series"
 msgstr "Series sumatorias"
 
-#: ../../include/functions.php:3905
+#: ../../include/functions.php:3931
 msgid "Average series"
 msgstr "Series de media"
 
-#: ../../include/functions.php:3933 ../../include/functions.php:3952
-#: ../../include/functions.php:3966 ../../include/functions.php:3988
-#: ../../include/functions.php:4069 ../../include/functions.php:4146
+#: ../../include/functions.php:3959 ../../include/functions.php:3978
+#: ../../include/functions.php:3992 ../../include/functions.php:4014
+#: ../../include/functions.php:4095 ../../include/functions.php:4172
 msgid "Unit "
 msgstr "Unidad "
 
-#: ../../include/functions.php:4014 ../../include/functions.php:4079
+#: ../../include/functions.php:4040 ../../include/functions.php:4105
 msgid "Min:"
 msgstr "Mín.:"
 
-#: ../../include/functions.php:4021 ../../include/functions.php:4088
+#: ../../include/functions.php:4047 ../../include/functions.php:4114
 msgid "Max:"
 msgstr "Máx.:"
 
-#: ../../include/functions.php:4028 ../../include/functions.php:4097
+#: ../../include/functions.php:4054 ../../include/functions.php:4123
 msgid "Avg:"
 msgstr "Media:"
 
-#: ../../include/functions.php:4143 ../../include/functions.php:4151
+#: ../../include/functions.php:4169 ../../include/functions.php:4177
 msgid "of module"
 msgstr "de módulo"
 
-#: ../../include/functions.php:4170
+#: ../../include/functions.php:4196
 msgid "Projection"
 msgstr "Proyección"
 
-#: ../../include/functions.php:5990
+#: ../../include/functions.php:6039
 msgid "Testing Pandora FMS email"
 msgstr "Probando el email de Pandora FMS"
 
-#: ../../include/functions.php:6003
+#: ../../include/functions.php:6052
 msgid ""
 "This is an email test sent from Pandora FMS. If you can read this, your "
 "configuration works."
@@ -42914,22 +42974,22 @@ msgstr ""
 "Este es un email de prueba enviado desde Pandora FMS. Si lo ha recibido "
 "significa que la configuración funciona."
 
-#: ../../include/functions.php:6237
-#: ../../include/class/ConsoleSupervisor.php:1494
-#: ../../include/class/ConsoleSupervisor.php:1518
-#: ../../include/class/ConsoleSupervisor.php:1547
-#: ../../include/class/ConsoleSupervisor.php:1629
+#: ../../include/functions.php:6286
+#: ../../include/class/ConsoleSupervisor.php:1490
+#: ../../include/class/ConsoleSupervisor.php:1514
+#: ../../include/class/ConsoleSupervisor.php:1543
+#: ../../include/class/ConsoleSupervisor.php:1624
 #, php-format
 msgid "Not recommended '%s' value in PHP configuration"
 msgstr "Valor '%s' no recomendado en la configuración de PHP"
 
-#: ../../include/functions.php:6238
+#: ../../include/functions.php:6287
 msgid "Recommended value is: -1"
 msgstr "El valor recomendado es: -1"
 
-#: ../../include/functions.php:6239
-#: ../../include/class/ConsoleSupervisor.php:1553
-#: ../../include/class/ConsoleSupervisor.php:1635
+#: ../../include/functions.php:6288
+#: ../../include/class/ConsoleSupervisor.php:1549
+#: ../../include/class/ConsoleSupervisor.php:1630
 msgid ""
 "Please, change it on your PHP configuration file (php.ini) or contact with "
 "administrator"
@@ -42937,7 +42997,7 @@ msgstr ""
 "Por favor, cámbialo en el archivo de configuración de PHP (php.ini) o contacta "
 "con un administrador."
 
-#: ../../include/functions.php:6240 ../../general/login_help_dialog.php:96
+#: ../../include/functions.php:6289 ../../general/login_help_dialog.php:96
 #: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:142
 msgid "Documentation"
 msgstr "Documentación"
@@ -43065,9 +43125,9 @@ msgstr "Error al eliminar la plantilla de alerta. Id_template no existe."
 msgid "Successful delete of alert template."
 msgstr "Plantilla de alerta borrada correctamente."
 
-#: ../../include/functions_api.php:6453 ../../include/functions_api.php:11966
-#: ../../include/functions_api.php:12032 ../../include/functions_api.php:12313
-#: ../../include/functions_api.php:12393
+#: ../../include/functions_api.php:6453 ../../include/functions_api.php:11971
+#: ../../include/functions_api.php:12037 ../../include/functions_api.php:12318
+#: ../../include/functions_api.php:12398
 #, php-format
 msgid "%d agents affected"
 msgstr "%d agentes afectados"
@@ -43165,168 +43225,168 @@ msgstr "Módulo SNMP de la política actualizado"
 msgid "Successful deletion"
 msgstr "Eliminado correctamente."
 
-#: ../../include/functions_api.php:9613
+#: ../../include/functions_api.php:9614
 msgid "User created."
 msgstr "Usuario creado."
 
-#: ../../include/functions_api.php:9706
+#: ../../include/functions_api.php:9707
 msgid "User updated."
 msgstr "Usuario actualizado."
 
-#: ../../include/functions_api.php:9783
+#: ../../include/functions_api.php:9784
 msgid "Enabled user."
 msgstr "Usuario habilitado"
 
-#: ../../include/functions_api.php:9791
+#: ../../include/functions_api.php:9792
 msgid "Disabled user."
 msgstr "Usuario deshabilitado"
 
-#: ../../include/functions_api.php:10086
+#: ../../include/functions_api.php:10087
 #, php-format
 msgid "Template have been inserted in %d agents."
 msgstr "Las plantillas se han insertado en %d agentes."
 
-#: ../../include/functions_api.php:10258
+#: ../../include/functions_api.php:10263
 msgid "XML file was generated successfully in path: "
 msgstr "El archivo XML se ha creado correctamente en la ruta: "
 
-#: ../../include/functions_api.php:10398
+#: ../../include/functions_api.php:10403
 #, php-format
 msgid "Module has been created in %d agents."
 msgstr "El módulo se ha cread en %d agentes."
 
-#: ../../include/functions_api.php:10526
+#: ../../include/functions_api.php:10531
 #, php-format
 msgid "Action has been set for %d agents."
 msgstr "La acción se ha asignado a %d agentes."
 
-#: ../../include/functions_api.php:11566
+#: ../../include/functions_api.php:11571
 msgid "User deleted."
 msgstr "Usuario borrado."
 
-#: ../../include/functions_api.php:11625
+#: ../../include/functions_api.php:11630
 msgid "User profile added."
 msgstr "Perfil de usuario añadido."
 
-#: ../../include/functions_api.php:11690
+#: ../../include/functions_api.php:11695
 msgid "User profile deleted."
 msgstr "Perfil de usuario eliminado."
 
-#: ../../include/functions_api.php:11973
+#: ../../include/functions_api.php:11978
 msgid "Module disabled successfully."
 msgstr "Módulo deshabilitado correctamente."
 
-#: ../../include/functions_api.php:11975
+#: ../../include/functions_api.php:11980
 msgid "The module could not be disabled."
 msgstr "No se ha podido deshabilitar el módulo."
 
-#: ../../include/functions_api.php:12039
+#: ../../include/functions_api.php:12044
 msgid "Module enabled successfully."
 msgstr "Módulo habilitado correctamente."
 
-#: ../../include/functions_api.php:12041
+#: ../../include/functions_api.php:12046
 msgid "The module could not be enabled."
 msgstr "El módulo no se ha podido habilitar."
 
-#: ../../include/functions_api.php:12089 ../../include/functions_api.php:12142
+#: ../../include/functions_api.php:12094 ../../include/functions_api.php:12147
 msgid "The alert could not be disabled."
 msgstr "La alerta no se ha podido deshabilitar."
 
-#: ../../include/functions_api.php:12189 ../../include/functions_api.php:12242
+#: ../../include/functions_api.php:12194 ../../include/functions_api.php:12247
 msgid "The alert could not be enabled."
 msgstr "La alerta no se ha podido habilitar."
 
-#: ../../include/functions_api.php:13519
+#: ../../include/functions_api.php:13524
 msgid "Enabled agent."
 msgstr "Agente habilitado"
 
-#: ../../include/functions_api.php:13527
+#: ../../include/functions_api.php:13532
 msgid "Disabled agent."
 msgstr "Agente deshabilitado"
 
-#: ../../include/functions_api.php:14506
+#: ../../include/functions_api.php:14511
 msgid "Metaconsole and the licenses of all nodes were updated."
 msgstr "Se han actualizado la Metaconsola y las licencias de todos los nodos."
 
-#: ../../include/functions_api.php:14508
+#: ../../include/functions_api.php:14513
 #, php-format
 msgid "Metaconsole license updated but %d of %d node failed to sync."
 msgstr ""
 "Se ha actualizado la licencia de la Metaconsola, pero %d de %d nodo no se ha "
 "podido sincronizar."
 
-#: ../../include/functions_api.php:14511
+#: ../../include/functions_api.php:14516
 msgid "This function is for metaconsole only."
 msgstr "función exclusiva de la Metaconsola."
 
-#: ../../include/functions_api.php:14901 ../../include/functions_api.php:14972
+#: ../../include/functions_api.php:14906 ../../include/functions_api.php:14977
 msgid "Successfully deleted."
 msgstr "Eliminado correctamente"
 
-#: ../../include/functions_api.php:14931
+#: ../../include/functions_api.php:14936
 msgid "The user cannot access the cluster."
 msgstr "El usuario no puede acceder al cluster."
 
-#: ../../include/functions_api.php:15817
+#: ../../include/functions_api.php:15822
 msgid "Event filter successfully created."
 msgstr "Filtro de evento creado correctamente."
 
-#: ../../include/functions_api.php:16050
+#: ../../include/functions_api.php:16055
 msgid "Event filter successfully updated."
 msgstr "Filtro de evento creado correctamente."
 
-#: ../../include/functions_api.php:16091
+#: ../../include/functions_api.php:16096
 msgid "Event filter successfully deleted."
 msgstr "Filtro de evento borrado correctamente."
 
-#: ../../include/functions_api.php:16407
+#: ../../include/functions_api.php:16412
 msgid "Validated traps."
 msgstr "Traps validados."
 
-#: ../../include/functions_api.php:16434
+#: ../../include/functions_api.php:16439
 msgid "Deleted traps."
 msgstr "Traps eliminados."
 
-#: ../../include/functions_api.php:16627
+#: ../../include/functions_api.php:16632
 #, php-format
 msgid "Successfully updated module/alert count in id agent %d."
 msgstr ""
 "Recuento de módulos/alertas en ID de agente %d actualizado correctamente."
 
-#: ../../include/functions_api.php:16629
+#: ../../include/functions_api.php:16634
 msgid "Successfully updated module/alert count in all agents"
 msgstr ""
 "Recuento de módulos/alertas actualizado correctamente en todos los agentes"
 
-#: ../../include/functions_api.php:17103
+#: ../../include/functions_api.php:17108
 #, php-format
 msgid "Successfully added to delete pending id agent %d to id policy %d."
 msgstr ""
 "Se ha añadido correctamente el agente %d a pendiente de eliminación en la "
 "política %d."
 
-#: ../../include/functions_api.php:17292
+#: ../../include/functions_api.php:17297
 msgid "Error enable/disable discovery task. Id_user cannot be left blank."
 msgstr ""
 "Error al habilitar/deshabilitar la tarea discovery. Id_user no puede estar "
 "vacío."
 
-#: ../../include/functions_api.php:17300
+#: ../../include/functions_api.php:17305
 msgid ""
 "Error enable/disable discovery task. Enable/disable value cannot be left blank."
 msgstr ""
 "Error al habilitar/deshabilitar la tarea discovery. El valor de habilitar/"
 "deshabilitar no puede estar vacío."
 
-#: ../../include/functions_api.php:17325
+#: ../../include/functions_api.php:17330
 msgid "Error in discovery task enabling/disabling."
 msgstr "Error al habilitar/deshabilitar la tarea discovery."
 
-#: ../../include/functions_api.php:17333
+#: ../../include/functions_api.php:17338
 msgid "Enabled discovery task."
 msgstr "Tarea discovery habilitada."
 
-#: ../../include/functions_api.php:17341
+#: ../../include/functions_api.php:17346
 msgid "Disabled discovery task."
 msgstr "Tarea discovery deshabilitada."
 
@@ -43357,11 +43417,11 @@ msgstr "Crear un nuevo mapa dinámico radial"
 
 #: ../../include/functions_networkmap.php:2068
 #: ../../include/functions_maps.php:73
-#: ../../include/functions_planned_downtimes.php:966
+#: ../../include/functions_planned_downtimes.php:967
 msgid "Copy of "
 msgstr "Copiar de "
 
-#: ../../include/functions_networkmap.php:3505
+#: ../../include/functions_networkmap.php:3508
 msgid "Map not found."
 msgstr "Mapa no encontrado."
 
@@ -43487,10 +43547,10 @@ msgid "F."
 msgstr "F."
 
 #: ../../include/ajax/alert_list.ajax.php:341
-#: ../../operation/agentes/alerts_status.php:367
-#: ../../operation/agentes/alerts_status.php:368
-#: ../../operation/agentes/alerts_status.php:408
-#: ../../operation/agentes/alerts_status.php:409
+#: ../../operation/agentes/alerts_status.php:374
+#: ../../operation/agentes/alerts_status.php:375
+#: ../../operation/agentes/alerts_status.php:415
+#: ../../operation/agentes/alerts_status.php:416
 msgid "No alerts found"
 msgstr "No se encontró ninguna alerta"
 
@@ -43646,123 +43706,123 @@ msgstr "Se ha eliminado el filtro."
 msgid "Error delete filter."
 msgstr "Error al eliminar el filtro."
 
-#: ../../include/ajax/events.php:95
+#: ../../include/ajax/events.php:96
 msgid "Failed to retrieve comments"
 msgstr "No se han podido obtener los comentarios"
 
-#: ../../include/ajax/events.php:766
+#: ../../include/ajax/events.php:767
 msgid "New filter"
 msgstr "Nuevo filtro"
 
-#: ../../include/ajax/events.php:784
+#: ../../include/ajax/events.php:785
 msgid "Save in Group"
 msgstr "Guardar en el grupo"
 
-#: ../../include/ajax/events.php:820
+#: ../../include/ajax/events.php:821
 msgid "Overwrite filter"
 msgstr "Sobrescribir filtro"
 
-#: ../../include/ajax/events.php:891
+#: ../../include/ajax/events.php:892
 msgid "Filter name cannot be left blank"
 msgstr "El nombre del filtro no se puede dejar en blanco."
 
-#: ../../include/ajax/events.php:1242
+#: ../../include/ajax/events.php:1243
 msgid "unauthorized"
 msgstr "no autorizado"
 
-#: ../../include/ajax/events.php:1348
+#: ../../include/ajax/events.php:1349
 msgid "Error executing response"
 msgstr "Error al ejecutar respuesta"
 
-#: ../../include/ajax/events.php:1666
+#: ../../include/ajax/events.php:1673
 msgid "Related"
 msgstr "Relacionado"
 
-#: ../../include/ajax/events.php:1678
+#: ../../include/ajax/events.php:1685
 msgid "Agent fields"
 msgstr "Campos de agente"
 
-#: ../../include/ajax/events.php:1816
+#: ../../include/ajax/events.php:1823
 msgid "Error adding comment"
 msgstr "Error al añadir el comentario"
 
-#: ../../include/ajax/events.php:1823
+#: ../../include/ajax/events.php:1830
 msgid "Comment added successfully"
 msgstr "Comentario añadido correctamente"
 
-#: ../../include/ajax/events.php:1830
+#: ../../include/ajax/events.php:1837
 msgid "Error changing event status"
 msgstr "Error al cambiar el estado del evento"
 
-#: ../../include/ajax/events.php:1837
+#: ../../include/ajax/events.php:1844
 msgid "Event status changed successfully"
 msgstr "Estado del evento cambiado correctamente"
 
-#: ../../include/ajax/events.php:1844
+#: ../../include/ajax/events.php:1851
 msgid "Error changing event owner"
 msgstr "Error al cambiar el propietario del evento"
 
-#: ../../include/ajax/events.php:1851
+#: ../../include/ajax/events.php:1858
 msgid "Event owner changed successfully"
 msgstr "Propietario del evento cambiado correctamente"
 
-#: ../../include/ajax/events.php:1858
+#: ../../include/ajax/events.php:1865
 msgid "Error deleting event"
 msgstr "Error al eliminar evento"
 
-#: ../../include/ajax/events.php:1984
+#: ../../include/ajax/events.php:1991
 msgid "Show all Events 24h"
 msgstr "Mostrar todos los eventos en las últimas 24h"
 
-#: ../../include/ajax/events.php:2074
+#: ../../include/ajax/events.php:2085
 msgid "These commands will apply to all selected events"
 msgstr "Estos comandos se aplicarán en todos los eventos seleccionados"
 
-#: ../../include/ajax/events.php:2136
+#: ../../include/ajax/events.php:2147
 msgid "Total number of events in this node reached"
 msgstr "Se ha alcanzado el número total de eventos en este nodo"
 
-#: ../../include/ajax/events.php:2170
+#: ../../include/ajax/events.php:2181
 msgid "Total Events per node"
 msgstr "Total de eventos por nodo"
 
-#: ../../include/ajax/events.php:2224 ../../operation/events/events.php:1549
+#: ../../include/ajax/events.php:2235 ../../operation/events/events.php:1549
 msgid "Events list"
 msgstr "Lista de eventos"
 
-#: ../../include/ajax/events.php:2235
+#: ../../include/ajax/events.php:2246
 msgid "Console configuration"
 msgstr "Configuración de la consola"
 
-#: ../../include/ajax/events.php:2242
+#: ../../include/ajax/events.php:2253
 msgid "Set condition"
 msgstr "Establecer condición"
 
-#: ../../include/ajax/events.php:2249 ../../operation/events/sound_events.php:192
+#: ../../include/ajax/events.php:2260 ../../operation/events/sound_events.php:192
 msgid "All new events"
 msgstr "Todos los eventos nuevos"
 
-#: ../../include/ajax/events.php:2286
+#: ../../include/ajax/events.php:2297
 msgid "Sound duration"
 msgstr "Duración del sonido"
 
-#: ../../include/ajax/events.php:2317
+#: ../../include/ajax/events.php:2328
 msgid "Sound melody"
 msgstr "Melodía de sonido"
 
-#: ../../include/ajax/events.php:2331
+#: ../../include/ajax/events.php:2342
 msgid "Test sound"
 msgstr "Probar sonido"
 
-#: ../../include/ajax/events.php:2355
+#: ../../include/ajax/events.php:2366
 msgid "Discovered alerts"
 msgstr "Alertas descubiertas"
 
-#: ../../include/ajax/events.php:2362
+#: ../../include/ajax/events.php:2373
 msgid "No alerts discovered"
 msgstr "No hay alertas descubiertas"
 
-#: ../../include/ajax/events.php:2367
+#: ../../include/ajax/events.php:2378
 msgid "Congrats! there’s nothing to show"
 msgstr "¡Enhorabuena! No hay nada que mostrar"
 
@@ -43785,28 +43845,28 @@ msgstr "No hay monitores"
 #: ../../include/functions_agents.php:2974
 #: ../../include/functions_agents.php:3029
 #: ../../include/functions_agents.php:3084
-#: ../../include/functions_reporting.php:12635
+#: ../../include/functions_reporting.php:12921
 msgid "At least one module in CRITICAL status"
 msgstr "Al menos un módulo está en estado CRÍTICO"
 
 #: ../../include/functions_agents.php:2980
 #: ../../include/functions_agents.php:3039
 #: ../../include/functions_agents.php:3092
-#: ../../include/functions_reporting.php:12642
+#: ../../include/functions_reporting.php:12928
 msgid "At least one module in WARNING status"
 msgstr "Al menos un módulo está en estado de ADVERTENCIA"
 
 #: ../../include/functions_agents.php:2986
 #: ../../include/functions_agents.php:3049
 #: ../../include/functions_agents.php:3100
-#: ../../include/functions_reporting.php:12649
+#: ../../include/functions_reporting.php:12935
 msgid "At least one module is in UKNOWN status"
 msgstr "Al menos un módulo está en estado DESCONOCIDO"
 
 #: ../../include/functions_agents.php:2992
 #: ../../include/functions_agents.php:3059
 #: ../../include/functions_agents.php:3108
-#: ../../include/functions_reporting.php:12656
+#: ../../include/functions_reporting.php:12942
 msgid "All Monitors OK"
 msgstr "Todos los monitores OK"
 
@@ -43818,6 +43878,15 @@ msgstr "Alerta disparada en agente"
 msgid "Dialog response time"
 msgstr "Tiempo de respuesta del diálogo"
 
+#: ../../include/functions_inventory.php:115
+#: ../../include/functions_inventory.php:868
+msgid "No changes found"
+msgstr "No se han encontrado cambios"
+
+#: ../../include/functions_inventory.php:214
+msgid "Get CSV file"
+msgstr "Obtener archivo CSV"
+
 #: ../../include/functions_plugins.php:58
 #, php-format
 msgid "Failed to erase module %d: %s"
@@ -43868,31 +43937,31 @@ msgstr "no se ha podido añadir el archivo"
 msgid "File has an invalid extension"
 msgstr "El archivo tiene una extensión no válida"
 
-#: ../../include/functions_modules.php:4075
+#: ../../include/functions_modules.php:4150
 msgid "Realtime SNMP graph"
 msgstr "Gráfica SNMP en tiempo real"
 
-#: ../../include/functions_modules.php:4140
+#: ../../include/functions_modules.php:4215
 msgid "ALL"
 msgstr "TODO"
 
-#: ../../include/functions_modules.php:4156
+#: ../../include/functions_modules.php:4231
 msgid "NOT NORMAL"
 msgstr "NO NORMAL"
 
-#: ../../include/auth/mysql.php:335 ../../include/auth/mysql.php:363
+#: ../../include/auth/mysql.php:305 ../../include/auth/mysql.php:333
 msgid ""
 "Problems with configuration permissions. Please contact with Administrator"
 msgstr ""
 "Error con la configuración de los permisos. Por favor, contacta con el "
 "administrador."
 
-#: ../../include/auth/mysql.php:350 ../../include/auth/mysql.php:413
-#: ../../include/auth/mysql.php:428 ../../include/auth/mysql.php:459
+#: ../../include/auth/mysql.php:320 ../../include/auth/mysql.php:383
+#: ../../include/auth/mysql.php:398 ../../include/auth/mysql.php:429
 msgid "User not found in database or incorrect password"
 msgstr "Usuario no encontrado en la base de datos o contraseña incorrecta"
 
-#: ../../include/auth/mysql.php:376
+#: ../../include/auth/mysql.php:346
 msgid ""
 "Ooops User not found in\n"
 "\t\t\t\tdatabase or incorrect password"
@@ -43900,67 +43969,41 @@ msgstr ""
 "¡Uuups! Usuario no encontrado en \n"
 "\t\t\t\tbase de datos o contraseña incorrecta."
 
-#: ../../include/auth/mysql.php:781
+#: ../../include/auth/mysql.php:769
 msgid "Could not changes password on remote pandora"
 msgstr "No se pudo cambiar la contraseña en el Pandora FMS remoto."
 
-#: ../../include/auth/mysql.php:866
+#: ../../include/auth/mysql.php:854
 msgid "Your installation of PHP does not support LDAP"
 msgstr "Su instalación de PHP no es compatible con LDAP."
 
-#: ../../include/api.php:237
+#: ../../include/api.php:257
 msgid "User or group not specified"
 msgstr "Usuario o grupo no especificados"
 
-#: ../../include/api.php:238
+#: ../../include/api.php:258
 msgid "User, group not specified"
 msgstr "Usuario y grupo no especificados"
 
-#: ../../include/api.php:269
+#: ../../include/api.php:289
 msgid "User, group or profile not specified"
 msgstr "Usuario, grupo o perfil no especificados"
 
-#: ../../include/api.php:270
+#: ../../include/api.php:290
 msgid "User, group or profile status not specified"
 msgstr "Usuario, grupo o estado de perfil no especificados"
 
-#: ../../include/functions_graph.php:1089
-#: ../../include/functions_reporting.php:4678
-#: ../../include/functions_reporting.php:4721
-msgid "No data to display within the selected interval"
-msgstr "No hay datos en el intervalo seleccionado"
-
-#: ../../include/functions_graph.php:2639
+#: ../../include/functions_graph.php:2608
 msgid "Not fired alerts"
 msgstr "No se han disparado alertas."
 
-#: ../../include/functions_graph.php:2658 ../../include/functions_graph.php:2794
-#: ../../include/functions_graph.php:2892 ../../include/functions_graph.php:3862
-#: ../../include/functions_reporting.php:1952
-#: ../../include/functions_reporting.php:2199
-#: ../../include/functions_reporting.php:2214
-#: ../../include/functions_reporting.php:2242
-#: ../../include/functions_reporting.php:2274
-#: ../../include/functions_reporting.php:3833
-#: ../../include/functions_reporting.php:4201
-#: ../../include/functions_reporting.php:4229
-#: ../../include/functions_reporting.php:4261
-#: ../../include/functions_reporting.php:5234
-#: ../../include/functions_reporting.php:10881
-#: ../../include/functions_reporting.php:10909
-#: ../../include/functions_reporting.php:10941
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:514
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:479
-msgid "other"
-msgstr "otro"
-
-#: ../../include/functions_graph.php:3399 ../../include/functions_ui.php:3833
-#: ../../include/functions_events.php:108 ../../include/functions_events.php:2826
+#: ../../include/functions_graph.php:3236 ../../include/functions_ui.php:3837
+#: ../../include/functions_events.php:108 ../../include/functions_events.php:2805
 #: ../../operation/events/events.php:668
 msgid "SYSTEM"
 msgstr "SISTEMA"
 
-#: ../../include/functions_graph.php:5463
+#: ../../include/functions_graph.php:5251
 msgid "Main node"
 msgstr "Nodo principal"
 
@@ -44001,43 +44044,43 @@ msgstr "Otras direcciones IP"
 msgid "Next agent contact"
 msgstr "Siguiente contacto con el agente"
 
-#: ../../include/functions_treeview.php:702
-msgid "Edit cluster"
-msgstr "Editar cluster"
+#: ../../include/functions_treeview.php:697
+msgid "Go to cluster edition"
+msgstr "Ir a la edición del clúster"
 
-#: ../../include/functions_treeview.php:705
+#: ../../include/functions_treeview.php:700
 msgid "Go to agent edition"
 msgstr "Ir a \"editar agentes\""
 
-#: ../../include/functions_treeview.php:717
+#: ../../include/functions_treeview.php:712
 msgid "Agent data"
 msgstr "Datos de agentes"
 
-#: ../../include/functions_treeview.php:748
+#: ../../include/functions_treeview.php:743
 #: ../../operation/agentes/estado_generalagente.php:471
 msgid "Position (Long, Lat)"
 msgstr "Posición (longitud, latitud)"
 
-#: ../../include/functions_treeview.php:765
+#: ../../include/functions_treeview.php:760
 #: ../../operation/agentes/estado_generalagente.php:513
 msgid "Timezone Offset"
 msgstr "Zona horaria desactivada"
 
-#: ../../include/functions_treeview.php:797
+#: ../../include/functions_treeview.php:792
 msgid "Advanced information"
 msgstr "Información avanzada"
 
-#: ../../include/functions_treeview.php:810
+#: ../../include/functions_treeview.php:805
 msgid "Agent access rate (24h)"
 msgstr "Accesibilidad del agente (24h)"
 
-#: ../../include/functions_treeview.php:876
-#: ../../operation/agentes/pandora_networkmap.view.php:1273
+#: ../../include/functions_treeview.php:871
+#: ../../operation/agentes/pandora_networkmap.view.php:1277
 #: ../../operation/agentes/estado_generalagente.php:735
 msgid "Interface traffic"
 msgstr "Interfaz de tráfico"
 
-#: ../../include/functions_treeview.php:899
+#: ../../include/functions_treeview.php:894
 msgid "Interface information"
 msgstr "Interfaz de información"
 
@@ -44125,14 +44168,10 @@ msgstr "Gestionar comandos"
 msgid "Manage export targets"
 msgstr "Gestionar objetivos de exportación"
 
-#: ../../include/functions_menu.php:525 ../../operation/menu.php:138
+#: ../../include/functions_menu.php:525 ../../operation/menu.php:142
 msgid "SNMP trap generator"
 msgstr "Generador de traps SNMP"
 
-#: ../../include/functions_menu.php:526 ../../operation/menu.php:127
-msgid "SNMP console"
-msgstr "Consola SNMP"
-
 #: ../../include/functions_menu.php:528
 msgid "Manage incident"
 msgstr "Gestionar incidentes"
@@ -44145,6 +44184,51 @@ msgstr "Gestionar grupos"
 msgid "Administration"
 msgstr "Administración"
 
+#: ../../include/functions_menu.php:817 ../../include/functions_ui.php:287
+msgid "Information"
+msgstr "Información"
+
+#: ../../include/functions_menu.php:819 ../../include/functions_menu.php:961
+#: ../../include/class/Diagnostics.class.php:243
+msgid "System Info"
+msgstr "Información de Sistema"
+
+#: ../../include/functions_menu.php:820
+msgid "PHP System"
+msgstr "Sistema PHP"
+
+#: ../../include/functions_menu.php:835
+msgid "MR version"
+msgstr "Versión MR"
+
+#: ../../include/functions_menu.php:841
+msgid "Update manager"
+msgstr "Administrador de actualizaciones"
+
+#: ../../include/functions_menu.php:842
+msgid "System report"
+msgstr "Informe de sistema"
+
+#: ../../include/functions_menu.php:858
+#: ../../include/class/Diagnostics.class.php:235
+msgid "Database health status"
+msgstr "Estado de la base de datos"
+
+#: ../../include/functions_menu.php:888
+#: ../../include/class/Diagnostics.class.php:239
+msgid "Database status info"
+msgstr "Información sobre el estado de la base de datos"
+
+#: ../../include/functions_menu.php:926
+#: ../../include/class/Diagnostics.class.php:252
+#, php-format
+msgid "Tables fragmentation in the %s database"
+msgstr "Fragmentación de tablas de la base de datos de %s"
+
+#: ../../include/functions_menu.php:1012
+msgid "PHP system"
+msgstr "Sistema PHP"
+
 #: ../../include/functions_incidents.php:29
 #: ../../include/functions_incidents.php:55
 msgid "Informative"
@@ -44661,8 +44745,8 @@ msgid "Please check if the email configuration is correct."
 msgstr "Por favor, confirma que la configuración de email es correcta."
 
 #: ../../include/functions_profile.php:188
-#: ../../operation/users/user_edit.php:812
-#: ../../operation/users/user_edit.php:821
+#: ../../operation/users/user_edit.php:886
+#: ../../operation/users/user_edit.php:895
 msgid "Profiles/Groups assigned to this user"
 msgstr "Perfiles/Grupos asignados a este usuario"
 
@@ -44682,10 +44766,6 @@ msgstr "Top de protocolos TCP"
 msgid "Top UDP protocols"
 msgstr "Top de protocolos UDP"
 
-#: ../../include/functions_ui.php:287
-msgid "Information"
-msgstr "Información"
-
 #: ../../include/functions_ui.php:465
 msgid "Request successfully processed"
 msgstr "Petición procesada correctamente"
@@ -44722,7 +44802,7 @@ msgstr ""
 msgid "Unknown option."
 msgstr "Opción desconocida."
 
-#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2494
+#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2470
 msgid "the Flexible Monitoring System"
 msgstr "Sistema Flexible de Monitorización"
 
@@ -44731,71 +44811,71 @@ msgstr "Sistema Flexible de Monitorización"
 msgid "Total items: %s"
 msgstr "Número total de elementos: %s"
 
-#: ../../include/functions_ui.php:2540
+#: ../../include/functions_ui.php:2544
 msgid "Unknown type"
 msgstr "Tipo desconocido"
 
-#: ../../include/functions_ui.php:3443
+#: ../../include/functions_ui.php:3447
 msgid "No matching records found"
 msgstr "No se encontraron registros coincidentes"
 
-#: ../../include/functions_ui.php:3444
+#: ../../include/functions_ui.php:3448
 msgid "No data available in table"
 msgstr "No hay datos disponibles en la tabla"
 
-#: ../../include/functions_ui.php:3539 ../../include/functions_ui.php:3540
+#: ../../include/functions_ui.php:3543 ../../include/functions_ui.php:3544
 msgid "Export current page to CSV"
 msgstr "Exportar página actual a CSV"
 
-#: ../../include/functions_ui.php:3824 ../../include/functions_events.php:75
+#: ../../include/functions_ui.php:3828 ../../include/functions_events.php:75
 #: ../../include/functions_events.php:101 ../../operation/events/events.php:659
 #: ../../operation/events/events.php:723
 msgid "ALERT"
 msgstr "ALERTA"
 
-#: ../../include/functions_ui.php:3902 ../../include/functions_events.php:167
+#: ../../include/functions_ui.php:3906 ../../include/functions_events.php:167
 #: ../../operation/events/events.php:583
 msgid "MAINTENANCE"
 msgstr "MANTENIMIENTO"
 
-#: ../../include/functions_ui.php:3907 ../../include/functions_events.php:170
+#: ../../include/functions_ui.php:3911 ../../include/functions_events.php:170
 #: ../../operation/events/events.php:588
 msgid "INFORMATIONAL"
 msgstr "INFORMATIVO"
 
-#: ../../include/functions_ui.php:3927 ../../include/functions_events.php:176
+#: ../../include/functions_ui.php:3931 ../../include/functions_events.php:176
 #: ../../operation/events/events.php:598
 msgid "MINOR"
 msgstr "MENOR"
 
-#: ../../include/functions_ui.php:3932 ../../include/functions_events.php:173
+#: ../../include/functions_ui.php:3936 ../../include/functions_events.php:173
 #: ../../operation/events/events.php:593
 msgid "MAJOR"
 msgstr "MAYOR"
 
-#: ../../include/functions_ui.php:4751 ../../include/functions_html.php:930
+#: ../../include/functions_ui.php:4755 ../../include/functions_html.php:930
 #: ../../include/functions_html.php:3392 ../../include/functions_html.php:3884
-#: ../../include/functions_reporting.php:11686
-#: ../../include/functions_reporting.php:11843
-#: ../../include/functions_reporting.php:11857
-#: ../../include/functions_reporting.php:14196
-#: ../../include/functions_reporting.php:14271
+#: ../../include/functions_reporting.php:11972
+#: ../../include/functions_reporting.php:12129
+#: ../../include/functions_reporting.php:12143
+#: ../../include/functions_reporting.php:14482
+#: ../../include/functions_reporting.php:14557
 msgid "Enterprise version not installed"
 msgstr "Versión Enterprise no instalada"
 
-#: ../../include/functions_ui.php:5133
+#: ../../include/functions_ui.php:5137
 msgid "Type at least two characters to search."
 msgstr "Escribe al menos dos caracteres para buscar."
 
-#: ../../include/functions_ui.php:6072
+#: ../../include/functions_ui.php:6076
 msgid "Unhandled error"
 msgstr "Error no tratado"
 
-#: ../../include/functions_ui.php:6073
+#: ../../include/functions_ui.php:6077
 msgid "An unhandled error occurs"
 msgstr "Ha ocurrido un error no tratado"
 
-#: ../../include/functions_ui.php:6344
+#: ../../include/functions_ui.php:6348
 #, php-format
 msgid ""
 "These controls are using the timezone of the system (%s) instead of yours "
@@ -44804,15 +44884,15 @@ msgstr ""
 "Estos controles emplean la zona horaria del sistema (%s) en vez de la suya "
 "(%s). La diferencia de horas con su zona horaria es %s."
 
-#: ../../include/functions_ui.php:6680
+#: ../../include/functions_ui.php:6684
 msgid "Execute query"
 msgstr "Ejecutar consulta"
 
-#: ../../include/functions_ui.php:6702
+#: ../../include/functions_ui.php:6706
 msgid "Results"
 msgstr "Resultados"
 
-#: ../../include/functions_ui.php:6766
+#: ../../include/functions_ui.php:6770
 msgid "Show password"
 msgstr "Mostrar contraseña"
 
@@ -44823,37 +44903,32 @@ msgstr "Mostrar contraseña"
 msgid "Last value: "
 msgstr "Último valor: "
 
-#: ../../include/functions_visual_map.php:2632
+#: ../../include/functions_visual_map.php:2634
 msgid "Agent successfully added to layout"
 msgstr "Agente añadido correctamente al diseño"
 
-#: ../../include/functions_visual_map.php:2824
+#: ../../include/functions_visual_map.php:2826
 msgid "Modules successfully added to layout"
 msgstr "Módulos añadidos correctamente al diseño"
 
-#: ../../include/functions_visual_map.php:3157
+#: ../../include/functions_visual_map.php:3108
 msgid "Agents successfully added to layout"
 msgstr "Agentes añadidos correctamente al diseño"
 
-#: ../../include/functions_visual_map.php:3553
+#: ../../include/functions_visual_map.php:3504
 msgid "Cannot load the visualmap"
 msgstr "No se puede cargar el mapa visual"
 
-#: ../../include/functions_visual_map.php:4224
-#: ../../include/rest-api/models/VisualConsole/Item.php:2107
+#: ../../include/functions_visual_map.php:4175
+#: ../../include/rest-api/models/VisualConsole/Item.php:2108
 msgid "Bars graph"
 msgstr "Gráfico de barras"
 
-#: ../../include/functions_visual_map.php:4234
-#: ../../include/rest-api/models/VisualConsole/Item.php:2115
+#: ../../include/functions_visual_map.php:4185
+#: ../../include/rest-api/models/VisualConsole/Item.php:2116
 msgid "Percentile bar"
 msgstr "Barra de porcentaje"
 
-#: ../../include/functions_visual_map.php:4239
-#: ../../include/rest-api/models/VisualConsole/Item.php:2123
-msgid "Circular progress bar"
-msgstr "Barra de progreso circular"
-
 #: ../../include/functions_clippy.php:152
 #, php-format
 msgid "%s assistant"
@@ -44899,7 +44974,7 @@ msgstr "Estado anormal"
 msgid "No actions defined"
 msgstr "No hay acciones definidas"
 
-#: ../../include/functions_alerts.php:2661
+#: ../../include/functions_alerts.php:2665
 msgid "Alert and command group does not match"
 msgstr "El grupo de la alerta y del comando no coinciden"
 
@@ -45016,6 +45091,10 @@ msgstr "Guardado"
 msgid "Time (ms)"
 msgstr "Tiempo (ms)"
 
+#: ../../include/functions_users.php:916
+msgid "NONE"
+msgstr "Ninguno"
+
 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438
 msgid "Add new range"
 msgstr "Añadir nuevo intervalo"
@@ -45025,24 +45104,24 @@ msgid "Current ranges"
 msgstr "Intervalos actuales"
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:217
-#: ../../include/rest-api/models/VisualConsole/Item.php:1994
+#: ../../include/rest-api/models/VisualConsole/Item.php:1995
 msgid "width"
 msgstr "ancho"
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:227
-#: ../../include/rest-api/models/VisualConsole/Item.php:2004
+#: ../../include/rest-api/models/VisualConsole/Item.php:2005
 msgid "height"
 msgstr "altura"
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:249
-#: ../../include/rest-api/models/VisualConsole/Item.php:2026
+#: ../../include/rest-api/models/VisualConsole/Item.php:2027
 msgid "X"
 msgstr "X"
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:273
 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:499
 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950
-#: ../../include/rest-api/models/VisualConsole/Item.php:2063
+#: ../../include/rest-api/models/VisualConsole/Item.php:2064
 msgid "Show on top"
 msgstr "Mostrar primero"
 
@@ -45066,20 +45145,20 @@ msgstr "Mostrar último valor"
 msgid "Avg Value"
 msgstr "Valor medio"
 
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:390
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:648
 msgid "Graph Type"
 msgstr "Tipo de gráfica"
 
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:275
 msgid "12h"
 msgstr "12h"
 
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:295
 msgid "Legend color"
 msgstr "Color de leyenda"
 
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:662
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:376
 #: ../../include/lib/Dashboard/Widgets/single_graph.php:336
 msgid "Show legend"
@@ -45088,8 +45167,8 @@ msgstr "Mostrar leyenda"
 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538
 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619
 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280
-#: ../../include/rest-api/models/VisualConsole/View.php:712
-#: ../../include/rest-api/models/VisualConsole/View.php:791
+#: ../../include/rest-api/models/VisualConsole/View.php:713
+#: ../../include/rest-api/models/VisualConsole/View.php:792
 msgid "Failed to connect to node"
 msgstr "No se ha podido conectar con el nodo"
 
@@ -45120,59 +45199,59 @@ msgstr "Tipo de elemento no válido ["
 msgid "Item type has no getFormInputs method ["
 msgstr "Este tipo de elemento no tiene método getFormInputs ["
 
-#: ../../include/rest-api/models/VisualConsole/View.php:729
+#: ../../include/rest-api/models/VisualConsole/View.php:730
 msgid "NetworkLink from"
 msgstr "NetworkLink de"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:733
-#: ../../include/rest-api/models/VisualConsole/View.php:812
+#: ../../include/rest-api/models/VisualConsole/View.php:734
+#: ../../include/rest-api/models/VisualConsole/View.php:813
 #, php-format
 msgid "Interface %s status"
 msgstr "Estado de la interfaz %s"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:738
-#: ../../include/rest-api/models/VisualConsole/View.php:817
+#: ../../include/rest-api/models/VisualConsole/View.php:739
+#: ../../include/rest-api/models/VisualConsole/View.php:818
 #: ../../operation/agentes/interface_traffic_graph_win.php:78
 msgid "In"
 msgstr "En"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:739
-#: ../../include/rest-api/models/VisualConsole/View.php:818
+#: ../../include/rest-api/models/VisualConsole/View.php:740
+#: ../../include/rest-api/models/VisualConsole/View.php:819
 #: ../../operation/agentes/interface_traffic_graph_win.php:79
 msgid "Out"
 msgstr "Fuera"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:808
+#: ../../include/rest-api/models/VisualConsole/View.php:809
 msgid "NetworkLink to"
 msgstr "NetworkLink a"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:860
+#: ../../include/rest-api/models/VisualConsole/View.php:861
 #, php-format
 msgid "Failed to generate charts: %s"
 msgstr "No se han podido generar las tablas: %s"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:1964
+#: ../../include/rest-api/models/VisualConsole/Item.php:1965
 msgid "Label position"
 msgstr "Posición de la etiqueta"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2051
+#: ../../include/rest-api/models/VisualConsole/Item.php:2052
 msgid "Link enabled"
 msgstr "Enlace habilitado"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2093
+#: ../../include/rest-api/models/VisualConsole/Item.php:2094
 msgid "Static graph"
 msgstr "Imagen estática"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2111
+#: ../../include/rest-api/models/VisualConsole/Item.php:2112
 msgid "Event History Graph"
 msgstr "Gráfica de histórico de eventos"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2119
+#: ../../include/rest-api/models/VisualConsole/Item.php:2120
 msgid "Percentile bubble"
 msgstr "Gráfica bubble de percentil"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2589
 #: ../../include/rest-api/models/VisualConsole/Item.php:2590
+#: ../../include/rest-api/models/VisualConsole/Item.php:2591
 msgid "Image Vc"
 msgstr "Imagen Vc"
 
@@ -45223,14 +45302,14 @@ msgstr "Pinche aquí para obtener más información"
 #: ../../include/functions_reports.php:681
 #: ../../include/functions_reports.php:686 ../../include/functions_groups.php:123
 #: ../../include/functions_groups.php:187 ../../operation/search_results.php:120
-#: ../../operation/agentes/ver_agente.php:1572
+#: ../../operation/agentes/ver_agente.php:1590
 msgid "Graphs"
 msgstr "Gráficos"
 
 #: ../../include/functions_reports.php:639
 #: ../../include/functions_reports.php:1090
-#: ../../include/functions_reporting.php:10317
-#: ../../include/functions_reporting.php:10477
+#: ../../include/functions_reporting.php:10535
+#: ../../include/functions_reporting.php:10695
 msgid "Simple graph"
 msgstr "Gráfico simple"
 
@@ -45351,12 +45430,12 @@ msgid "Inventory changes"
 msgstr "Inventario de cambios"
 
 #: ../../include/functions_reports.php:906
-#: ../../include/functions_reporting.php:6602
+#: ../../include/functions_reporting.php:6817
 msgid "Agent configuration"
 msgstr "Configuración de agentes"
 
 #: ../../include/functions_reports.php:910
-#: ../../include/functions_reporting.php:4863
+#: ../../include/functions_reporting.php:5126
 msgid "Group configuration"
 msgstr "Configuración del grupo"
 
@@ -45422,8 +45501,8 @@ msgstr "Día de la semana"
 msgid "Type at least two characters to search the module."
 msgstr "Escribe al menos dos caracteres para buscar el módulo."
 
-#: ../../include/functions_html.php:4818 ../../index.php:521 ../../index.php:804
-#: ../../index.php:878
+#: ../../include/functions_html.php:4818 ../../index.php:524 ../../index.php:807
+#: ../../index.php:881
 #, php-format
 msgid "%s cannot verify the origin of the request. Try again, please."
 msgstr "%s no puede verificar el origen de la petición. Vuelva a intentarlo."
@@ -45491,8 +45570,8 @@ msgid "Failed updated: User is not admin."
 msgstr "Fallo de actualización: el usuario no es administrador"
 
 #: ../../include/functions_config.php:188
-msgid "phantomjs config directory"
-msgstr "Directorio de configuración de phatomjs"
+msgid "Chromium config directory"
+msgstr "Directorio de configuración de Chromium"
 
 #: ../../include/functions_config.php:204
 msgid "SSL cert path"
@@ -45506,7 +45585,7 @@ msgstr "Usar certificado"
 msgid "Integria inventory"
 msgstr "Inventario Integria IMS"
 
-#: ../../include/functions_config.php:248 ../../include/functions_config.php:1797
+#: ../../include/functions_config.php:248 ../../include/functions_config.php:1778
 msgid "Integria API password"
 msgstr "Contraseña de la API de Integria IMS"
 
@@ -45565,39 +45644,39 @@ msgstr "Log de auditoría habilitado"
 msgid "Module Custom ID read only"
 msgstr "Solo lectura del ID personalizado del módulo"
 
-#: ../../include/functions_config.php:419
+#: ../../include/functions_config.php:424
 msgid "Replication DB host"
 msgstr "Host de la BD de replicación"
 
-#: ../../include/functions_config.php:423
+#: ../../include/functions_config.php:428
 msgid "Replication DB database"
 msgstr "Nombre de la BD de replicación"
 
-#: ../../include/functions_config.php:427
+#: ../../include/functions_config.php:432
 msgid "Replication DB user"
 msgstr "Usuario de la BD de replicación"
 
-#: ../../include/functions_config.php:431
+#: ../../include/functions_config.php:436
 msgid "Replication DB password"
 msgstr "Contraseña de la BD de replicación"
 
-#: ../../include/functions_config.php:435
+#: ../../include/functions_config.php:440
 msgid "Replication DB port"
 msgstr "Puerto de la BD de replicación"
 
-#: ../../include/functions_config.php:439
+#: ../../include/functions_config.php:444
 msgid "Metaconsole agent cache"
 msgstr "Caché de agente de la Metaconsola"
 
-#: ../../include/functions_config.php:447
+#: ../../include/functions_config.php:452
 msgid "Enable Update Manager"
 msgstr "Habilitar Update Manager"
 
-#: ../../include/functions_config.php:451
+#: ../../include/functions_config.php:456
 msgid "Ipam Ocuppied Manager Critical"
 msgstr "Ipam Ocuppied Manager Crítico"
 
-#: ../../include/functions_config.php:455
+#: ../../include/functions_config.php:460
 msgid "Ipam Ocuppied Manager Warning"
 msgstr "Ipam Ocuppied Manager Advertencia"
 
@@ -45657,330 +45736,330 @@ msgstr "Binario WMI por defecto"
 msgid "SNMP Interface Agent Wizard"
 msgstr "Asistente del agente de interfaz SNMP"
 
-#: ../../include/functions_config.php:1039
+#: ../../include/functions_config.php:1020
 msgid "Show QR code header"
 msgstr "Mostrar código QR en la cabecera"
 
-#: ../../include/functions_config.php:1067
+#: ../../include/functions_config.php:1048
 msgid "Custom logo white background"
 msgstr "Fondo blanco del logo personalizado"
 
-#: ../../include/functions_config.php:1095
+#: ../../include/functions_config.php:1076
 msgid "Custom title header"
 msgstr "Encabezado de título personalizado"
 
-#: ../../include/functions_config.php:1099
+#: ../../include/functions_config.php:1080
 msgid "Custom subtitle header"
 msgstr "Encabezado del subtítulo personalizado"
 
-#: ../../include/functions_config.php:1123
-#: ../../include/functions_config.php:1163
+#: ../../include/functions_config.php:1104
+#: ../../include/functions_config.php:1144
 msgid "Custom Docs url"
 msgstr "URL de documentos personalizados"
 
-#: ../../include/functions_config.php:1127
-#: ../../include/functions_config.php:1167
+#: ../../include/functions_config.php:1108
+#: ../../include/functions_config.php:1148
 msgid "Custom support url"
 msgstr "URL de soporte personalizado"
 
-#: ../../include/functions_config.php:1139
+#: ../../include/functions_config.php:1120
 msgid "Custom logo metaconsole (white background)"
 msgstr "Logo personalizado de la consola (fondo blanco)"
 
-#: ../../include/functions_config.php:1143
+#: ../../include/functions_config.php:1124
 msgid "Custom logo login metaconsole"
 msgstr "Logo personalizado de la conexión a la Metaconsola"
 
-#: ../../include/functions_config.php:1147
+#: ../../include/functions_config.php:1128
 msgid "Custom splash login metaconsole"
 msgstr "Conexión del Splash personalizado de la Metaconsola"
 
-#: ../../include/functions_config.php:1151
+#: ../../include/functions_config.php:1132
 msgid "Custom title1 login metaconsole"
 msgstr "Título1 conexión personalizado de la Metaconsola"
 
-#: ../../include/functions_config.php:1155
+#: ../../include/functions_config.php:1136
 msgid "Custom title2 login metaconsole"
 msgstr "Título2 conexión personalizado de la Metaconsola"
 
-#: ../../include/functions_config.php:1159
+#: ../../include/functions_config.php:1140
 msgid "Login background metaconsole"
 msgstr "Fondo de la conexión a la Metaconsola"
 
-#: ../../include/functions_config.php:1183
+#: ../../include/functions_config.php:1164
 msgid "Default line favourite_view for the Visual Console"
 msgstr "Línea por defecto favourite_view para la consola visual"
 
-#: ../../include/functions_config.php:1187
+#: ../../include/functions_config.php:1168
 msgid "Default line menu items for the Visual Console"
 msgstr "Elementos predeterminados de menú de línea para la consola visual"
 
-#: ../../include/functions_config.php:1199
+#: ../../include/functions_config.php:1180
 msgid "Default line menu items for the Services"
 msgstr "Linea de elementos de menú por defecto para los servicios"
 
-#: ../../include/functions_config.php:1231
+#: ../../include/functions_config.php:1212
 msgid "Show units in values report"
 msgstr "Mostrar unidades en los valores del informe"
 
-#: ../../include/functions_config.php:1239
+#: ../../include/functions_config.php:1220
 msgid "Autohidden menu"
 msgstr "Ocultar menú automáticamente"
 
-#: ../../include/functions_config.php:1243
+#: ../../include/functions_config.php:1224
 msgid "visual_animation"
 msgstr "visual_animation"
 
-#: ../../include/functions_config.php:1251
+#: ../../include/functions_config.php:1232
 msgid "Fixed graph"
 msgstr "Gráfico fijo"
 
-#: ../../include/functions_config.php:1259
+#: ../../include/functions_config.php:1240
 msgid "Paginate module"
 msgstr "Paginar vista de módulos"
 
-#: ../../include/functions_config.php:1263
+#: ../../include/functions_config.php:1244
 #: ../../include/class/ExternalTools.class.php:303
 msgid "Custom graphviz directory"
 msgstr "Directorio personalizado graphviz"
 
-#: ../../include/functions_config.php:1271
+#: ../../include/functions_config.php:1252
 msgid "Shortened module graph data"
 msgstr "Gráfico de módulo de datos acortados"
 
-#: ../../include/functions_config.php:1279
+#: ../../include/functions_config.php:1260
 msgid "Show empty groups in group view."
 msgstr "Mostrar grupos vacíos en la vista de grupos."
 
-#: ../../include/functions_config.php:1287
+#: ../../include/functions_config.php:1268
 msgid "Default type of module charts."
 msgstr "Tipo de gráficos de módulos por defecto"
 
-#: ../../include/functions_config.php:1291
+#: ../../include/functions_config.php:1272
 msgid "Default Number of elements in Custom Graph."
 msgstr "Número de elementos por defecto en gráfica personalizada."
 
-#: ../../include/functions_config.php:1295
+#: ../../include/functions_config.php:1276
 msgid "Default type of interface charts."
 msgstr "Tipo predefinido para los gráficos de interfaz"
 
-#: ../../include/functions_config.php:1311
+#: ../../include/functions_config.php:1292
 msgid "Display lateral menus with left click"
 msgstr "Mostrar los menús laterales con el clic izquierdo"
 
-#: ../../include/functions_config.php:1320
+#: ../../include/functions_config.php:1301
 msgid "Service item padding size"
 msgstr "Espacio entre los nodos del mapa de servicios"
 
-#: ../../include/functions_config.php:1325
+#: ../../include/functions_config.php:1306
 msgid "Default percentil"
 msgstr "Percentil por defecto"
 
-#: ../../include/functions_config.php:1329
+#: ../../include/functions_config.php:1310
 msgid "Default full scale (TIP)"
 msgstr "Escala completa por defecto (TIP)"
 
-#: ../../include/functions_config.php:1333
+#: ../../include/functions_config.php:1314
 msgid "Default soft graphs"
 msgstr "Gráficas soft por defecto"
 
-#: ../../include/functions_config.php:1337
+#: ../../include/functions_config.php:1318
 msgid "Default zoom graphs"
 msgstr "Gráficas ampliadas por defecto"
 
-#: ../../include/functions_config.php:1346
+#: ../../include/functions_config.php:1327
 msgid "Default height of the chart image"
 msgstr "Altuta de la imagen de la gráfica por defecto"
 
-#: ../../include/functions_config.php:1368
+#: ../../include/functions_config.php:1349
 msgid "Add the custom post process"
 msgstr "Añadir la personalización al proceso posterior"
 
-#: ../../include/functions_config.php:1376
+#: ../../include/functions_config.php:1357
 msgid "Delete the custom post process"
 msgstr "Borrar la personalización al proceso posterior"
 
-#: ../../include/functions_config.php:1430
+#: ../../include/functions_config.php:1411
 msgid "Add custom module unit"
 msgstr "Añadir unidad de módulo personalizado"
 
-#: ../../include/functions_config.php:1436
+#: ../../include/functions_config.php:1417
 msgid "Delete custom module unit"
 msgstr "Eliminar unidad de módulo personalizado"
 
-#: ../../include/functions_config.php:1493
+#: ../../include/functions_config.php:1474
 msgid "Thousand separator"
 msgstr "Separador de miles"
 
-#: ../../include/functions_config.php:1538
+#: ../../include/functions_config.php:1519
 msgid "IP ElasticSearch server"
 msgstr "IP del servidor ElasticSearch"
 
-#: ../../include/functions_config.php:1542
+#: ../../include/functions_config.php:1523
 msgid "Port ElasticSearch server"
 msgstr "Puerto del servidor ElasticSearch"
 
-#: ../../include/functions_config.php:1589
+#: ../../include/functions_config.php:1570
 msgid "Enable history trap"
 msgstr "Activar trap de histórico"
 
-#: ../../include/functions_config.php:1609
+#: ../../include/functions_config.php:1590
 msgid "Enable history database advanced"
 msgstr "Habilitar base de datos de histórico avanzada"
 
-#: ../../include/functions_config.php:1618
+#: ../../include/functions_config.php:1599
 msgid "String Days"
 msgstr "Días de cadena"
 
-#: ../../include/functions_config.php:1634
+#: ../../include/functions_config.php:1615
 msgid "Trap Days"
 msgstr "Días de traps"
 
-#: ../../include/functions_config.php:1642
+#: ../../include/functions_config.php:1623
 msgid "Trap history purge"
 msgstr "Purgado de histórico de traps"
 
-#: ../../include/functions_config.php:1714
+#: ../../include/functions_config.php:1695
 msgid "Historical database traps purge"
 msgstr "Purga de traps de la base de datos de histórico"
 
-#: ../../include/functions_config.php:1737
+#: ../../include/functions_config.php:1718
 msgid "eHorus user login"
 msgstr "Inicio de sesión del usuario a eHorus"
 
-#: ../../include/functions_config.php:1749
+#: ../../include/functions_config.php:1730
 msgid "eHorus API hostname"
 msgstr "Propietario de la API de eHorus"
 
-#: ../../include/functions_config.php:1753
+#: ../../include/functions_config.php:1734
 msgid "eHorus API port"
 msgstr "Puerto de la API de eHorus"
 
-#: ../../include/functions_config.php:1757
+#: ../../include/functions_config.php:1738
 msgid "eHorus request timeout"
 msgstr "Tiempo de respuesta de eHorus"
 
-#: ../../include/functions_config.php:1761
+#: ../../include/functions_config.php:1742
 msgid "eHorus id custom field"
 msgstr "ID del campo personalizado de eHorus"
 
-#: ../../include/functions_config.php:1767
+#: ../../include/functions_config.php:1748
 msgid "Integria user login"
 msgstr "Usuario de Integria"
 
-#: ../../include/functions_config.php:1775
+#: ../../include/functions_config.php:1756
 msgid "Integria user"
 msgstr "Usuario de Integria"
 
-#: ../../include/functions_config.php:1779
+#: ../../include/functions_config.php:1760
 msgid "Integria password"
 msgstr "Contraseña de Integria"
 
-#: ../../include/functions_config.php:1793
+#: ../../include/functions_config.php:1774
 msgid "integria API hostname"
 msgstr "Nombre del host de la API de Integria"
 
-#: ../../include/functions_config.php:1801
+#: ../../include/functions_config.php:1782
 msgid "Integria request timeout"
 msgstr "Límite de tiempo de las peticiones de Integria"
 
-#: ../../include/functions_config.php:1805
+#: ../../include/functions_config.php:1786
 msgid "Integria default group"
 msgstr "Grupo por defecto de Integria"
 
-#: ../../include/functions_config.php:1809
+#: ../../include/functions_config.php:1790
 msgid "Integria custom response default group"
 msgstr "Grupo de respuesta personalizada de Integria por defecto"
 
-#: ../../include/functions_config.php:1813
+#: ../../include/functions_config.php:1794
 msgid "Integria default priority"
 msgstr "Prioridad por defecto de Integria"
 
-#: ../../include/functions_config.php:1817
+#: ../../include/functions_config.php:1798
 msgid "Integria custom response default priority"
 msgstr "Prioridad de respuesta personalizada de Integria por defecto"
 
-#: ../../include/functions_config.php:1821
+#: ../../include/functions_config.php:1802
 msgid "Integria default creator"
 msgstr "Creador por defecto de Integria"
 
-#: ../../include/functions_config.php:1825
+#: ../../include/functions_config.php:1806
 msgid "Integria default owner"
 msgstr "Propietario de Integria por defecto"
 
-#: ../../include/functions_config.php:1829
+#: ../../include/functions_config.php:1810
 msgid "Integria custom response default owner"
 msgstr "Propietario de respuesta personalizada de Integria por defecto"
 
-#: ../../include/functions_config.php:1833
+#: ../../include/functions_config.php:1814
 msgid "Integria default ticket type"
 msgstr "Tipo de ticket de Integria por defecto"
 
-#: ../../include/functions_config.php:1837
+#: ../../include/functions_config.php:1818
 msgid "Integria custom response default ticket type"
 msgstr "Tipo de ticket de respuesta personalizado de Integria por defecto"
 
-#: ../../include/functions_config.php:1841
+#: ../../include/functions_config.php:1822
 msgid "Integria default ticket status"
 msgstr "Estado del ticket de Integria por defecto"
 
-#: ../../include/functions_config.php:1845
+#: ../../include/functions_config.php:1826
 msgid "Integria custom response default ticket status"
 msgstr "Estado del ticket de respuesta personalizada de Integria por defecto"
 
-#: ../../include/functions_config.php:1849
+#: ../../include/functions_config.php:1830
 msgid "Integria default ticket title"
 msgstr "Título del ticket de Integria por defecto"
 
-#: ../../include/functions_config.php:1853
+#: ../../include/functions_config.php:1834
 msgid "Integria custom response default ticket title"
 msgstr "Título del ticket de respuesta personalizada de Integria por defecto"
 
-#: ../../include/functions_config.php:1857
+#: ../../include/functions_config.php:1838
 msgid "Integria default ticket content"
 msgstr "Contenido del ticket de Integria por defecto"
 
-#: ../../include/functions_config.php:1861
+#: ../../include/functions_config.php:1842
 msgid "Integria custom response default ticket content"
 msgstr "Contenido del ticket de respuesta personalizada de Integria por defecto"
 
-#: ../../include/functions_config.php:1867
+#: ../../include/functions_config.php:1848
 msgid "Module Library User"
 msgstr "Usuario de la biblioteca de módulos"
 
-#: ../../include/functions_config.php:1871
+#: ../../include/functions_config.php:1852
 msgid "Module Library Password"
 msgstr "Contraseña de la biblioteca de módulos"
 
-#: ../../include/functions_config.php:1877
+#: ../../include/functions_config.php:1858
 msgid "WebSocket bind address"
 msgstr "Dirección de enlace WebSocket"
 
-#: ../../include/functions_config.php:1881
+#: ../../include/functions_config.php:1862
 msgid "WebSocket port"
 msgstr "Puerto WebSocket"
 
-#: ../../include/functions_config.php:1904
+#: ../../include/functions_config.php:1885
 #, php-format
 msgid "Update failed. The next values could not be updated: 
-%s" msgstr "" "Error de actualización. No se pudieron actualizar los siguientes valores:
" "-%s" -#: ../../include/functions_config.php:2490 +#: ../../include/functions_config.php:2466 #: ../../operation/agentes/networkmap.dinamic.php:226 msgid "Pandora FMS" msgstr "Pandora FMS" -#: ../../include/functions_config.php:2498 +#: ../../include/functions_config.php:2474 msgid "PandoraFMS Metaconsole" msgstr "Metaconsola PandoraFMS" -#: ../../include/functions_config.php:2502 +#: ../../include/functions_config.php:2478 msgid "Centralized operation console" msgstr "Consola de operación centralizada" -#: ../../include/functions_config.php:2506 +#: ../../include/functions_config.php:2482 msgid "PANDORA FMS" msgstr "PANDORA FMS" @@ -46229,7 +46308,7 @@ msgid "Something is wrong" msgstr "Algo ha salido mal" #: ../../include/class/HelpFeedBack.class.php:172 -#: ../../include/class/Diagnostics.class.php:1897 +#: ../../include/class/Diagnostics.class.php:1902 msgid "What happened?" msgstr "¿Qué ha pasado?" @@ -46242,7 +46321,7 @@ msgid "Submit" msgstr "Enviar" #: ../../include/class/HelpFeedBack.class.php:214 -#: ../../include/class/Diagnostics.class.php:1970 ../../general/header.php:356 +#: ../../include/class/Diagnostics.class.php:1975 ../../general/header.php:356 #: ../../general/header.php:358 msgid "Feedback" msgstr "Feedback" @@ -46285,27 +46364,10 @@ msgstr "Información del estado de %s" msgid "PHP setup" msgstr "Configuración PHP" -#: ../../include/class/Diagnostics.class.php:235 -msgid "Database health status" -msgstr "Estado de la base de datos" - -#: ../../include/class/Diagnostics.class.php:239 -msgid "Database status info" -msgstr "Información sobre el estado de la base de datos" - -#: ../../include/class/Diagnostics.class.php:243 -msgid "System Info" -msgstr "Información de Sistema" - #: ../../include/class/Diagnostics.class.php:247 msgid "MySQL Performance metrics" msgstr "Métricas de rendimiento de MySQL" -#: ../../include/class/Diagnostics.class.php:252 -#, php-format -msgid "Tables fragmentation in the %s database" -msgstr "Fragmentación de tablas de la base de datos de %s" - #: ../../include/class/Diagnostics.class.php:258 #, php-format msgid "%s logs dates" @@ -46728,7 +46790,7 @@ msgstr "La carpeta adjunta contiene menos de 700 archivos." msgid "Total files in the attached folder" msgstr "Total de archivos en la carpeta adjunta" -#: ../../include/class/Diagnostics.class.php:1280 +#: ../../include/class/Diagnostics.class.php:1285 msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." @@ -46736,31 +46798,31 @@ msgstr "" "La tabla tagente_datos contiene demasiados datos. Se recomienda una base de " "datos histórica." -#: ../../include/class/Diagnostics.class.php:1285 +#: ../../include/class/Diagnostics.class.php:1290 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "La tabla tagente_datos contiene una cantidad de datos aceptable" -#: ../../include/class/Diagnostics.class.php:1294 +#: ../../include/class/Diagnostics.class.php:1299 msgid "Total data in tagente_datos table" msgstr "Total de datos de la tabla tagente_datos" -#: ../../include/class/Diagnostics.class.php:1298 +#: ../../include/class/Diagnostics.class.php:1303 msgid "Tagente_datos table status" msgstr "Estado de la tabla tagente_datos" -#: ../../include/class/Diagnostics.class.php:1334 +#: ../../include/class/Diagnostics.class.php:1339 msgid "Threads" msgstr "Hilos" -#: ../../include/class/Diagnostics.class.php:1344 +#: ../../include/class/Diagnostics.class.php:1349 msgid "Total threads" msgstr "Total de hilos" -#: ../../include/class/Diagnostics.class.php:1351 +#: ../../include/class/Diagnostics.class.php:1356 msgid "Current pandora_server running threads" msgstr "Hilos pandora_server en ejecución actualmente" -#: ../../include/class/Diagnostics.class.php:1355 +#: ../../include/class/Diagnostics.class.php:1360 msgid "" "There's more pandora_server threads than configured, are you running multiple " "servers simultaneusly?." @@ -46768,7 +46830,7 @@ msgstr "" "Hay más hilos pandora_server de los configurados, ¿está ejecutando varios " "servidores a la vez?" -#: ../../include/class/Diagnostics.class.php:1489 +#: ../../include/class/Diagnostics.class.php:1494 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." @@ -46776,7 +46838,7 @@ msgstr "" "Compruebe la configuración del servidor de Pandora y asegúrese de que el " "demonio de mantenimiento de la base de datos está en ejecución." -#: ../../include/class/Diagnostics.class.php:1493 +#: ../../include/class/Diagnostics.class.php:1498 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" @@ -46784,56 +46846,56 @@ msgstr "" "Es muy importante que la base de datos esté actualizada para conseguir un " "rendimiento y resultados óptimos en Pandora FMS" -#: ../../include/class/Diagnostics.class.php:1755 +#: ../../include/class/Diagnostics.class.php:1760 msgid "You have more than 10 MB of logs" msgstr "Tiene más de 10MB de registros" -#: ../../include/class/Diagnostics.class.php:1758 +#: ../../include/class/Diagnostics.class.php:1763 msgid "You have less than 10 MB of logs" msgstr "Tiene menos de 10MB de logs" -#: ../../include/class/Diagnostics.class.php:1925 +#: ../../include/class/Diagnostics.class.php:1930 msgid "Include installation data" msgstr "Incluir datos de instalación" -#: ../../include/class/Diagnostics.class.php:1962 +#: ../../include/class/Diagnostics.class.php:1967 msgid "Hello Feedback-Men" msgstr "Hola Feedback-Men" -#: ../../include/class/Diagnostics.class.php:1972 +#: ../../include/class/Diagnostics.class.php:1977 msgid "Hello" msgstr "Hola" -#: ../../include/class/Diagnostics.class.php:1976 +#: ../../include/class/Diagnostics.class.php:1981 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "El usuario %s está notificando sobre un problema en su experiencia %s" -#: ../../include/class/Diagnostics.class.php:1985 +#: ../../include/class/Diagnostics.class.php:1990 msgid "Find some files attached to this mail" msgstr "Encontrar archivos adjuntos a este correo" -#: ../../include/class/Diagnostics.class.php:1988 +#: ../../include/class/Diagnostics.class.php:1993 msgid "PDF is the diagnostic information retrieved at report time" msgstr "" "El PDF es la información de diagnóstico obtenida en el momento del informe" -#: ../../include/class/Diagnostics.class.php:1991 +#: ../../include/class/Diagnostics.class.php:1996 msgid "CSV contains the statuses of every product file" msgstr "CSV contiene los estados de cada archivo de producto" -#: ../../include/class/Diagnostics.class.php:1996 +#: ../../include/class/Diagnostics.class.php:2001 #, php-format msgid "" "If you think this report must be escalated, feel free to forward this mail to " "\"%s\"" msgstr "Si cree que el informe debe escalarse, reenvíe este correo a \"%s\"" -#: ../../include/class/Diagnostics.class.php:2000 +#: ../../include/class/Diagnostics.class.php:2005 msgid "LEGAL WARNING" msgstr "AVISO LEGAL" -#: ../../include/class/Diagnostics.class.php:2002 +#: ../../include/class/Diagnostics.class.php:2007 msgid "" "The information contained in this transmission is privileged and confidential " "information intended only for the use of the individual or entity named above" @@ -46841,7 +46903,7 @@ msgstr "" "La información aquí incluida es privilegiada y confidencial, destinada al uso " "del individuo o la entidad arriba mencionada" -#: ../../include/class/Diagnostics.class.php:2006 +#: ../../include/class/Diagnostics.class.php:2011 msgid "" "If the reader of this message is not the intended recipient, you are hereby " "notified that any dissemination, distribution or copying of this communication " @@ -46850,11 +46912,11 @@ msgstr "" "Si el lector del mensaje no es el destinatario deseado, le comunicamos que " "está prohibido difundir, distribuir o copiar este comunicado" -#: ../../include/class/Diagnostics.class.php:2010 +#: ../../include/class/Diagnostics.class.php:2015 msgid "If you have received this transmission in error, do not read it" msgstr "Si ha recibido este mensaje por error, no lo lea" -#: ../../include/class/Diagnostics.class.php:2014 +#: ../../include/class/Diagnostics.class.php:2019 msgid "" "Please immediately reply to the sender that you have received this " "communication in error and then delete it" @@ -46862,21 +46924,21 @@ msgstr "" "Comuníquele al remitente que ha recibido esta comunicación por error y acto " "seguido elimínela" -#: ../../include/class/Diagnostics.class.php:2093 +#: ../../include/class/Diagnostics.class.php:2098 msgid "Invalid cron task" msgstr "Tarea cron no válida" -#: ../../include/class/Diagnostics.class.php:2094 +#: ../../include/class/Diagnostics.class.php:2099 msgid "Sending of information has been processed" msgstr "Se ha procesado el envío de información" -#: ../../include/class/Diagnostics.class.php:2129 -#: ../../include/class/Diagnostics.class.php:2139 +#: ../../include/class/Diagnostics.class.php:2134 +#: ../../include/class/Diagnostics.class.php:2144 msgid "Diagnostics Info" msgstr "Información de diagnóstico" -#: ../../include/class/Diagnostics.class.php:2247 -#: ../../include/class/Diagnostics.class.php:2257 +#: ../../include/class/Diagnostics.class.php:2252 +#: ../../include/class/Diagnostics.class.php:2262 msgid "PHP Info" msgstr "Información PHP" @@ -47210,7 +47272,7 @@ msgstr "WMI" #: ../../include/class/CredentialStore.class.php:989 #: ../../include/class/SnmpConsole.class.php:231 #: ../../operation/snmpconsole/snmp_statistics.php:102 -#: ../../operation/menu.php:143 +#: ../../operation/menu.php:147 msgid "SNMP" msgstr "SNMP" @@ -47325,9 +47387,9 @@ msgid "Trap subtype" msgstr "Subtipo trap" #: ../../include/class/SnmpConsole.class.php:354 -#: ../../include/functions_reporting.php:5571 -#: ../../include/functions_reporting.php:5588 -#: ../../include/functions_reporting.php:5605 +#: ../../include/functions_reporting.php:5786 +#: ../../include/functions_reporting.php:5803 +#: ../../include/functions_reporting.php:5820 msgid "Not triggered" msgstr "No disparado" @@ -47337,25 +47399,25 @@ msgstr "Disparado" #: ../../include/class/SnmpConsole.class.php:372 #: ../../include/class/SnmpConsole.class.php:521 -#: ../../include/class/SnmpConsole.class.php:794 -#: ../../include/functions_reporting.php:2258 -#: ../../include/functions_reporting.php:4245 -#: ../../include/functions_reporting.php:10925 +#: ../../include/class/SnmpConsole.class.php:795 +#: ../../include/functions_reporting.php:2361 +#: ../../include/functions_reporting.php:4493 +#: ../../include/functions_reporting.php:11196 msgid "Not validated" msgstr "Sin validar" #: ../../include/class/SnmpConsole.class.php:373 #: ../../include/class/SnmpConsole.class.php:512 -#: ../../include/class/SnmpConsole.class.php:804 -#: ../../include/functions_reporting.php:2257 -#: ../../include/functions_reporting.php:4244 -#: ../../include/functions_reporting.php:10924 +#: ../../include/class/SnmpConsole.class.php:805 +#: ../../include/functions_reporting.php:2360 +#: ../../include/functions_reporting.php:4492 +#: ../../include/functions_reporting.php:11195 #: ../../include/functions_events.php:2546 -#: ../../include/functions_events.php:3149 -#: ../../include/functions_events.php:3421 -#: ../../include/functions_events.php:3430 -#: ../../include/functions_events.php:3437 -#: ../../include/functions_events.php:3444 +#: ../../include/functions_events.php:3128 +#: ../../include/functions_events.php:3400 +#: ../../include/functions_events.php:3409 +#: ../../include/functions_events.php:3416 +#: ../../include/functions_events.php:3423 msgid "Validated" msgstr "Validado" @@ -47363,37 +47425,37 @@ msgstr "Validado" msgid "Group by Enterprise String/IP" msgstr "Agrupado por cadena Enterprise/IP" -#: ../../include/class/SnmpConsole.class.php:816 +#: ../../include/class/SnmpConsole.class.php:817 #: ../../operation/snmpconsole/snmp_statistics.php:197 msgid "View agent details" msgstr "Ver detalles del agente" -#: ../../include/class/SnmpConsole.class.php:1362 +#: ../../include/class/SnmpConsole.class.php:1363 msgid "Count:" msgstr "Contar:" -#: ../../include/class/SnmpConsole.class.php:1362 +#: ../../include/class/SnmpConsole.class.php:1363 msgid "First trap:" msgstr "Primer trap:" -#: ../../include/class/SnmpConsole.class.php:1362 +#: ../../include/class/SnmpConsole.class.php:1363 msgid "Last trap:" msgstr "Último trap:" -#: ../../include/class/SnmpConsole.class.php:1400 +#: ../../include/class/SnmpConsole.class.php:1401 msgid "Type:" msgstr "Tipo:" -#: ../../include/class/SnmpConsole.class.php:1414 +#: ../../include/class/SnmpConsole.class.php:1415 msgid "Enterprise String:" msgstr "Cadena Enterprise:" -#: ../../include/class/SnmpConsole.class.php:1423 -#: ../../include/class/SnmpConsole.class.php:1437 +#: ../../include/class/SnmpConsole.class.php:1424 +#: ../../include/class/SnmpConsole.class.php:1438 msgid "Variable bindings:" msgstr "Enlaces variables" -#: ../../include/class/SnmpConsole.class.php:1433 +#: ../../include/class/SnmpConsole.class.php:1434 msgid "See more details" msgstr "Ver más detalles" @@ -47577,42 +47639,42 @@ msgstr "¿Desea eliminar todas las plantillas?" msgid "Do you want delete the selected templates?" msgstr "¿Desea eliminar las plantillas seleccionadas?" -#: ../../include/class/ConsoleSupervisor.php:838 +#: ../../include/class/ConsoleSupervisor.php:834 msgid "Limited mode." msgstr "Modo limitado." -#: ../../include/class/ConsoleSupervisor.php:852 +#: ../../include/class/ConsoleSupervisor.php:848 msgid "License is about to expire" msgstr "La licencia está a punto de caducar" -#: ../../include/class/ConsoleSupervisor.php:855 +#: ../../include/class/ConsoleSupervisor.php:851 msgid "Support is about to expire" msgstr "El servicio de soporte está a punto de caducar" -#: ../../include/class/ConsoleSupervisor.php:873 +#: ../../include/class/ConsoleSupervisor.php:869 msgid "Expired license" msgstr "Licencia caducada" -#: ../../include/class/ConsoleSupervisor.php:874 +#: ../../include/class/ConsoleSupervisor.php:870 msgid "Your license has expired. Please, contact our sales department." msgstr "" "La licencia ha caducado. Póngase en contacto con el departamento comercial." -#: ../../include/class/ConsoleSupervisor.php:876 +#: ../../include/class/ConsoleSupervisor.php:872 msgid "Support expired" msgstr "Soporte caducado" -#: ../../include/class/ConsoleSupervisor.php:877 +#: ../../include/class/ConsoleSupervisor.php:873 msgid "This license is outside of support. Please, contact our sales department." msgstr "" "Esta licencia ya no cuenta con soporte. Póngase en contacto con el " "departamento comercial." -#: ../../include/class/ConsoleSupervisor.php:958 +#: ../../include/class/ConsoleSupervisor.php:954 msgid "Attachment directory is not writable" msgstr "No puede escribir en el directorio de adjuntos" -#: ../../include/class/ConsoleSupervisor.php:960 +#: ../../include/class/ConsoleSupervisor.php:956 #, php-format msgid "" "Directory %s is not writable. Please, configure corresponding permissions." @@ -47620,11 +47682,11 @@ msgstr "" "No se ha podido escribir en el directorio de %s. Configure los permisos " "pertinentes." -#: ../../include/class/ConsoleSupervisor.php:980 +#: ../../include/class/ConsoleSupervisor.php:976 msgid "There are too many files in attachment directory" msgstr "Ha superado el límite de archivos en el directorio de adjuntos" -#: ../../include/class/ConsoleSupervisor.php:982 +#: ../../include/class/ConsoleSupervisor.php:978 #, php-format msgid "" "There are more than %d files in attachment, consider cleaning up attachment " @@ -47633,11 +47695,11 @@ msgstr "" "Hay más de %d archivos en adjuntos, vacíe el directorio de adjuntos " "manualmente." -#: ../../include/class/ConsoleSupervisor.php:1014 +#: ../../include/class/ConsoleSupervisor.php:1010 msgid "Remote configuration directory is not readable" msgstr "No se ha podido leer el directorio de configuración remota" -#: ../../include/class/ConsoleSupervisor.php:1016 +#: ../../include/class/ConsoleSupervisor.php:1012 #, php-format msgid "" "Remote configuration directory %s is not readable. Please, adjust " @@ -47646,11 +47708,11 @@ msgstr "" "No se ha podido leer el directorio de configuración remota de %s. Modifique la " "configuración." -#: ../../include/class/ConsoleSupervisor.php:1033 +#: ../../include/class/ConsoleSupervisor.php:1029 msgid "Remote configuration directory is not writable" msgstr "No se ha podido escribir en el directorio de configuración remota" -#: ../../include/class/ConsoleSupervisor.php:1035 +#: ../../include/class/ConsoleSupervisor.php:1031 #, php-format msgid "" "Remote configuration directory %s is not writable. Please, adjust " @@ -47659,79 +47721,79 @@ msgstr "" "No se ha podido escribir en el directorio de configuración remota de %s. " "Modifique la configuración." -#: ../../include/class/ConsoleSupervisor.php:1051 +#: ../../include/class/ConsoleSupervisor.php:1047 msgid "Remote collections directory is not writable" msgstr "No se ha podido escribir en en el directorio de colecciones remotas." -#: ../../include/class/ConsoleSupervisor.php:1053 +#: ../../include/class/ConsoleSupervisor.php:1049 #, php-format msgid "Collections directory %s is not writable. Please, adjust configuration." msgstr "" "No se ha podido escribir en en el directorio de colecciones remotas de %s. " "Modifique la configuración." -#: ../../include/class/ConsoleSupervisor.php:1069 +#: ../../include/class/ConsoleSupervisor.php:1065 msgid "Remote md5 directory is not writable" msgstr "No se ha podido escribir en el directorio remoto md5" -#: ../../include/class/ConsoleSupervisor.php:1071 +#: ../../include/class/ConsoleSupervisor.php:1067 #, php-format msgid "MD5 directory %s is not writable. Please, adjust configuration." msgstr "" "No se ha podido escribir en el directorio MD5 de %s. Modifique la " "configuración." -#: ../../include/class/ConsoleSupervisor.php:1099 +#: ../../include/class/ConsoleSupervisor.php:1095 msgid "There are too much files in spool" msgstr "Demasiados archivos en spool" -#: ../../include/class/ConsoleSupervisor.php:1101 +#: ../../include/class/ConsoleSupervisor.php:1097 #, php-format msgid "" "There are more than %d files in %s. Consider checking DataServer performance" msgstr "Hay más de %d archivos en %s. Compruebe el rendimiento de DataServer." -#: ../../include/class/ConsoleSupervisor.php:1122 +#: ../../include/class/ConsoleSupervisor.php:1118 msgid "There are too many BADXML files in spool" msgstr "Demasiados archivos BADXML en spool" -#: ../../include/class/ConsoleSupervisor.php:1124 +#: ../../include/class/ConsoleSupervisor.php:1120 #, php-format msgid "There are more than %d files in %s. Consider checking software agents." msgstr "Hay más de %d archivos en %s. Compruebe los agentes software." -#: ../../include/class/ConsoleSupervisor.php:1211 +#: ../../include/class/ConsoleSupervisor.php:1207 #, php-format msgid "%s (%s) is lacking performance." msgstr "%s (%s) tiene bajo rendimiento." -#: ../../include/class/ConsoleSupervisor.php:1279 +#: ../../include/class/ConsoleSupervisor.php:1275 msgid "No servers available." msgstr "No hay servidores disponibles." -#: ../../include/class/ConsoleSupervisor.php:1280 +#: ../../include/class/ConsoleSupervisor.php:1276 msgid "" "There are no servers registered in this console. Please, check installation " "guide." msgstr "" "No hay servidores registrados en esta consola. Revise la guía de instalación." -#: ../../include/class/ConsoleSupervisor.php:1325 +#: ../../include/class/ConsoleSupervisor.php:1321 #, php-format msgid "%s (%s) has crashed." msgstr "%s (%s) se ha caído." -#: ../../include/class/ConsoleSupervisor.php:1331 +#: ../../include/class/ConsoleSupervisor.php:1327 #, php-format msgid "%s (%s) has crashed, please check log files." msgstr "%s (%s) se ha caído. Compruebe los archivos de log." -#: ../../include/class/ConsoleSupervisor.php:1338 +#: ../../include/class/ConsoleSupervisor.php:1334 #, php-format msgid "%s (%s) is not running." msgstr "%s (%s) no está en ejecución." -#: ../../include/class/ConsoleSupervisor.php:1343 +#: ../../include/class/ConsoleSupervisor.php:1339 #, php-format msgid "" "%s (%s) is not running. Please, check configuration file or remove this server " @@ -47740,24 +47802,24 @@ msgstr "" "%s (%s) no está en ejecución. Compruebe el archivo de configuración o elimine " "este servidor de la lista de servidores." -#: ../../include/class/ConsoleSupervisor.php:1395 +#: ../../include/class/ConsoleSupervisor.php:1391 msgid "No master servers found." msgstr "No se han encontrado servidores maestros." -#: ../../include/class/ConsoleSupervisor.php:1396 +#: ../../include/class/ConsoleSupervisor.php:1392 msgid "" "At least one server must be defined to run as master. Please, check " "documentation." msgstr "" "Al menos un servidor debe ejecutarse como maestro. Diríjase a la documentación." -#: ../../include/class/ConsoleSupervisor.php:1451 +#: ../../include/class/ConsoleSupervisor.php:1447 msgid "PHP safe mode is enabled. Some features may not work properly" msgstr "" "El modo seguro PHP está habilitado. Algunas funcionalidades podrían no " "funcionar correctamente" -#: ../../include/class/ConsoleSupervisor.php:1452 +#: ../../include/class/ConsoleSupervisor.php:1448 msgid "" "To disable it, go to your PHP configuration file (php.ini) and put safe_mode = " "Off (Do not forget to restart apache process after changes)" @@ -47766,22 +47828,22 @@ msgstr "" "escriba safe_mode = Off (No olvide reiniciar el proceso de apache después de " "los cambios)" -#: ../../include/class/ConsoleSupervisor.php:1470 +#: ../../include/class/ConsoleSupervisor.php:1466 #, php-format msgid "%s value in PHP configuration is not recommended" msgstr "No se recomienda el valor '%s' en la configuración PHP" -#: ../../include/class/ConsoleSupervisor.php:1474 +#: ../../include/class/ConsoleSupervisor.php:1470 #, php-format msgid "Recommended value is %s" msgstr "El valor recomendado es '%s'." -#: ../../include/class/ConsoleSupervisor.php:1475 -#: ../../include/class/ConsoleSupervisor.php:1499 +#: ../../include/class/ConsoleSupervisor.php:1471 +#: ../../include/class/ConsoleSupervisor.php:1495 msgid "Unlimited" msgstr "Sin límite" -#: ../../include/class/ConsoleSupervisor.php:1476 +#: ../../include/class/ConsoleSupervisor.php:1472 msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator (Do not forget to restart Apache process after)" @@ -47789,17 +47851,17 @@ msgstr "" "Modifíquelo en el archivo de configuración PHP (php.ini) o póngase en contacto " "con el administrador (no olvide reiniciar el proceso de Apache después)" -#: ../../include/class/ConsoleSupervisor.php:1498 -#: ../../include/class/ConsoleSupervisor.php:1522 -#: ../../include/class/ConsoleSupervisor.php:1551 -#: ../../include/class/ConsoleSupervisor.php:1633 +#: ../../include/class/ConsoleSupervisor.php:1494 +#: ../../include/class/ConsoleSupervisor.php:1518 +#: ../../include/class/ConsoleSupervisor.php:1547 +#: ../../include/class/ConsoleSupervisor.php:1628 #, php-format msgid "Recommended value is: %s" msgstr "El valor recomendado es: %s" -#: ../../include/class/ConsoleSupervisor.php:1500 -#: ../../include/class/ConsoleSupervisor.php:1524 -#: ../../include/class/ConsoleSupervisor.php:1571 +#: ../../include/class/ConsoleSupervisor.php:1496 +#: ../../include/class/ConsoleSupervisor.php:1520 +#: ../../include/class/ConsoleSupervisor.php:1567 msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator (Dont forget restart apache process after changes)" @@ -47807,17 +47869,17 @@ msgstr "" "Por favor, cámbialo en el archivo de configuración de PHP (php.ini) o contacta " "con un administrador (no olvides reiniciar el proceso Apache tras los cambios)." -#: ../../include/class/ConsoleSupervisor.php:1523 -#: ../../include/class/ConsoleSupervisor.php:1552 +#: ../../include/class/ConsoleSupervisor.php:1519 +#: ../../include/class/ConsoleSupervisor.php:1548 #, php-format msgid "%s or greater" msgstr "%s o mayor" -#: ../../include/class/ConsoleSupervisor.php:1570 +#: ../../include/class/ConsoleSupervisor.php:1566 msgid "Problems with disable_functions in php.ini" msgstr "Problemas con diable_functions en php.ini" -#: ../../include/class/ConsoleSupervisor.php:1571 +#: ../../include/class/ConsoleSupervisor.php:1567 msgid "" "The variable disable_functions contains functions system() or exec() in PHP " "configuration file (php.ini)" @@ -47825,23 +47887,23 @@ msgstr "" "La variable disable_funtionc contiene las funciones system() o exec() en el " "archivo de configuración PHP (php.ini)" -#: ../../include/class/ConsoleSupervisor.php:1588 -msgid "PhantomJS is not installed" -msgstr "PhantomJS no está instalado" +#: ../../include/class/ConsoleSupervisor.php:1583 +msgid "chromium is not installed" +msgstr "Chromium no está instalado" -#: ../../include/class/ConsoleSupervisor.php:1589 +#: ../../include/class/ConsoleSupervisor.php:1584 msgid "" "To be able to create images of the graphs for PDFs, please install the " -"PhantomJS extension. For that, it is necessary to follow these steps:" +"chromium extension. For that, it is necessary to follow these steps:" msgstr "" -"Para poder crear imágenes de las gráficas para PDFs, instale la extensión " -"PhantomJS. Para ello siga estos pasos:" +"Para poder crear imágenes de las gráficas para PDFs, instale la extensión de " +"Chromium. Para ello siga estos pasos:" -#: ../../include/class/ConsoleSupervisor.php:1610 +#: ../../include/class/ConsoleSupervisor.php:1605 msgid "PHP UPDATE REQUIRED" msgstr "PHP DEBE ACTUALIZARSE" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:30 msgid "" "For a correct operation of PandoraFMS, PHP must be updated to version 8.0 or " @@ -47850,31 +47912,31 @@ msgstr "" "Para que Pandora FMS funcione correctamente, PHP debe estar actualizado a la " "versión 8.0 o superior." -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:31 msgid "Otherwise, functionalities will be lost." msgstr "Si no, ciertas funcionalidades no estarán disponibles." -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:33 msgid "Report download in PDF format" msgstr "Descarga de informes en formato PDF" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:34 msgid "Emails Sending" msgstr "Envío de emails" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:35 msgid "Metaconsole Collections" msgstr "Colecciones de la metaconsola" -#: ../../include/class/ConsoleSupervisor.php:1677 +#: ../../include/class/ConsoleSupervisor.php:1672 msgid "Historical database not available" msgstr "Base de datos histórica no disponible" -#: ../../include/class/ConsoleSupervisor.php:1678 +#: ../../include/class/ConsoleSupervisor.php:1673 msgid "" "Historical database is enabled, though not accessible with the current " "configuration." @@ -47882,11 +47944,11 @@ msgstr "" "La base de datos histórica está habilitada pero no accesible con la " "configuración actual." -#: ../../include/class/ConsoleSupervisor.php:1721 +#: ../../include/class/ConsoleSupervisor.php:1716 msgid "Database maintenance problem" msgstr "Problema de mantenimiento de la base de datos" -#: ../../include/class/ConsoleSupervisor.php:1723 +#: ../../include/class/ConsoleSupervisor.php:1718 #, php-format msgid "" "Your database hasn't been through maintenance for 48hrs. Please, check " @@ -47897,11 +47959,11 @@ msgstr "" "Diríjase a la documentación para ver cómo llevar a cabo el proceso de " "mantenimiento en %s y habilítelo lo antes posible." -#: ../../include/class/ConsoleSupervisor.php:1783 +#: ../../include/class/ConsoleSupervisor.php:1778 msgid "Historical database maintenance problem." msgstr "Problema de mantenimiento de la base de datos histórica." -#: ../../include/class/ConsoleSupervisor.php:1785 +#: ../../include/class/ConsoleSupervisor.php:1780 #, php-format msgid "" "Your historical database hasn't been through maintenance for 48hrs. Please, " @@ -47912,11 +47974,11 @@ msgstr "" "Diríjase a la documentación para ver cómo llevar a cabo el proceso de " "mantenimiento en %s y habilítelo lo antes posible." -#: ../../include/class/ConsoleSupervisor.php:1823 +#: ../../include/class/ConsoleSupervisor.php:1818 msgid "Historical database MR mismatch" msgstr "Error de coincidencia de la base de datos histórica MR" -#: ../../include/class/ConsoleSupervisor.php:1824 +#: ../../include/class/ConsoleSupervisor.php:1819 msgid "" "Your historical database is not using the same schema as the main DB. This " "could produce anomalies while storing historical data." @@ -47924,29 +47986,29 @@ msgstr "" "La base de datos histórica no usa el mismo esquema que la base de datos " "principal. Esto podría causar anomalías al guardar datos de histórico." -#: ../../include/class/ConsoleSupervisor.php:1864 +#: ../../include/class/ConsoleSupervisor.php:1859 msgid "Log collector cannot connect to ElasticSearch" msgstr "El colector de logs no puede conectar con ElasticSearch" -#: ../../include/class/ConsoleSupervisor.php:1865 +#: ../../include/class/ConsoleSupervisor.php:1860 msgid "ElasticSearch is not available using current configuration." msgstr "ElasticSearch no está disponible con la configuración actual." -#: ../../include/class/ConsoleSupervisor.php:1934 +#: ../../include/class/ConsoleSupervisor.php:1929 msgid "Metaconsole DB is not available." msgstr "La base de datos de la Metaconsola no está disponible." -#: ../../include/class/ConsoleSupervisor.php:1935 +#: ../../include/class/ConsoleSupervisor.php:1930 msgid "Cannot connect with Metaconsole DB using current configuration." msgstr "" "No puede conectar con la base de datos de la Metaconsola con la configuración " "actual." -#: ../../include/class/ConsoleSupervisor.php:1963 +#: ../../include/class/ConsoleSupervisor.php:1958 msgid "Scheduled downtime running." msgstr "Ejecución de parada planificada." -#: ../../include/class/ConsoleSupervisor.php:1964 +#: ../../include/class/ConsoleSupervisor.php:1959 msgid "" "A scheduled downtime is running. Some monitoring data won't be available while " "downtime is taking place." @@ -47954,11 +48016,11 @@ msgstr "" "Se está ejecutando una parada planificada. Algunos de los datos de " "monitorización no estarán disponibles durante dicha parada." -#: ../../include/class/ConsoleSupervisor.php:2120 +#: ../../include/class/ConsoleSupervisor.php:2115 msgid "Downtime scheduled soon." msgstr "Parada planificada próximamente." -#: ../../include/class/ConsoleSupervisor.php:2122 +#: ../../include/class/ConsoleSupervisor.php:2117 #, php-format msgid "" "A scheduled downtime is going to be executed from %s to %s. Some monitoring " @@ -47967,30 +48029,30 @@ msgstr "" "Se ejecutará una parada planificada de %s a %s. Algunos de los datos de " "monitorización no estarán disponibles durante dicha parada." -#: ../../include/class/ConsoleSupervisor.php:2152 +#: ../../include/class/ConsoleSupervisor.php:2147 msgid "This instance is not registered in the Update manager section" msgstr "La instancia no está registrada en la sección Update manager" -#: ../../include/class/ConsoleSupervisor.php:2153 +#: ../../include/class/ConsoleSupervisor.php:2148 msgid "Click here to start the registration process" msgstr "Haga clic aquí para iniciar el proceso de registro" -#: ../../include/class/ConsoleSupervisor.php:2185 +#: ../../include/class/ConsoleSupervisor.php:2180 msgid "Default password for \"Admin\" user has not been changed" msgstr "No se ha cambiado la contraseña por defecto del usuario \"Admin\"" -#: ../../include/class/ConsoleSupervisor.php:2186 +#: ../../include/class/ConsoleSupervisor.php:2181 msgid "" "Please, change the default password since it is a commonly reported " "vulnerability." msgstr "" "Cambie la contraseña por defecto puesto que es una vulnerabilidad frecuente." -#: ../../include/class/ConsoleSupervisor.php:2221 +#: ../../include/class/ConsoleSupervisor.php:2216 msgid "Default font doesn't exist" msgstr "No existe una fuente por defecto" -#: ../../include/class/ConsoleSupervisor.php:2222 +#: ../../include/class/ConsoleSupervisor.php:2217 msgid "" "Your defined font doesn't exist or is not defined. Please, check font " "parameters in your config" @@ -47998,11 +48060,11 @@ msgstr "" "La fuente seleccionada no existe o no está definida. Compruebe los parámetros " "de fuente en la configuración" -#: ../../include/class/ConsoleSupervisor.php:2247 +#: ../../include/class/ConsoleSupervisor.php:2242 msgid "Developer mode is enabled" msgstr "El modo «desarrollador» está activado." -#: ../../include/class/ConsoleSupervisor.php:2249 +#: ../../include/class/ConsoleSupervisor.php:2244 #, php-format msgid "" "Your %s has the \"develop_bypass\" mode enabled. This is a developer mode and " @@ -48013,11 +48075,11 @@ msgstr "" "y debe estar desactivado en un entorno de producción. El valor se encuentra en " "el archivo principal index.php" -#: ../../include/class/ConsoleSupervisor.php:2273 +#: ../../include/class/ConsoleSupervisor.php:2268 msgid "Event storm protection is enabled." msgstr "La protección de tormenta de eventos está habilitada." -#: ../../include/class/ConsoleSupervisor.php:2274 +#: ../../include/class/ConsoleSupervisor.php:2269 msgid "" "Some events may get lost while this mode is enabled. The server must be " "restarted after altering this setting." @@ -48025,25 +48087,25 @@ msgstr "" "Podrían perderse algunos elementos al habilitar este modo. Reinicie el " "servidor después de las modificaciones" -#: ../../include/class/ConsoleSupervisor.php:2300 +#: ../../include/class/ConsoleSupervisor.php:2295 msgid "Failed to retrieve updates, please configure utility" msgstr "No se han podido obtener actualizaciones, configure la herramienta" -#: ../../include/class/ConsoleSupervisor.php:2318 +#: ../../include/class/ConsoleSupervisor.php:2313 #, php-format msgid "New %s Console update" msgstr "Nueva actualización de la consola %s" -#: ../../include/class/ConsoleSupervisor.php:2321 +#: ../../include/class/ConsoleSupervisor.php:2316 msgid "There is a new update available. Please.Sobre la actualización menor." -#: ../../include/class/ConsoleSupervisor.php:2385 +#: ../../include/class/ConsoleSupervisor.php:2380 msgid "Discovery relies on an appropriate cron setup." msgstr "Discovery depende de la configuración cron adecuada" -#: ../../include/class/ConsoleSupervisor.php:2401 +#: ../../include/class/ConsoleSupervisor.php:2396 msgid "Please, make sure process is not locked." msgstr "Asegúrese de que el proceso no está bloqueado." -#: ../../include/class/ConsoleSupervisor.php:2412 +#: ../../include/class/ConsoleSupervisor.php:2407 msgid "DiscoveryConsoleTasks is not configured." msgstr "DiscoveryConsoleTasks no está configurado." -#: ../../include/class/ConsoleSupervisor.php:2503 +#: ../../include/class/ConsoleSupervisor.php:2498 #, php-format msgid "%s version misaligned with Console" msgstr "La versión de %s no está alineada con la consola" -#: ../../include/class/ConsoleSupervisor.php:2507 +#: ../../include/class/ConsoleSupervisor.php:2502 #, php-format msgid "" "Server %s and this console have different versions. This might cause several " @@ -48078,20 +48140,20 @@ msgstr "" "El servidor de %s y la consola tienen diferentes versiones. Esto podría causar " "diversos fallos. Actualice el servidor." -#: ../../include/class/ConsoleSupervisor.php:2570 +#: ../../include/class/ConsoleSupervisor.php:2565 msgid "AllowOverride is disabled" msgstr "AllowOverride está deshabilitado" -#: ../../include/class/ConsoleSupervisor.php:2616 +#: ../../include/class/ConsoleSupervisor.php:2611 msgid "Desynchronized operation on the node " msgstr "Operación desincronizada en el nodo " -#: ../../include/class/ConsoleSupervisor.php:2639 +#: ../../include/class/ConsoleSupervisor.php:2634 msgid "Pandora FMS console log file changed location" msgstr "" "El archivo de logs de la consola de Pandora FMS ha cambiado de localización" -#: ../../include/class/ConsoleSupervisor.php:2643 +#: ../../include/class/ConsoleSupervisor.php:2638 #, php-format msgid "" "Pandora FMS console log file has been moved to new location %s/log. Currently " @@ -48102,12 +48164,12 @@ msgstr "" "localización %s/log. Actualmente tiene una versión operativa y obsoleta de " "este archivo en %s. Piense en eliminarlo." -#: ../../include/class/ConsoleSupervisor.php:2678 +#: ../../include/class/ConsoleSupervisor.php:2673 msgid "Pandora FMS audit log file changed location" msgstr "" "El archivo de log de auditoría de Pandora FMS ha cambiado de localización" -#: ../../include/class/ConsoleSupervisor.php:2682 +#: ../../include/class/ConsoleSupervisor.php:2677 #, php-format msgid "" "Pandora FMS audit log file has been moved to new location %s/log. Currently " @@ -48118,12 +48180,12 @@ msgstr "" "localización %s/log. Actualmente tiene una versión obsoleta e inoperativa de " "este archivo en %s. Piense en eliminarlo." -#: ../../include/class/ConsoleSupervisor.php:2768 +#: ../../include/class/ConsoleSupervisor.php:2735 #, php-format msgid "Node %s sync queue length exceeded, " msgstr "Longitud de la cola de sincronización de %s de nodo excedida, " -#: ../../include/class/ConsoleSupervisor.php:2770 +#: ../../include/class/ConsoleSupervisor.php:2737 #, php-format msgid "" "Synchronization queue lenght for node %s is %d items, this value should be 0 " @@ -48132,12 +48194,12 @@ msgstr "" "La longitud de la cola de sincronización para el %s de nodo es %d elementos, " "este valor debe ser 0 o inferior a %d, compruebe el estado de la cola." -#: ../../include/class/ConsoleSupervisor.php:2823 +#: ../../include/class/ConsoleSupervisor.php:2790 #, php-format msgid "Node %s sync queue failed, " msgstr "Error en la cola de sincronización de %s de nodo, " -#: ../../include/class/ConsoleSupervisor.php:2825 +#: ../../include/class/ConsoleSupervisor.php:2792 #, php-format msgid "" "Node %s cannot process synchronization queue due %s, please check the queue " @@ -48605,225 +48667,230 @@ msgstr " agentes" msgid " modules" msgstr " módulos" -#: ../../include/functions_reporting.php:1519 +#: ../../include/functions_reporting.php:1520 msgid "Top N" msgstr "Top N" -#: ../../include/functions_reporting.php:1705 +#: ../../include/functions_reporting.php:1706 msgid "Insuficient data" msgstr "Datos insuficientes" -#: ../../include/functions_reporting.php:2039 +#: ../../include/functions_reporting.php:2072 msgid "Event Report Group" msgstr "Informe de eventos del grupo" -#: ../../include/functions_reporting.php:2069 +#: ../../include/functions_reporting.php:2102 msgid "Exclude " msgstr "Excluir " -#: ../../include/functions_reporting.php:2325 +#: ../../include/functions_reporting.php:2443 msgid "Event Report Module" msgstr "Informe de eventos del módulo" -#: ../../include/functions_reporting.php:3113 +#: ../../include/functions_reporting.php:3231 msgid "Agent/Modules" msgstr "Agentes/módulos" -#: ../../include/functions_reporting.php:3210 +#: ../../include/functions_reporting.php:3328 msgid "Agent/Modules Status" msgstr "Estado del agente/módulos" -#: ../../include/functions_reporting.php:3359 +#: ../../include/functions_reporting.php:3477 msgid "Exception - Everything" msgstr "Excepción - Todo" -#: ../../include/functions_reporting.php:3365 +#: ../../include/functions_reporting.php:3483 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "Excepción - Módulos por encima de o igual a %s" -#: ../../include/functions_reporting.php:3368 +#: ../../include/functions_reporting.php:3486 #, php-format msgid "Modules over or equal to %s" msgstr "Módulos por encima de o igual a %s" -#: ../../include/functions_reporting.php:3373 +#: ../../include/functions_reporting.php:3491 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "Excepción - Módulos por debajo o igual a %s" -#: ../../include/functions_reporting.php:3376 +#: ../../include/functions_reporting.php:3494 #, php-format msgid "Modules under or equal to %s" msgstr "Módulos por debajo de o igual a %s" -#: ../../include/functions_reporting.php:3381 +#: ../../include/functions_reporting.php:3499 #, php-format msgid "Exception - Modules under %s" msgstr "Excepción - Módulos por debajo de %s" -#: ../../include/functions_reporting.php:3384 +#: ../../include/functions_reporting.php:3502 #, php-format msgid "Modules under %s" msgstr "Módulos por debajo de %s" -#: ../../include/functions_reporting.php:3389 +#: ../../include/functions_reporting.php:3507 #, php-format msgid "Exception - Modules over %s" msgstr "Excepción - Módulos por encima de %s" -#: ../../include/functions_reporting.php:3392 +#: ../../include/functions_reporting.php:3510 #, php-format msgid "Modules over %s" msgstr "Módulos por encima de %s" -#: ../../include/functions_reporting.php:3397 +#: ../../include/functions_reporting.php:3515 #, php-format msgid "Exception - Equal to %s" msgstr "Excepción - Igual a %s" -#: ../../include/functions_reporting.php:3400 +#: ../../include/functions_reporting.php:3518 #, php-format msgid "Equal to %s" msgstr "Igual a %s" -#: ../../include/functions_reporting.php:3405 +#: ../../include/functions_reporting.php:3523 #, php-format msgid "Exception - Not equal to %s" msgstr "Excepción - No igual a %s" -#: ../../include/functions_reporting.php:3408 +#: ../../include/functions_reporting.php:3526 #, php-format msgid "Not equal to %s" msgstr "No igual a %s" -#: ../../include/functions_reporting.php:3412 +#: ../../include/functions_reporting.php:3530 msgid "Exception - Modules at normal status" msgstr "Excepción - Módulos en estado normal" -#: ../../include/functions_reporting.php:3413 +#: ../../include/functions_reporting.php:3531 msgid "Modules at normal status" msgstr "Módulos en estado normal" -#: ../../include/functions_reporting.php:3417 +#: ../../include/functions_reporting.php:3535 msgid "Exception - Modules at critical or warning status" msgstr "Excepción - Módulos en estado crítico o de advertencia" -#: ../../include/functions_reporting.php:3418 +#: ../../include/functions_reporting.php:3536 msgid "Modules at critical or warning status" msgstr "Módulos en estado crítico o de advertencia" -#: ../../include/functions_reporting.php:3698 +#: ../../include/functions_reporting.php:3816 msgid "There are no Modules under those conditions." msgstr "No hay módulos bajo esas condiciones" -#: ../../include/functions_reporting.php:3702 +#: ../../include/functions_reporting.php:3820 #, php-format msgid "There are no Modules over or equal to %s." msgstr "No hay módulos por encima de o iguales a %s" -#: ../../include/functions_reporting.php:3706 +#: ../../include/functions_reporting.php:3824 #, php-format msgid "There are no Modules less or equal to %s." msgstr "No hay módulos por debajo de o iguales a %s" -#: ../../include/functions_reporting.php:3710 +#: ../../include/functions_reporting.php:3828 #, php-format msgid "There are no Modules less %s." msgstr "No hay módulos por debajo de %s" -#: ../../include/functions_reporting.php:3714 +#: ../../include/functions_reporting.php:3832 #, php-format msgid "There are no Modules over %s." msgstr "No hay módulos por encima de %s" -#: ../../include/functions_reporting.php:3718 +#: ../../include/functions_reporting.php:3836 #, php-format msgid "There are no Modules equal to %s" msgstr "No hay módulos iguales a %s" -#: ../../include/functions_reporting.php:3722 +#: ../../include/functions_reporting.php:3840 #, php-format msgid "There are no Modules not equal to %s" msgstr "No hay módulos no iguales a %s" -#: ../../include/functions_reporting.php:3726 +#: ../../include/functions_reporting.php:3844 msgid "There are no Modules normal status" msgstr "No hay módulos en estado normal" -#: ../../include/functions_reporting.php:3730 +#: ../../include/functions_reporting.php:3848 msgid "There are no Modules at critial or warning status" msgstr "No hay módulos en estado crítico o de advertencia" -#: ../../include/functions_reporting.php:4081 +#: ../../include/functions_reporting.php:4276 msgid "Event Report Agent" msgstr "Informe de eventos de agentes" -#: ../../include/functions_reporting.php:4432 +#: ../../include/functions_reporting.php:4695 msgid "Database Serialized" msgstr "Base de datos serializada" -#: ../../include/functions_reporting.php:4628 +#: ../../include/functions_reporting.php:4891 msgid "Last Value" msgstr "Último valor" -#: ../../include/functions_reporting.php:4952 +#: ../../include/functions_reporting.php:4941 +#: ../../include/functions_reporting.php:4984 +msgid "No data to display within the selected interval" +msgstr "No hay datos en el intervalo seleccionado" + +#: ../../include/functions_reporting.php:5215 msgid "Network interfaces report" msgstr "Informe de las interfaces de red" -#: ../../include/functions_reporting.php:5046 +#: ../../include/functions_reporting.php:5309 msgid "Custom render report" msgstr "Informe de representación personalizado" -#: ../../include/functions_reporting.php:5086 -#: ../../include/functions_reporting.php:5112 +#: ../../include/functions_reporting.php:5349 +#: ../../include/functions_reporting.php:5375 msgid "" "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "" "Esta consulta es insegura, podría aplicar modificationes no deseadas en el " "esquema" -#: ../../include/functions_reporting.php:5343 +#: ../../include/functions_reporting.php:5554 msgid "The group has no agents or none of the agents has any network interface" msgstr "El grupo no tiene agentes o los agentes no tienen interfaz de red." -#: ../../include/functions_reporting.php:5364 +#: ../../include/functions_reporting.php:5579 msgid "bytes/s" msgstr "bytes/s" -#: ../../include/functions_reporting.php:6031 +#: ../../include/functions_reporting.php:6246 msgid "SQL Graph Vertical Bars" msgstr "Gráfico de barras verticales SQL" -#: ../../include/functions_reporting.php:6035 +#: ../../include/functions_reporting.php:6250 msgid "SQL Graph Horizontal Bars" msgstr "Gráfico de barras horizontales SQL" -#: ../../include/functions_reporting.php:6039 +#: ../../include/functions_reporting.php:6254 msgid "SQL Graph Pie" msgstr "Gráfico SQL circular" -#: ../../include/functions_reporting.php:6266 +#: ../../include/functions_reporting.php:6481 msgid "Netflow Area" msgstr "Área de Netflow" -#: ../../include/functions_reporting.php:6270 +#: ../../include/functions_reporting.php:6485 msgid "Netflow Summary" msgstr "Resumen de Netflow" -#: ../../include/functions_reporting.php:6274 +#: ../../include/functions_reporting.php:6489 msgid "Netflow Data" msgstr "Datos de Netflow" -#: ../../include/functions_reporting.php:6282 +#: ../../include/functions_reporting.php:6497 msgid "Unknown report" msgstr "Informe desconocido" -#: ../../include/functions_reporting.php:6376 +#: ../../include/functions_reporting.php:6591 msgid "Prediction Date" msgstr "Fecha de predicción" -#: ../../include/functions_reporting.php:7295 +#: ../../include/functions_reporting.php:7510 msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." @@ -48832,230 +48899,230 @@ msgstr "" "palabras que no se puede usar: *, borrar, eliminar, soltar, alterar, " "modificar, contraseña, pass, insertar o actualizar." -#: ../../include/functions_reporting.php:8706 -#: ../../include/functions_reporting.php:9424 +#: ../../include/functions_reporting.php:8924 +#: ../../include/functions_reporting.php:9642 msgid "No Address" msgstr "Sin dirección" -#: ../../include/functions_reporting.php:9723 +#: ../../include/functions_reporting.php:9941 msgid "" "The monitor have no data in this range of dates or monitor type is not numeric" msgstr "" "El monitor no tiene datos en este rango de fecha o el tipo de monitor no es " "numérico." -#: ../../include/functions_reporting.php:9741 +#: ../../include/functions_reporting.php:9959 msgid "The monitor type is not numeric" msgstr "El tipo de monitor no es numérico." -#: ../../include/functions_reporting.php:10167 +#: ../../include/functions_reporting.php:10385 msgid "Maximum" msgstr "Máximo" -#: ../../include/functions_reporting.php:10245 +#: ../../include/functions_reporting.php:10463 msgid "Automatic combined graph" msgstr "Gráfica combinada automática" -#: ../../include/functions_reporting.php:11599 -#: ../../include/functions_reporting.php:11623 +#: ../../include/functions_reporting.php:11885 +#: ../../include/functions_reporting.php:11909 msgid "Server health" msgstr "Estado del servidor" -#: ../../include/functions_reporting.php:11599 +#: ../../include/functions_reporting.php:11885 #, php-format msgid "%d Downed servers" msgstr "%d servidores caídos" -#: ../../include/functions_reporting.php:11604 -#: ../../include/functions_reporting.php:11627 +#: ../../include/functions_reporting.php:11890 +#: ../../include/functions_reporting.php:11913 msgid "Monitor health" msgstr "Estado del monitor" -#: ../../include/functions_reporting.php:11604 +#: ../../include/functions_reporting.php:11890 #, php-format msgid "%d Not Normal monitors" msgstr "%d monitores fuera de la normalidad" -#: ../../include/functions_reporting.php:11604 -#: ../../include/functions_reporting.php:11628 +#: ../../include/functions_reporting.php:11890 +#: ../../include/functions_reporting.php:11914 msgid "of monitors up" msgstr "de monitores funcionando" -#: ../../include/functions_reporting.php:11609 -#: ../../include/functions_reporting.php:11631 +#: ../../include/functions_reporting.php:11895 +#: ../../include/functions_reporting.php:11917 msgid "Module sanity" msgstr "Estado de los módulos" -#: ../../include/functions_reporting.php:11609 +#: ../../include/functions_reporting.php:11895 #, php-format msgid "%d Not inited monitors" msgstr "%d monitores sin iniciar" -#: ../../include/functions_reporting.php:11609 -#: ../../include/functions_reporting.php:11632 +#: ../../include/functions_reporting.php:11895 +#: ../../include/functions_reporting.php:11918 msgid "of total modules inited" msgstr "del total de módulos iniciados" -#: ../../include/functions_reporting.php:11614 -#: ../../include/functions_reporting.php:12726 -#: ../../include/functions_reporting.php:12736 +#: ../../include/functions_reporting.php:11900 +#: ../../include/functions_reporting.php:13012 +#: ../../include/functions_reporting.php:13022 #, php-format msgid "%d Fired alerts" msgstr "%d alertas disparadas" -#: ../../include/functions_reporting.php:11614 -#: ../../include/functions_reporting.php:11636 +#: ../../include/functions_reporting.php:11900 +#: ../../include/functions_reporting.php:11922 msgid "of defined alerts not fired" msgstr "de alertas definidas no disparadas" -#: ../../include/functions_reporting.php:11708 +#: ../../include/functions_reporting.php:11994 msgid "Defined and fired alerts" msgstr "Alertas definidas y disparadas" -#: ../../include/functions_reporting.php:11887 +#: ../../include/functions_reporting.php:12173 msgid "Defined users" msgstr "Usuarios definidos" -#: ../../include/functions_reporting.php:12583 +#: ../../include/functions_reporting.php:12869 msgid "Agent without data" msgstr "Agente sin datos" -#: ../../include/functions_reporting.php:12722 +#: ../../include/functions_reporting.php:13008 #, php-format msgid "%d Normal modules" msgstr "%d módulos normales" -#: ../../include/functions_reporting.php:12723 +#: ../../include/functions_reporting.php:13009 #, php-format msgid "%d Critical modules" msgstr "%d módulos críticos" -#: ../../include/functions_reporting.php:12724 +#: ../../include/functions_reporting.php:13010 #, php-format msgid "%d Warning modules" msgstr "%d módulos en estado de advertencia" -#: ../../include/functions_reporting.php:12725 +#: ../../include/functions_reporting.php:13011 #, php-format msgid "%d Unknown modules" msgstr "%d módulos desconocidos" -#: ../../include/functions_reporting.php:12730 +#: ../../include/functions_reporting.php:13016 #, php-format msgid "%d Total agents" msgstr "%d del total de agentes" -#: ../../include/functions_reporting.php:12731 +#: ../../include/functions_reporting.php:13017 #, php-format msgid "%d Normal agents" msgstr "%d agentes normales" -#: ../../include/functions_reporting.php:12732 +#: ../../include/functions_reporting.php:13018 #, php-format msgid "%d Critical agents" msgstr "%d agentes en estado crítico" -#: ../../include/functions_reporting.php:12733 +#: ../../include/functions_reporting.php:13019 #, php-format msgid "%d Warning agents" msgstr "%d agentes en estado de advertencia" -#: ../../include/functions_reporting.php:12734 +#: ../../include/functions_reporting.php:13020 #, php-format msgid "%d Unknown agents" msgstr "%d agentes desconocidos" -#: ../../include/functions_reporting.php:12735 +#: ../../include/functions_reporting.php:13021 #, php-format msgid "%d not init agents" msgstr "%d agentes no iniciados" -#: ../../include/functions_reporting.php:14163 +#: ../../include/functions_reporting.php:14449 msgid "Total running modules" msgstr "Total de módulos en ejecución" -#: ../../include/functions_reporting.php:14166 -#: ../../include/functions_reporting.php:14181 -#: ../../include/functions_reporting.php:14193 -#: ../../include/functions_reporting.php:14211 -#: ../../include/functions_reporting.php:14223 -#: ../../include/functions_reporting.php:14235 -#: ../../include/functions_reporting.php:14247 +#: ../../include/functions_reporting.php:14452 +#: ../../include/functions_reporting.php:14467 +#: ../../include/functions_reporting.php:14479 +#: ../../include/functions_reporting.php:14497 +#: ../../include/functions_reporting.php:14509 +#: ../../include/functions_reporting.php:14521 +#: ../../include/functions_reporting.php:14533 msgid "Ratio" msgstr "Proporción" -#: ../../include/functions_reporting.php:14166 -#: ../../include/functions_reporting.php:14181 -#: ../../include/functions_reporting.php:14193 -#: ../../include/functions_reporting.php:14211 -#: ../../include/functions_reporting.php:14223 -#: ../../include/functions_reporting.php:14235 -#: ../../include/functions_reporting.php:14247 +#: ../../include/functions_reporting.php:14452 +#: ../../include/functions_reporting.php:14467 +#: ../../include/functions_reporting.php:14479 +#: ../../include/functions_reporting.php:14497 +#: ../../include/functions_reporting.php:14509 +#: ../../include/functions_reporting.php:14521 +#: ../../include/functions_reporting.php:14533 msgid "Modules by second" msgstr "Módulos por segundo" -#: ../../include/functions_reporting.php:14178 +#: ../../include/functions_reporting.php:14464 msgid "Local modules" msgstr "Módulos locales" -#: ../../include/functions_reporting.php:14188 +#: ../../include/functions_reporting.php:14474 msgid "Network modules" msgstr "Módulos de red" -#: ../../include/functions_reporting.php:14207 +#: ../../include/functions_reporting.php:14493 msgid "Plugin modules" msgstr "Módulos de plugin" -#: ../../include/functions_reporting.php:14219 +#: ../../include/functions_reporting.php:14505 msgid "Prediction modules" msgstr "Módulos de predicción" -#: ../../include/functions_reporting.php:14231 +#: ../../include/functions_reporting.php:14517 msgid "WMI modules" msgstr "Módulos WMI" -#: ../../include/functions_reporting.php:14243 +#: ../../include/functions_reporting.php:14529 msgid "Web modules" msgstr "Módulos web" -#: ../../include/functions_reporting.php:14281 +#: ../../include/functions_reporting.php:14567 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "Rendimiento del servidor" -#: ../../include/functions_reporting.php:14394 +#: ../../include/functions_reporting.php:14680 msgid "Start condition" msgstr "Condición de inicio" -#: ../../include/functions_reporting.php:14394 +#: ../../include/functions_reporting.php:14680 msgid "Stop condition" msgstr "Condición de detención" -#: ../../include/functions_reporting.php:14404 +#: ../../include/functions_reporting.php:14690 msgid "Weekly:" msgstr "Semanalmente:" -#: ../../include/functions_reporting.php:14446 +#: ../../include/functions_reporting.php:14732 msgid "Monthly:" msgstr "Mensual:" -#: ../../include/functions_reporting.php:14447 +#: ../../include/functions_reporting.php:14733 msgid "From day" msgstr "Desde el día" -#: ../../include/functions_reporting.php:14448 +#: ../../include/functions_reporting.php:14734 msgid "To day" msgstr "Hasta el día" -#: ../../include/functions_reporting.php:14999 +#: ../../include/functions_reporting.php:15283 msgid "Module Histogram Graph" msgstr "Gráfico de histograma del módulo" -#: ../../include/functions_reporting.php:15391 +#: ../../include/functions_reporting.php:15646 msgid "Attached to this email there's a PDF file of the" msgstr "En este correo encontrarás en adjunto un archivo del" -#: ../../include/functions_reporting.php:15392 +#: ../../include/functions_reporting.php:15647 msgid "report" msgstr "informe" @@ -49198,11 +49265,11 @@ msgstr "Haz clic aquí para abrir una ventana popup con la etiqueta URL" msgid "Copy of %s" msgstr "Copia de %s" -#: ../../include/lib/Dashboard/Manager.php:999 +#: ../../include/lib/Dashboard/Manager.php:992 msgid "Error create or update dashboard" msgstr "Error al crear o actualizar el panel de control" -#: ../../include/lib/Dashboard/Manager.php:1480 +#: ../../include/lib/Dashboard/Manager.php:1473 msgid "Icon image dashboard" msgstr "Panel de control de imágenes de iconos" @@ -49446,7 +49513,7 @@ msgstr "Gráficos de medidores agrupados" #: ../../include/lib/Dashboard/Widgets/network_map.php:173 #: ../../include/lib/Dashboard/Widgets/network_map.php:515 -#: ../../operation/menu.php:171 +#: ../../operation/menu.php:175 msgid "Network map" msgstr "Mapa de red" @@ -49498,15 +49565,15 @@ msgid "Custom filters" msgstr "Filtros personalizados" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 -#: ../../include/functions_events.php:3141 -#: ../../include/functions_events.php:3147 -#: ../../include/functions_events.php:3169 +#: ../../include/functions_events.php:3120 +#: ../../include/functions_events.php:3126 +#: ../../include/functions_events.php:3148 msgid "All event" msgstr "Todos los eventos" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 -#: ../../include/functions_events.php:3143 -#: ../../include/functions_events.php:3177 +#: ../../include/functions_events.php:3122 +#: ../../include/functions_events.php:3156 msgid "Only validated" msgstr "Solo eventos validados" @@ -49567,7 +49634,7 @@ msgid "Global status" msgstr "Estado global" #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:537 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:536 msgid "Top N events by module" msgstr "N primeros eventos por módulo" @@ -49669,12 +49736,12 @@ msgid "This graph has been deleted." msgstr "Se ha eliminado esta gráfica." #: ../../include/lib/Dashboard/Widgets/custom_graph.php:358 -#: ../../operation/reporting/graph_viewer.php:376 +#: ../../operation/reporting/graph_viewer.php:348 msgid "Horizontal Bars" msgstr "Barras horizontales" #: ../../include/lib/Dashboard/Widgets/custom_graph.php:359 -#: ../../operation/reporting/graph_viewer.php:377 +#: ../../operation/reporting/graph_viewer.php:349 msgid "Vertical Bars" msgstr "Barras verticales" @@ -49760,7 +49827,7 @@ msgid "Groups found" msgstr "Grupos encontrados" #: ../../include/lib/Dashboard/Widgets/top_n.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n.php:536 +#: ../../include/lib/Dashboard/Widgets/top_n.php:540 msgid "Top N of agent modules" msgstr "Primeros N módulos de agente" @@ -49795,45 +49862,45 @@ msgid "Digital" msgstr "Digital" #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:502 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:501 msgid "Top N events by agent" msgstr "Primeros N eventos por agente" -#: ../../include/lib/ClusterViewer/ClusterManager.php:225 +#: ../../include/lib/ClusterViewer/ClusterManager.php:224 msgid "Cluster not found: " msgstr "Clúster no encontrado: " -#: ../../include/lib/ClusterViewer/ClusterManager.php:234 +#: ../../include/lib/ClusterViewer/ClusterManager.php:233 msgid "Cluster agent not found: " msgstr "Agente del clúster no encontrado: " -#: ../../include/lib/ClusterViewer/ClusterManager.php:271 +#: ../../include/lib/ClusterViewer/ClusterManager.php:270 #, php-format msgid "Error while deleting, reason: %s" msgstr "Error al eliminar, motivo: %s" -#: ../../include/lib/ClusterViewer/ClusterManager.php:279 +#: ../../include/lib/ClusterViewer/ClusterManager.php:278 msgid "Cluster successfully deleted." msgstr "Clúster eliminado con éxito." -#: ../../include/lib/ClusterViewer/ClusterManager.php:305 +#: ../../include/lib/ClusterViewer/ClusterManager.php:304 #, php-format msgid "Error while forcing, reason: %s" msgstr "Error al forzar, motivo: %s" -#: ../../include/lib/ClusterViewer/ClusterManager.php:313 +#: ../../include/lib/ClusterViewer/ClusterManager.php:312 msgid "Cluster successfully forced." msgstr "Clúster forzado con éxito." -#: ../../include/lib/ClusterViewer/ClusterManager.php:571 +#: ../../include/lib/ClusterViewer/ClusterManager.php:568 msgid "Not set" msgstr "No configurado" -#: ../../include/lib/ClusterViewer/ClusterManager.php:581 +#: ../../include/lib/ClusterViewer/ClusterManager.php:578 msgid "Active-Active" msgstr "Activo-Activo" -#: ../../include/lib/ClusterViewer/ClusterManager.php:583 +#: ../../include/lib/ClusterViewer/ClusterManager.php:580 msgid "Active-Passive" msgstr "Activo-Pasivo" @@ -50051,7 +50118,7 @@ msgid " to apply" msgstr " a aplicar" #: ../../include/functions_snmp_browser.php:1542 -#: ../../operation/snmpconsole/snmp_browser.php:541 +#: ../../operation/snmpconsole/snmp_browser.php:539 msgid "Create new policy" msgstr "Crear nueva política" @@ -50059,6 +50126,14 @@ msgstr "Crear nueva política" msgid "Undo" msgstr "Deshacer" +#: ../../include/chart_generator.php:113 ../../operation/agentes/stat_win.php:51 +#: ../../operation/agentes/stat_win.php:176 +#: ../../operation/agentes/realtime_win.php:51 +#: ../../operation/agentes/interface_traffic_graph_win.php:54 +#: ../../operation/inventory/inventory.php:206 +msgid "There was a problem connecting with the node" +msgstr "Error al conectar con el nodo" + #: ../../include/functions_groups.php:75 msgid "Alert Actions" msgstr "Acciones de alerta" @@ -50123,171 +50198,157 @@ msgid "Could not connect: %s" msgstr "No se ha podido conectar: %s" #: ../../include/functions_events.php:2506 -#: ../../operation/agentes/tactical.php:228 +#: ../../operation/agentes/tactical.php:229 msgid "Latest events" msgstr "Últimos eventos" -#: ../../include/functions_events.php:2643 -msgid "Events -by module-" -msgstr "Eventos -por módulo-" - -#: ../../include/functions_events.php:2649 -#: ../../operation/agentes/tactical.php:245 -msgid "Event graph" -msgstr "Gráfico de eventos" - -#: ../../include/functions_events.php:2651 -#: ../../operation/agentes/tactical.php:248 -msgid "Event graph by agent" -msgstr "Gráfico de eventos por agente" - -#: ../../include/functions_events.php:2790 +#: ../../include/functions_events.php:2769 msgid "Going to unknown" msgstr "Cambiando a estado desconocido" -#: ../../include/functions_events.php:2798 +#: ../../include/functions_events.php:2777 msgid "Alert manually validated" msgstr "Alerta validada manualmente" -#: ../../include/functions_events.php:2802 +#: ../../include/functions_events.php:2781 msgid "Going from critical to warning" msgstr "Cambiando de crítico a advertencia" -#: ../../include/functions_events.php:2808 +#: ../../include/functions_events.php:2787 msgid "Going up to critical state" msgstr "Entrando en estado crítico" -#: ../../include/functions_events.php:2814 +#: ../../include/functions_events.php:2793 msgid "Going up to normal state" msgstr "Subiendo a estado normal" -#: ../../include/functions_events.php:2818 +#: ../../include/functions_events.php:2797 msgid "Going down from normal to warning" msgstr "Cambiando de normal a advertencia" -#: ../../include/functions_events.php:2830 +#: ../../include/functions_events.php:2809 msgid "Discovery server detected a new host" msgstr "El servidor Discovery ha detectado un host nuevo" -#: ../../include/functions_events.php:2834 +#: ../../include/functions_events.php:2813 msgid "New agent created" msgstr "Agente nuevo creado" -#: ../../include/functions_events.php:2851 +#: ../../include/functions_events.php:2830 msgid "Unknown type:" msgstr "Tipo desconocido:" -#: ../../include/functions_events.php:3142 -#: ../../include/functions_events.php:3173 +#: ../../include/functions_events.php:3121 +#: ../../include/functions_events.php:3152 msgid "Only new" msgstr "Solo nuevos" -#: ../../include/functions_events.php:3144 -#: ../../include/functions_events.php:3181 +#: ../../include/functions_events.php:3123 +#: ../../include/functions_events.php:3160 msgid "Only in process" msgstr "Solo en proceso" -#: ../../include/functions_events.php:3145 -#: ../../include/functions_events.php:3185 +#: ../../include/functions_events.php:3124 +#: ../../include/functions_events.php:3164 msgid "Only not validated" msgstr "Solo no validados" -#: ../../include/functions_events.php:3150 -#: ../../include/functions_events.php:3420 -#: ../../include/functions_events.php:3429 +#: ../../include/functions_events.php:3129 +#: ../../include/functions_events.php:3399 +#: ../../include/functions_events.php:3408 msgid "In process" msgstr "En proceso" -#: ../../include/functions_events.php:3151 +#: ../../include/functions_events.php:3130 msgid "Not Validated" msgstr "No validado" -#: ../../include/functions_events.php:3343 +#: ../../include/functions_events.php:3322 msgid "Change owner" msgstr "Cambiar propietario" -#: ../../include/functions_events.php:3405 +#: ../../include/functions_events.php:3384 msgid "Change status" msgstr "Cambiar estado" -#: ../../include/functions_events.php:3499 -#: ../../include/functions_events.php:5126 +#: ../../include/functions_events.php:3478 +#: ../../include/functions_events.php:5139 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314 msgid "Add comment" msgstr "Añadir comentario" -#: ../../include/functions_events.php:3519 -#: ../../include/functions_events.php:3523 ../../operation/events/events.php:948 +#: ../../include/functions_events.php:3498 +#: ../../include/functions_events.php:3502 ../../operation/events/events.php:948 msgid "Delete event" msgstr "Eliminar evento" -#: ../../include/functions_events.php:3543 +#: ../../include/functions_events.php:3522 msgid "Custom responses" msgstr "Respuesta personalizada" -#: ../../include/functions_events.php:4149 +#: ../../include/functions_events.php:4128 msgid "Extended information" msgstr "Información extendida" -#: ../../include/functions_events.php:4180 +#: ../../include/functions_events.php:4159 msgid "There was an error connecting to the node" msgstr "Error al conectarse al nodo" -#: ../../include/functions_events.php:4201 +#: ../../include/functions_events.php:4180 msgid "Agent details" msgstr "Detalles del agente" -#: ../../include/functions_events.php:4215 +#: ../../include/functions_events.php:4194 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "Este agente pertenece a la Metaconsola, no es posible mostrarlo" -#: ../../include/functions_events.php:4266 +#: ../../include/functions_events.php:4245 msgid "View custom fields" msgstr "Ver campos personalizados" -#: ../../include/functions_events.php:4289 +#: ../../include/functions_events.php:4268 msgid "Module details" msgstr "Detalles del módulo" -#: ../../include/functions_events.php:4305 +#: ../../include/functions_events.php:4284 msgid "No assigned" msgstr "No asignado" -#: ../../include/functions_events.php:4389 -#: ../../include/functions_events.php:4398 +#: ../../include/functions_events.php:4368 +#: ../../include/functions_events.php:4377 msgid "Go to data overview" msgstr "Ir a la vista general de datos" -#: ../../include/functions_events.php:4514 +#: ../../include/functions_events.php:4493 #, php-format msgid "Invalid custom data: %s" msgstr "Datos personalizados no válidos: %s" -#: ../../include/functions_events.php:4743 +#: ../../include/functions_events.php:4722 msgid "First event" msgstr "Primer evento" -#: ../../include/functions_events.php:4746 +#: ../../include/functions_events.php:4725 msgid "Last event" msgstr "Último evento" -#: ../../include/functions_events.php:4835 +#: ../../include/functions_events.php:4814 msgid "Autovalidated" msgstr "Autovalidado" -#: ../../include/functions_events.php:4901 +#: ../../include/functions_events.php:4880 msgid "ID extra" msgstr "ID extra" -#: ../../include/functions_events.php:4975 +#: ../../include/functions_events.php:4988 msgid "There are no comments" msgstr "No hay comentarios" -#: ../../include/functions_events.php:5039 ../../general/logon_ok.php:208 +#: ../../include/functions_events.php:5052 ../../general/logon_ok.php:208 msgid "by" msgstr "por" -#: ../../include/functions_events.php:5136 +#: ../../include/functions_events.php:5149 msgid "" "If event replication is ongoing, it won't be possible to enter comments here. " "This option is only to allow local pandora users to see comments, but not to " @@ -50299,82 +50360,82 @@ msgstr "" "ver los comentarios, pero no usarlos. Este proceso solo se puede llevar a cabo " "en la Metaconsola si la replicación de eventos está habilitada." -#: ../../include/functions_events.php:5706 +#: ../../include/functions_events.php:5719 #, php-format msgid "Event # %d" msgstr "Evento # %d" -#: ../../include/functions_events.php:5709 +#: ../../include/functions_events.php:5722 msgid "Executing command: " msgstr "Ejecutando comando: %s" -#: ../../include/functions_planned_downtimes.php:577 +#: ../../include/functions_planned_downtimes.php:578 msgid "Succesful stopped the Downtime" msgstr "La parada planificada se ha detenido correctamente" -#: ../../include/functions_planned_downtimes.php:578 +#: ../../include/functions_planned_downtimes.php:579 msgid "Unsuccesful stopped the Downtime" msgstr "La parada planificada no ha podido ser detenida" -#: ../../include/functions_planned_downtimes.php:733 +#: ../../include/functions_planned_downtimes.php:734 #, php-format msgid "Enabled %s elements from the downtime" msgstr "Habilitar %s elementos desde la parada" -#: ../../include/functions_planned_downtimes.php:792 +#: ../../include/functions_planned_downtimes.php:793 msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" msgstr "La parada debe estar silenciada, disable_agents o disable_agents_alerts" -#: ../../include/functions_planned_downtimes.php:797 +#: ../../include/functions_planned_downtimes.php:798 msgid "The execution must be once or periodically" msgstr "La ejecución debe ser única o periódica" -#: ../../include/functions_planned_downtimes.php:802 +#: ../../include/functions_planned_downtimes.php:803 msgid "The periodicity must be weekly or monthly" msgstr "La periodicidad debe ser semanal o mensual" -#: ../../include/functions_planned_downtimes.php:807 +#: ../../include/functions_planned_downtimes.php:808 msgid "There is no user with such id" msgstr "No hay usuarios con ese ID" -#: ../../include/functions_planned_downtimes.php:812 +#: ../../include/functions_planned_downtimes.php:813 msgid "There is no group with such id" msgstr "No hay grupos con ese ID" -#: ../../include/functions_planned_downtimes.php:817 +#: ../../include/functions_planned_downtimes.php:818 msgid "Date is wrong formatted" msgstr "Formato de fecha incorrecto" -#: ../../include/functions_planned_downtimes.php:924 +#: ../../include/functions_planned_downtimes.php:925 msgid "This scheduled downtime are executed now. Can't delete in this moment." msgstr "" "Esta parada planificada se está ejecutando. No se puede borrar en este momento." -#: ../../include/functions_planned_downtimes.php:931 +#: ../../include/functions_planned_downtimes.php:932 msgid "Deleted this scheduled downtime successfully." msgstr "Parada planificada borrada correctamente." -#: ../../include/functions_planned_downtimes.php:933 +#: ../../include/functions_planned_downtimes.php:934 msgid "Problems for deleted this scheduled downtime." msgstr "Error al borrar la parada planificada." -#: ../../include/functions_planned_downtimes.php:993 +#: ../../include/functions_planned_downtimes.php:994 msgid "Error adding agents to copied downtime" msgstr "Error al agregar agentes al tiempo de inactividad copiado" -#: ../../include/functions_planned_downtimes.php:1016 +#: ../../include/functions_planned_downtimes.php:1017 msgid "Error adding module to copied downtime" msgstr "Error al agregar módulo al tiempo de inactividad copiado" -#: ../../index.php:990 +#: ../../index.php:993 msgid "User doesn\\'t exist." msgstr "El usuario no existe." -#: ../../index.php:1012 +#: ../../index.php:1015 msgid "User only can use the API." msgstr "El usuario solo puede usar la API." -#: ../../index.php:1214 +#: ../../index.php:1217 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "La Metaconsola MR (%d) es diferente a esta (%d)" @@ -50447,89 +50508,106 @@ msgstr "Buscar módulo" msgid "Tree search" msgstr "Búsqueda de árbol" -#: ../../operation/users/user_edit.php:156 +#: ../../operation/users/user_edit.php:31 +msgid "User detail editor" +msgstr "Editor de detalles de usuario" + +#: ../../operation/users/user_edit.php:159 msgid "Current password of user is required to perform password change" msgstr "Se requiere la contraseña actual del usuario para cambiar la contraseña" -#: ../../operation/users/user_edit.php:158 +#: ../../operation/users/user_edit.php:161 msgid "Current password of user is not correct" msgstr "La contraseña actual del usuario no es correcta" -#: ../../operation/users/user_edit.php:162 +#: ../../operation/users/user_edit.php:165 msgid "" "Passwords didn't match or other problem encountered while updating passwords" msgstr "" "Las contraseñas no coincidían o se encontró otro problema al actualizar las " "contraseñas." -#: ../../operation/users/user_edit.php:175 -#: ../../operation/users/user_edit.php:190 +#: ../../operation/users/user_edit.php:178 +#: ../../operation/users/user_edit.php:197 msgid "Password successfully updated" msgstr "Contraseña actualizada correctamente" -#: ../../operation/users/user_edit.php:185 -#: ../../operation/users/user_edit.php:233 +#: ../../operation/users/user_edit.php:188 +#: ../../operation/users/user_edit.php:240 msgid "Error updating user info" msgstr "Error al actualizar la información del usuario" -#: ../../operation/users/user_edit.php:192 +#: ../../operation/users/user_edit.php:199 msgid "Skin successfully updated" msgstr "Skin actualizado correctamente" -#: ../../operation/users/user_edit.php:206 +#: ../../operation/users/user_edit.php:213 msgid "Please enter a valid email" msgstr "Añada una dirección de correo electrónico válida" -#: ../../operation/users/user_edit.php:208 +#: ../../operation/users/user_edit.php:215 msgid "Please enter a valid phone number" msgstr "Añada un número de teléfono valido" -#: ../../operation/users/user_edit.php:214 +#: ../../operation/users/user_edit.php:221 msgid "Error updating passwords: " msgstr "Error al actualizar contraseñas: " -#: ../../operation/users/user_edit.php:238 +#: ../../operation/users/user_edit.php:245 msgid "Edit my User" msgstr "Editar mi usuario" -#: ../../operation/users/user_edit.php:303 +#: ../../operation/users/user_edit.php:328 +msgid "" +"Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf." +"d/php.conf" +msgstr "" +"La directiva HTTP_AUTHORIZATION=$1 no está configurada. Por favor, añádala a /" +"etc/httpd/conf.d/php.conf" + +#: ../../operation/users/user_edit.php:377 msgid "Current password" msgstr "Contraseña actual" -#: ../../operation/users/user_edit.php:305 +#: ../../operation/users/user_edit.php:379 msgid "You cannot change your password under the current authentication scheme" msgstr "" "No puede cambiar la contraseña con la configuración actual de autenticación" -#: ../../operation/users/user_edit.php:320 +#: ../../operation/users/user_edit.php:394 msgid "If checkbox is clicked then block size global configuration is used" msgstr "" "Si se marca la casilla, se usará el tamaño de bloque de la configuración " "global." -#: ../../operation/users/user_edit.php:414 +#: ../../operation/users/user_edit.php:478 +#: ../../operation/users/user_edit.php:487 +msgid "Theme" +msgstr "Tema" + +#: ../../operation/users/user_edit.php:488 msgid "This change will only apply to nodes" msgstr "Este cambio solo se aplicará a los nodos" -#: ../../operation/users/user_edit.php:710 +#: ../../operation/users/user_edit.php:784 msgid "eHorus user configuration" msgstr "Configuración de usuario eHorus" -#: ../../operation/users/user_edit.php:715 +#: ../../operation/users/user_edit.php:789 msgid "eHorus user acces enabled" msgstr "Acceso de usuario eHorus habilitado" -#: ../../operation/users/user_edit.php:762 +#: ../../operation/users/user_edit.php:836 msgid "Integria user configuration" msgstr "Configuración de usuario de Integria" -#: ../../operation/users/user_edit.php:799 +#: ../../operation/users/user_edit.php:873 msgid "You can not change your user info under the current authentication scheme" msgstr "" "No puede cambiar la información de usuario con la configuración actual de " "autenticación" -#: ../../operation/users/user_edit.php:876 +#: ../../operation/users/user_edit.php:950 msgid "This user doesn't have any assigned profile/group." msgstr "Este usuario no tiene asignado ningún perfil/grupo" @@ -50540,7 +50618,7 @@ msgstr "Notificaciones de usuario" #: ../../operation/users/user_edit_header.php:127 #: ../../operation/messages/message_list.php:86 -#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:481 +#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:485 msgid "Workspace" msgstr "Área de trabajo" @@ -50652,7 +50730,7 @@ msgstr "Tiempo de inicio" #: ../../operation/agentes/stat_win.php:428 #: ../../operation/agentes/interface_traffic_graph_win.php:215 #: ../../operation/agentes/graphs.php:218 -#: ../../operation/reporting/graph_viewer.php:360 +#: ../../operation/reporting/graph_viewer.php:332 msgid "Time range" msgstr "Rango de tiempo" @@ -50674,26 +50752,26 @@ msgstr "Mostar series de datos MEDIA/MÄX./MÍN. en la gráfica" msgid "Graph configuration menu" msgstr "Menu de configuración de gráfica" -#: ../../operation/agentes/alerts_status.php:340 +#: ../../operation/agentes/alerts_status.php:347 msgid "No actions" msgstr "Sin acciones" -#: ../../operation/agentes/alerts_status.php:373 +#: ../../operation/agentes/alerts_status.php:380 #: ../../operation/agentes/estado_monitores.php:539 #: ../../operation/agentes/alerts_status.functions.php:160 msgid "Free text for search (*):" msgstr "Texto libre de búsqueda (*):" -#: ../../operation/agentes/alerts_status.php:374 +#: ../../operation/agentes/alerts_status.php:381 #: ../../operation/agentes/alerts_status.functions.php:161 msgid "Filter by module name, template name or action name" msgstr "Filtrar por nombre de módulo, nombre de plantilla o nombre de acción" -#: ../../operation/agentes/alerts_status.php:443 +#: ../../operation/agentes/alerts_status.php:450 msgid "Full list of alerts" msgstr "Lista completa de alertas" -#: ../../operation/agentes/alerts_status.php:534 +#: ../../operation/agentes/alerts_status.php:541 msgid "You must select at least one alert." msgstr "Debe seleccionar al menos una alerta." @@ -50809,14 +50887,14 @@ msgid "Latest events for this agent" msgstr "Últimos eventos para este agente" #: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2310 +#: ../../operation/agentes/pandora_networkmap.view.php:2314 #: ../../operation/snmpconsole/snmp_statistics.php:45 #: ../../operation/snmpconsole/snmp_browser.php:56 msgid "Normal screen" msgstr "Pantalla normal" #: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2338 +#: ../../operation/agentes/pandora_networkmap.view.php:2342 msgid "List of networkmap" msgstr "Lista de mapas de red" @@ -51139,7 +51217,7 @@ msgstr "Vista de datos de captura de %s del módulo (%s)" msgid "Current data at %s" msgstr "Datos actuales en %s" -#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:544 +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:548 msgid "Export data" msgstr "Exportar datos" @@ -51208,17 +51286,17 @@ msgid "Data Type" msgstr "Tipo de datos" #: ../../operation/agentes/status_monitor.php:1444 -#: ../../operation/agentes/pandora_networkmap.view.php:1782 +#: ../../operation/agentes/pandora_networkmap.view.php:1786 msgid "(Adopt) " msgstr "(Adoptar) " #: ../../operation/agentes/status_monitor.php:1452 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/agentes/pandora_networkmap.view.php:1794 msgid "(Unlinked) (Adopt) " msgstr "(Sin enlazar) (Adoptar) " #: ../../operation/agentes/status_monitor.php:1455 -#: ../../operation/agentes/pandora_networkmap.view.php:1793 +#: ../../operation/agentes/pandora_networkmap.view.php:1797 msgid "(Unlinked) " msgstr "(Sin enlazar) " @@ -51267,43 +51345,44 @@ msgid "Not Normal" msgstr "No normal" #: ../../operation/agentes/estado_monitores.php:540 -msgid "Search by module name, list matches." -msgstr "Búsqueda por nombre del módulo, lista de coincidencias." +msgid "Search by module name or alert name, list matches." +msgstr "" +"Búsqueda por nombre de módulo o nombre de alerta, lista de coincidencias." -#: ../../operation/agentes/pandora_networkmap.view.php:1650 +#: ../../operation/agentes/pandora_networkmap.view.php:1654 msgid "Success be updated." msgstr "Actualizado correctamente" -#: ../../operation/agentes/pandora_networkmap.view.php:1747 +#: ../../operation/agentes/pandora_networkmap.view.php:1751 msgid "Name: " msgstr "Nombre: " -#: ../../operation/agentes/pandora_networkmap.view.php:1797 +#: ../../operation/agentes/pandora_networkmap.view.php:1801 msgid "Policy: " msgstr "Política: " -#: ../../operation/agentes/pandora_networkmap.view.php:1894 +#: ../../operation/agentes/pandora_networkmap.view.php:1898 msgid "Data: " msgstr "Datos: " -#: ../../operation/agentes/pandora_networkmap.view.php:1896 +#: ../../operation/agentes/pandora_networkmap.view.php:1900 #: ../../operation/agentes/estado_generalagente.php:832 msgid "Last contact: " msgstr "Último contacto: " -#: ../../operation/agentes/ver_agente.php:1244 +#: ../../operation/agentes/ver_agente.php:1250 msgid "Sons" msgstr "Hijos" -#: ../../operation/agentes/ver_agente.php:1594 +#: ../../operation/agentes/ver_agente.php:1612 msgid "Log Viewer" msgstr "Visor de logs" -#: ../../operation/agentes/ver_agente.php:1633 +#: ../../operation/agentes/ver_agente.php:1651 msgid "Terminal" msgstr "Terminal" -#: ../../operation/agentes/ver_agente.php:1655 +#: ../../operation/agentes/ver_agente.php:1673 msgid "Processes" msgstr "Procesos" @@ -51353,6 +51432,15 @@ msgstr "Información de eventos (24h)" msgid "Interface information (SNMP)" msgstr "Información de interfaz (SNMP)" +#: ../../operation/agentes/agent_inventory.php:73 +msgid "This agent has not modules inventory" +msgstr "Este agente no tiene módulos de inventario." + +#: ../../operation/agentes/agent_inventory.php:193 +#: ../../operation/agentes/agent_inventory.php:194 +msgid "Diff view" +msgstr "Vista de diferencia" + #: ../../operation/agentes/alerts_status.functions.php:48 msgid "Alert(s) validated" msgstr "Alerta(s) validada(s)" @@ -51366,10 +51454,18 @@ msgid "Filter by agent name, module name, template name or action name" msgstr "" "Filtrar por nombre de agente, nombre de módulo, nombre de plantilla o de acción" -#: ../../operation/agentes/tactical.php:201 +#: ../../operation/agentes/tactical.php:202 msgid "Report of State" msgstr "Informe de estado" +#: ../../operation/agentes/tactical.php:246 +msgid "Event graph" +msgstr "Gráfico de eventos" + +#: ../../operation/agentes/tactical.php:251 +msgid "Event graph by agent" +msgstr "Gráfico de eventos por agente" + #: ../../operation/messages/message_list.php:46 #: ../../operation/messages/message_list.php:55 #: ../../operation/messages/message_edit.php:66 @@ -51527,7 +51623,7 @@ msgstr "Filtrado por puerto %s. Pinche aquí para eliminar el filtro." msgid "Filtered by IP %s. Click here to remove the filter." msgstr "Filtrado por IP %s. Pinche aquí para eliminar el filtro." -#: ../../operation/network/network_usage_map.php:29 ../../operation/menu.php:108 +#: ../../operation/network/network_usage_map.php:29 ../../operation/menu.php:112 msgid "Network usage map" msgstr "Mapa de uso de red" @@ -51613,7 +51709,7 @@ msgstr "Actualizar filtro actual" msgid "No filter selected" msgstr "No se ha seleccionado ningún filtro" -#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:94 +#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:98 msgid "Netflow explorer" msgstr "Explorador Netflow" @@ -51630,15 +51726,15 @@ msgid "Traps received by source" msgstr "Traps recibidos por el origen" #: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../operation/snmpconsole/snmp_statistics.php:251 +#: ../../operation/snmpconsole/snmp_statistics.php:256 msgid "Number" msgstr "Número" -#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_statistics.php:242 msgid "Traps received by Enterprise String" msgstr "Traps recibidos por cadena Enterprise" -#: ../../operation/snmpconsole/snmp_statistics.php:250 +#: ../../operation/snmpconsole/snmp_statistics.php:255 msgid "Trap Enterprise String" msgstr "Traps Enterprise de cadena" @@ -51650,16 +51746,16 @@ msgstr "Navegador SNMP" msgid "Adding modules in progress" msgstr "Añadiendo módulos" -#: ../../operation/snmpconsole/snmp_browser.php:552 +#: ../../operation/snmpconsole/snmp_browser.php:550 msgid "Create policy" msgstr "Crear política" -#: ../../operation/snmpconsole/snmp_browser.php:644 +#: ../../operation/snmpconsole/snmp_browser.php:642 msgid "Are you sure you want add module?" msgstr "¿Está seguro de que quiere añadir el módulo?" #: ../../operation/snmpconsole/snmp_mib_uploader.php:47 -#: ../../operation/menu.php:133 +#: ../../operation/menu.php:137 msgid "MIB uploader" msgstr "Cargador MIB" @@ -51672,59 +51768,59 @@ msgstr "" "MIB puede depender de otro MIB. Para personalizar las definiciones de trap, se " "debe usar el editor de trap SNMP." -#: ../../operation/menu.php:98 +#: ../../operation/menu.php:102 msgid "Netflow Live View" msgstr "Netflow en tiempo real" -#: ../../operation/menu.php:128 +#: ../../operation/menu.php:132 msgid "SNMP browser" msgstr "Navegador SNMP" -#: ../../operation/menu.php:137 +#: ../../operation/menu.php:141 msgid "SNMP filters" msgstr "Filtros SNMP" -#: ../../operation/menu.php:270 ../../operation/gis_maps/gis_map.php:35 +#: ../../operation/menu.php:274 ../../operation/gis_maps/gis_map.php:35 msgid "GIS Maps" msgstr "Mapas GIS" -#: ../../operation/menu.php:275 +#: ../../operation/menu.php:279 msgid "List of Gis maps" msgstr "Lista de mapas GIS" -#: ../../operation/menu.php:426 +#: ../../operation/menu.php:430 msgid "RSS" msgstr "RSS" -#: ../../operation/menu.php:470 ../../operation/events/events.php:1583 +#: ../../operation/menu.php:474 ../../operation/events/events.php:1583 msgid "Sound Alerts" msgstr "Alertas sonoras" -#: ../../operation/menu.php:493 +#: ../../operation/menu.php:497 msgid "Configure user notifications" msgstr "Configurar notificaciones de usuario" -#: ../../operation/menu.php:513 +#: ../../operation/menu.php:517 msgid "Integria IMS statistics" msgstr "Estadísticas de Integria IMS" -#: ../../operation/menu.php:514 +#: ../../operation/menu.php:518 msgid "Integria IMS ticket list" msgstr "Lista de tickets de Integria IMS" -#: ../../operation/menu.php:527 +#: ../../operation/menu.php:531 msgid "Messages List" msgstr "Lista de mensajes" -#: ../../operation/menu.php:528 +#: ../../operation/menu.php:532 msgid "New message" msgstr "Mensaje nuevo" -#: ../../operation/menu.php:550 +#: ../../operation/menu.php:554 msgid "Scheduled downtime" -msgstr "Desconexión programada" +msgstr "Parada planificada" -#: ../../operation/menu.php:624 +#: ../../operation/menu.php:628 msgid "Tools" msgstr "Herramientas" @@ -51948,6 +52044,18 @@ msgstr "Actualizado/Iniciado" msgid "No tickets to show" msgstr "No hay tickets" +#: ../../operation/inventory/inventory.php:292 +msgid "You must select at least one filter." +msgstr "Debe seleccionar al menos un filtro." + +#: ../../operation/inventory/inventory.php:441 +msgid "Order by agent" +msgstr "Ordenar por agente" + +#: ../../operation/inventory/inventory.php:485 +msgid "Export this list to CSV" +msgstr "Exportar esta lista a CSV" + #: ../../operation/search_main.php:55 ../../operation/search_main.php:57 #: ../../operation/search_main.php:65 ../../operation/search_main.php:67 #: ../../operation/search_main.php:69 ../../operation/search_main.php:71 @@ -51988,29 +52096,25 @@ msgstr "" "finalización." #: ../../operation/reporting/reporting_viewer.php:426 -#: ../../operation/reporting/graph_viewer.php:505 +#: ../../operation/reporting/graph_viewer.php:502 msgid "Invalid date selected" msgstr "Fecha seleccionada no válida" #: ../../operation/reporting/custom_reporting.php:28 -#: ../../operation/reporting/graph_viewer.php:539 +#: ../../operation/reporting/graph_viewer.php:536 msgid "There are no defined reportings" msgstr "No hay informes definidos" -#: ../../operation/reporting/graph_viewer.php:335 -msgid "No data." -msgstr "Sin datos" - -#: ../../operation/reporting/graph_viewer.php:369 -#: ../../operation/reporting/graph_viewer.php:391 +#: ../../operation/reporting/graph_viewer.php:341 +#: ../../operation/reporting/graph_viewer.php:363 msgid "Graph defined" msgstr "Gráfico definido" -#: ../../operation/reporting/graph_viewer.php:383 +#: ../../operation/reporting/graph_viewer.php:355 msgid "Equalize maxiddmum thresholds" -msgstr "Equalizar umbrales maxiddmum" +msgstr "Ecualizar umbrales máximos" -#: ../../operation/reporting/graph_viewer.php:383 +#: ../../operation/reporting/graph_viewer.php:355 msgid "" "If an option is selected, all graphs will have the highest value from all " "modules included in the graph as a maximum threshold" @@ -52018,19 +52122,23 @@ msgstr "" "Si se selecciona una opción, todos los gráficos tendrán el valor más alto de " "todos los módulos incluidos en el gráfico como umbral máximo." -#: ../../operation/reporting/graph_viewer.php:392 +#: ../../operation/reporting/graph_viewer.php:364 msgid "Zoom x1" msgstr "Zoom x1" -#: ../../operation/reporting/graph_viewer.php:393 +#: ../../operation/reporting/graph_viewer.php:365 msgid "Zoom x2" msgstr "Ampliación x2" -#: ../../operation/reporting/graph_viewer.php:394 +#: ../../operation/reporting/graph_viewer.php:366 msgid "Zoom x3" msgstr "Zoom x3" -#: ../../operation/reporting/graph_viewer.php:513 +#: ../../operation/reporting/graph_viewer.php:400 +msgid "No data." +msgstr "Sin datos" + +#: ../../operation/reporting/graph_viewer.php:510 msgid "Custom graph viewer" msgstr "Visor de imágenes personalizadas" @@ -52058,10 +52166,6 @@ msgstr "Tu IP no se encuentra en el listado de IPs con acceso a la API." msgid "The URL of your feed has bad hash." msgstr "La URL de tu feed tiene mal el hash." -#: ../../operation/events/events.php:256 -msgid "Metaconsola" -msgstr "Metaconsola" - #: ../../operation/events/events.php:854 msgid "Validate events" msgstr "Validar eventos" @@ -53388,6 +53492,39 @@ msgstr "" "El sistema de ayuda de %s se ha solicitado con una petición de ayuda que no " "existe actualmente. No hay contenido de ayuda a mostrar." +#~ msgid "Phantomjs bin directory" +#~ msgstr "Directorio Phantomjs bin" + +#~ msgid "PhantomJS cache cleanup " +#~ msgstr "Limpieza de caché de PhantomJS " + +#~ msgid "No scheduled" +#~ msgstr "No programado" + +#~ msgid "Each week" +#~ msgstr "Cada semana" + +#~ msgid "Each day" +#~ msgstr "Cada día" + +#~ msgid "PhantomJS cache interval" +#~ msgstr "Intervalo de caché de PhantomJS" + +#~ msgid "

Type

" +#~ msgstr "

Tipo

" + +#~ msgid "Circular porgress bar" +#~ msgstr "Barra de progreso circular" + +#~ msgid "other" +#~ msgstr "otro" + +#~ msgid "Edit cluster" +#~ msgstr "Editar cluster" + +#~ msgid "Events -by module-" +#~ msgstr "Eventos -por módulo-" + #~ msgid "Synchronization queue items warn detection" #~ msgstr "Los elementos de la cola de sincronización advierten a la detección" @@ -53882,9 +54019,6 @@ msgstr "" #~ msgid "Proxy password:" #~ msgstr "Contraseña del Proxy:" -#~ msgid "Update manager" -#~ msgstr "Administrador de actualizaciones" - #~ msgid "Update Manager offline" #~ msgstr "Administrador de actualizaciones sin conexión" diff --git a/pandora_console/include/languages/fr.mo b/pandora_console/include/languages/fr.mo index e6b421c117a17c9e41e9b2579bb38dae72e15003..d3916cb377f411070ed8445b4ced3a3a53e62a8f 100644 GIT binary patch delta 197918 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 Q>Rv(aIP4yALBYQN4-0?|s{jB1 delta 196117 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

Type

" -msgstr "

Type

" - -#: ../../godmode/agentes/module_manager.php:232 +#: ../../godmode/agentes/module_manager.php:231 msgid "Get more modules on Monitoring Library" msgstr "Obtenez plus de modules sur Monitoring Library" -#: ../../godmode/agentes/module_manager.php:271 +#: ../../godmode/agentes/module_manager.php:272 msgid "There was a problem completing the operation" msgstr "Un problème s’est produit lors de la fin de l’opération" -#: ../../godmode/agentes/module_manager.php:428 -#: ../../godmode/agentes/module_manager.php:474 -#: ../../godmode/agentes/module_manager.php:520 +#: ../../godmode/agentes/module_manager.php:429 +#: ../../godmode/agentes/module_manager.php:475 +#: ../../godmode/agentes/module_manager.php:521 #, php-format msgid "There was a problem completing the operation. Applied to 0/%d modules." msgstr "" "Un problème est survenu lors de l'exécution de l'opération. Appliqué à 0/%d " "modules." -#: ../../godmode/agentes/module_manager.php:434 -#: ../../godmode/agentes/module_manager.php:480 -#: ../../godmode/agentes/module_manager.php:526 +#: ../../godmode/agentes/module_manager.php:435 +#: ../../godmode/agentes/module_manager.php:481 +#: ../../godmode/agentes/module_manager.php:527 msgid "Operation finished successfully." msgstr "Opération complétée correctement" -#: ../../godmode/agentes/module_manager.php:438 -#: ../../godmode/agentes/module_manager.php:484 -#: ../../godmode/agentes/module_manager.php:530 +#: ../../godmode/agentes/module_manager.php:439 +#: ../../godmode/agentes/module_manager.php:485 +#: ../../godmode/agentes/module_manager.php:531 #, php-format msgid "There was a problem completing the operation. Applied to %d/%d modules." msgstr "" "Un problème est survenu lors de l'exécution de l'opération. Appliqué aux " "modules %d/%d." -#: ../../godmode/agentes/module_manager.php:836 +#: ../../godmode/agentes/module_manager.php:837 #: ../../godmode/reporting/map_builder.php:452 #: ../../godmode/reporting/map_builder.php:469 ../../include/ajax/module.php:573 #: ../../operation/agentes/datos_agente.php:295 msgid "No available data to show" msgstr "Aucune donnée disponible" -#: ../../godmode/agentes/module_manager.php:910 +#: ../../godmode/agentes/module_manager.php:911 msgid "Del." msgstr "Del." -#: ../../godmode/agentes/module_manager.php:1050 +#: ../../godmode/agentes/module_manager.php:1051 msgid "Module in scheduled downtime" msgstr "Module en temps d’arrêt planifié" -#: ../../godmode/agentes/module_manager.php:1102 -#: ../../godmode/agentes/module_manager.php:1110 +#: ../../godmode/agentes/module_manager.php:1103 +#: ../../godmode/agentes/module_manager.php:1111 #: ../../include/ajax/module.php:1097 ../../include/ajax/module.php:1105 msgid "Adopted" msgstr "Adopté" -#: ../../godmode/agentes/module_manager.php:1240 +#: ../../godmode/agentes/module_manager.php:1245 msgid "Normalize" msgstr "Normaliser" -#: ../../godmode/agentes/module_manager.php:1250 +#: ../../godmode/agentes/module_manager.php:1255 msgid "Normalize (Disabled)" msgstr "Normaliser (désactivé)" -#: ../../godmode/agentes/module_manager.php:1265 +#: ../../godmode/agentes/module_manager.php:1270 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "Créer un composant de réseau" -#: ../../godmode/agentes/module_manager.php:1274 +#: ../../godmode/agentes/module_manager.php:1279 msgid "Create network component (Disabled)" msgstr "Créer un composant de réseau (désactivé)" -#: ../../godmode/agentes/module_manager.php:1337 +#: ../../godmode/agentes/module_manager.php:1342 #: ../../include/class/SatelliteAgent.class.php:245 msgid "Execute action" msgstr "Exécuter l'action" @@ -36274,7 +36281,7 @@ msgstr "Gérer filtre Netflow" #: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63 #: ../../godmode/netflow/nf_edit_form.php:73 -#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:122 +#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:123 msgid "Netflow filters" msgstr "Filtres Netflow" @@ -36298,8 +36305,8 @@ msgstr "Filtre Netflow" #: ../../godmode/netflow/nf_edit_form.php:188 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:774 -#: ../../include/ajax/events.php:834 +#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:775 +#: ../../include/ajax/events.php:835 msgid "Update filter" msgstr "Mettre à jour le filtre" @@ -36509,8 +36516,8 @@ msgid "Custom Value/Enterprise String" msgstr "Valeur personnalisée/Chaîne Enterprise" #: ../../godmode/snmpconsole/snmp_alert.php:1271 -#: ../../include/functions_reporting_html.php:5267 -#: ../../include/functions_reporting_html.php:5389 +#: ../../include/functions_reporting_html.php:5286 +#: ../../include/functions_reporting_html.php:5408 #: ../../include/functions_treeview.php:454 msgid "Times fired" msgstr "Nombre de fois déclenchée" @@ -36523,11 +36530,6 @@ msgstr "TF." msgid "ID Alert SNMP" msgstr "ID alerte SNMP" -#: ../../godmode/snmpconsole/snmp_alert.php:1545 -#: ../../godmode/snmpconsole/snmp_alert.php:1560 -msgid "Confirmation" -msgstr "Confirmation" - #: ../../godmode/snmpconsole/snmp_alert.php:1546 msgid "Do you want delete this alert?" msgstr "Voulez-vous supprimer cette alerte ?" @@ -36536,7 +36538,7 @@ msgstr "Voulez-vous supprimer cette alerte ?" msgid "Do you want delete the selected alerts?" msgstr "Voulez-vous supprimer les alertes sélectionnées ?" -#: ../../godmode/snmpconsole/snmp_alert.php:1671 +#: ../../godmode/snmpconsole/snmp_alert.php:1676 msgid "Add action " msgstr "Ajouter une action " @@ -36587,175 +36589,179 @@ msgstr "Cliquez pour supprimer le filtre" msgid "Click to add new filter" msgstr "Cliquez pour ajouter un filtre" -#: ../../godmode/menu.php:62 +#: ../../godmode/menu.php:63 msgid "Network scan" msgstr "Recherche du réseau" -#: ../../godmode/menu.php:64 +#: ../../godmode/menu.php:65 msgid "Custom network scan" msgstr "Analyse de réseau personnalisée" -#: ../../godmode/menu.php:68 +#: ../../godmode/menu.php:69 msgid "Manage scan scripts" msgstr "Gérer les scripts d'analyse" -#: ../../godmode/menu.php:71 ../../godmode/wizards/HostDevices.class.php:204 +#: ../../godmode/menu.php:72 ../../godmode/wizards/HostDevices.class.php:204 msgid "Host & devices" msgstr "Hôte et appareils" -#: ../../godmode/menu.php:105 +#: ../../godmode/menu.php:106 msgid "Module categories" msgstr "Catégories de modules" -#: ../../godmode/menu.php:109 +#: ../../godmode/menu.php:110 msgid "Module types" msgstr "Types de modules" -#: ../../godmode/menu.php:115 +#: ../../godmode/menu.php:116 msgid "Operating systems" msgstr "Systèmes d'exploitation" -#: ../../godmode/menu.php:136 +#: ../../godmode/menu.php:137 msgid "Manage agents groups" msgstr "Gérer les groupes d'agents" -#: ../../godmode/menu.php:175 ../../include/class/ConfigPEN.class.php:337 +#: ../../godmode/menu.php:176 ../../include/class/ConfigPEN.class.php:337 #: ../../include/class/ConfigPEN.class.php:345 msgid "Private Enterprise Numbers" msgstr "Numéros d'entreprise privée" -#: ../../godmode/menu.php:179 +#: ../../godmode/menu.php:180 msgid "Remote components" msgstr "Composants distants" -#: ../../godmode/menu.php:203 ../../godmode/massive/massive_operations.php:246 +#: ../../godmode/menu.php:206 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "Opérations des agents" -#: ../../godmode/menu.php:204 ../../godmode/massive/massive_operations.php:258 +#: ../../godmode/menu.php:207 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "Opérations des modules" -#: ../../godmode/menu.php:205 ../../godmode/massive/massive_operations.php:270 +#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "Opérations des plugins" -#: ../../godmode/menu.php:207 ../../godmode/massive/massive_operations.php:234 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "Opérations des utilisateurs" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:222 +#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "Opérations d'alertes" -#: ../../godmode/menu.php:228 +#: ../../godmode/menu.php:231 msgid "Event filters" msgstr "Filtres d'événements" -#: ../../godmode/menu.php:233 ../../godmode/events/events.php:80 +#: ../../godmode/menu.php:236 ../../godmode/events/events.php:80 #: ../../godmode/events/events.php:95 msgid "Custom columns" msgstr "Colonnes personnalisées" -#: ../../godmode/menu.php:264 +#: ../../godmode/menu.php:267 msgid "List of Alerts" msgstr "Liste d'alertes" -#: ../../godmode/menu.php:279 ../../godmode/menu.php:280 +#: ../../godmode/menu.php:282 ../../godmode/menu.php:283 msgid "Special days list" msgstr "Liste de jours spéciaux" -#: ../../godmode/menu.php:284 +#: ../../godmode/menu.php:287 msgid "SNMP alerts" msgstr "Alertes SNMP" -#: ../../godmode/menu.php:301 +#: ../../godmode/menu.php:304 msgid "Manage servers" msgstr "Gérer les serveurs" -#: ../../godmode/menu.php:312 +#: ../../godmode/menu.php:315 msgid "Register Plugin" msgstr "Enregistrer Plugin" -#: ../../godmode/menu.php:338 ../../include/class/OrderInterpreter.class.php:141 +#: ../../godmode/menu.php:341 ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "Configuration générale" -#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:177 -#: ../../godmode/setup/setup.php:277 ../../operation/agentes/ver_agente.php:1621 +#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:177 +#: ../../godmode/setup/setup.php:277 ../../operation/agentes/ver_agente.php:1639 msgid "eHorus" msgstr "eHorus" -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:165 +#: ../../godmode/menu.php:369 ../../godmode/setup/setup.php:165 #: ../../godmode/setup/setup.php:283 ../../godmode/setup/setup_integria.php:585 msgid "Integria IMS" msgstr "Integria IMS" -#: ../../godmode/menu.php:374 +#: ../../godmode/menu.php:377 msgid "Websocket Engine" msgstr "Moteur de Websocket" -#: ../../godmode/menu.php:377 ../../godmode/setup/setup.php:224 -#: ../../godmode/setup/setup.php:311 ../../operation/agentes/ver_agente.php:1707 +#: ../../godmode/menu.php:380 ../../godmode/setup/setup.php:224 +#: ../../godmode/setup/setup.php:311 ../../operation/agentes/ver_agente.php:1725 msgid "External Tools" msgstr "Outils externes" -#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:295 +#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:295 msgid "Map conections GIS" msgstr "Connexions de cartes GIS" -#: ../../godmode/menu.php:409 +#: ../../godmode/menu.php:412 msgid "Diagnostic info" msgstr "Information de diagnostic" -#: ../../godmode/menu.php:414 +#: ../../godmode/menu.php:417 msgid "Site news" msgstr "Nouveautés du site" -#: ../../godmode/menu.php:423 +#: ../../godmode/menu.php:426 msgid "DB Schema Check" msgstr "Vérifier schéma de la BD" -#: ../../godmode/menu.php:426 +#: ../../godmode/menu.php:429 msgid "DB Interface" msgstr "Interface de la BD" -#: ../../godmode/menu.php:508 +#: ../../godmode/menu.php:511 msgid "Extension manager view" msgstr "Afficher le gestionnaire d'extension" -#: ../../godmode/menu.php:512 +#: ../../godmode/menu.php:515 msgid "Extension manager" msgstr "Gestionnaire d'extension" -#: ../../godmode/menu.php:544 ../../include/class/OrderInterpreter.class.php:339 +#: ../../godmode/menu.php:547 ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "Warp Update" -#: ../../godmode/menu.php:549 +#: ../../godmode/menu.php:552 msgid "Update offline" msgstr "Mise à jour hors ligne" -#: ../../godmode/menu.php:552 +#: ../../godmode/menu.php:555 msgid "Update online" msgstr "Mise à jour en ligne" -#: ../../godmode/menu.php:558 +#: ../../godmode/menu.php:561 msgid "Warp journal" msgstr "Journal de Warp" -#: ../../godmode/menu.php:567 +#: ../../godmode/menu.php:570 #: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "Bibliothèque de modules" -#: ../../godmode/menu.php:574 +#: ../../godmode/menu.php:577 #: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 msgid "Categories" msgstr "Catégories" +#: ../../godmode/menu.php:586 +msgid "About" +msgstr "À propos" + #: ../../godmode/gis_maps/configure_gis_map.php:86 #: ../../operation/gis_maps/gis_map.php:30 #: ../../operation/gis_maps/render_view.php:130 @@ -37148,59 +37154,59 @@ msgstr "Les utilisateurs ne peuvent pas être mis à jour (%s)" #: ../../godmode/massive/massive_edit_users.php:210 #: ../../godmode/massive/massive_delete_profiles.php:154 #: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../include/functions_reporting.php:11921 +#: ../../include/functions_reporting.php:12207 #: ../../operation/search_results.php:94 msgid "Users" msgstr "Utilisateurs" #: ../../godmode/massive/massive_edit_users.php:341 -#: ../../operation/users/user_edit.php:448 +#: ../../operation/users/user_edit.php:522 msgid "Event filter" msgstr "Filtre d'événements" #: ../../godmode/massive/massive_edit_users.php:379 -#: ../../operation/users/user_edit.php:520 +#: ../../operation/users/user_edit.php:594 msgid "Autorefresh" msgstr "Rafraîchissement automatique" #: ../../godmode/massive/massive_edit_users.php:380 -#: ../../operation/users/user_edit.php:521 +#: ../../operation/users/user_edit.php:595 msgid "This will activate autorefresh in selected pages" msgstr "Le rafraîchissement automatique sera activé sur les pages sélectionnées." #: ../../godmode/massive/massive_edit_users.php:419 -#: ../../operation/users/user_edit.php:556 +#: ../../operation/users/user_edit.php:630 msgid "Full list of pages" msgstr "Liste complète de pages" #: ../../godmode/massive/massive_edit_users.php:428 #: ../../godmode/massive/massive_edit_users.php:429 -#: ../../operation/users/user_edit.php:565 -#: ../../operation/users/user_edit.php:566 +#: ../../operation/users/user_edit.php:639 +#: ../../operation/users/user_edit.php:640 msgid "Push selected pages into autorefresh list" msgstr "" "Ajouter les pages sélectionnées à la liste de rafraîchissement automatique." #: ../../godmode/massive/massive_edit_users.php:438 #: ../../godmode/massive/massive_edit_users.php:439 -#: ../../operation/users/user_edit.php:574 -#: ../../operation/users/user_edit.php:575 +#: ../../operation/users/user_edit.php:648 +#: ../../operation/users/user_edit.php:649 msgid "Pop selected pages out of autorefresh list" msgstr "" "Supprimer les pages sélectionnées de la liste de rafraîchissement automatique" #: ../../godmode/massive/massive_edit_users.php:444 -#: ../../operation/users/user_edit.php:580 +#: ../../operation/users/user_edit.php:654 msgid "List of pages with autorefresh" msgstr "Liste de pages avec le rafraîchissement automatique" #: ../../godmode/massive/massive_edit_users.php:453 -#: ../../operation/users/user_edit.php:589 +#: ../../operation/users/user_edit.php:663 msgid "Time autorefresh" msgstr "Temps de rafraîchissement" #: ../../godmode/massive/massive_edit_users.php:455 -#: ../../operation/users/user_edit.php:591 +#: ../../operation/users/user_edit.php:665 msgid "" "Interval of autorefresh of the elements, by default they are 30 seconds, " "needing to enable the autorefresh first" @@ -37210,7 +37216,7 @@ msgstr "" #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:533 +#: ../../operation/agentes/alerts_status.php:540 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "Aucune alerte sélectionnée" @@ -37441,7 +37447,7 @@ msgid "Configure alert command" msgstr "Configurer la commande de l'alerte" #: ../../godmode/alerts/configure_alert_command.php:196 -#: ../../godmode/alerts/alert_commands.php:729 +#: ../../godmode/alerts/alert_commands.php:730 #, php-format msgid "" "This node is configured with centralized mode. All alert commands information " @@ -37478,7 +37484,7 @@ msgid "Hide" msgstr "Cacher" #: ../../godmode/alerts/alert_actions.php:74 -#: ../../include/functions_reporting.php:3004 +#: ../../include/functions_reporting.php:3122 msgid "Alert actions" msgstr "Actions d'alerte" @@ -37546,7 +37552,7 @@ msgstr "Afficher les informations avancées des alertes" msgid "No alerts defined" msgstr "Aucune alerte définie" -#: ../../godmode/alerts/alert_commands.php:144 +#: ../../godmode/alerts/alert_commands.php:145 msgid "" "For sending emails, text must be HTML format, if you want to use plain text, " "type it between the following labels:
"
@@ -37555,26 +37561,26 @@ msgstr ""
 "voulez écrire en texte clair, intoduisez-le entre les étiquettes suivantes : "
 "
"
 
-#: ../../godmode/alerts/alert_commands.php:220
-#: ../../godmode/alerts/alert_commands.php:251
+#: ../../godmode/alerts/alert_commands.php:221
+#: ../../godmode/alerts/alert_commands.php:252
 msgid "Text/plain"
 msgstr "Texte/clair"
 
-#: ../../godmode/alerts/alert_commands.php:222
-#: ../../godmode/alerts/alert_commands.php:253
+#: ../../godmode/alerts/alert_commands.php:223
+#: ../../godmode/alerts/alert_commands.php:254
 msgid "For sending emails only text plain"
 msgstr "Pour envoyer des courriels seulement en texte clair"
 
-#: ../../godmode/alerts/alert_commands.php:236
-#: ../../godmode/alerts/alert_commands.php:267
+#: ../../godmode/alerts/alert_commands.php:237
+#: ../../godmode/alerts/alert_commands.php:268
 msgid "Text/html"
 msgstr "Texte/HTML"
 
-#: ../../godmode/alerts/alert_commands.php:560
+#: ../../godmode/alerts/alert_commands.php:561
 msgid "Permissions warning"
 msgstr "Avertissement sur les autorisations"
 
-#: ../../godmode/alerts/alert_commands.php:563
+#: ../../godmode/alerts/alert_commands.php:564
 msgid ""
 "Command management is limited to administrator users or user profiles with "
 "permissions PM"
@@ -37582,25 +37588,25 @@ msgstr ""
 "La gestion des commandes est limitée aux utilisateurs administrateurs ou aux "
 "profils utilisateurs avec des autorisations PM"
 
-#: ../../godmode/alerts/alert_commands.php:580
+#: ../../godmode/alerts/alert_commands.php:581
 msgid "Alert commands"
 msgstr "Commandes d'alertes"
 
-#: ../../godmode/alerts/alert_commands.php:649
-#: ../../include/functions_alerts.php:2655
+#: ../../godmode/alerts/alert_commands.php:650
+#: ../../include/functions_alerts.php:2659
 msgid "No name specified"
 msgstr "Aucun nom indiqué"
 
-#: ../../godmode/alerts/alert_commands.php:653
-#: ../../include/functions_alerts.php:2650
+#: ../../godmode/alerts/alert_commands.php:654
+#: ../../include/functions_alerts.php:2654
 msgid "No command specified"
 msgstr "Aucune commande spécifiée."
 
-#: ../../godmode/alerts/alert_commands.php:705
+#: ../../godmode/alerts/alert_commands.php:706
 msgid " (copy)"
 msgstr " (copie)"
 
-#: ../../godmode/alerts/alert_commands.php:822
+#: ../../godmode/alerts/alert_commands.php:823
 msgid "No alert commands configured"
 msgstr "Aucune commande d'alerte configurée"
 
@@ -37847,12 +37853,12 @@ msgstr ""
 "unknown_updates de pandora_server.conf doit être égal à 1"
 
 #: ../../godmode/alerts/alert_view.php:65 ../../godmode/alerts/alert_view.php:280
-#: ../../include/functions_events.php:4375
+#: ../../include/functions_events.php:4354
 msgid "Alert details"
 msgstr "Détails de l'alerte"
 
 #: ../../godmode/alerts/alert_view.php:83 ../../godmode/alerts/alert_view.php:84
-#: ../../godmode/alerts/alert_list.php:487
+#: ../../godmode/alerts/alert_list.php:505
 msgid "List alerts"
 msgstr "Liste d'alertes"
 
@@ -37958,7 +37964,7 @@ msgstr "Déjà ajouté"
 msgid "No template specified"
 msgstr "Aucun modèle spécifié"
 
-#: ../../godmode/alerts/alert_list.php:491
+#: ../../godmode/alerts/alert_list.php:509
 msgid "Builder alert"
 msgstr "Outil de conception d'alertes"
 
@@ -38144,7 +38150,7 @@ msgid "Correct update the setup options"
 msgstr "Corrigez la mise à jour des options de configuration"
 
 #: ../../godmode/setup/setup_ehorus.php:58
-#: ../../include/functions_config.php:1733
+#: ../../include/functions_config.php:1714
 msgid "Enable eHorus"
 msgstr "Activer eHorus"
 
@@ -38202,24 +38208,24 @@ msgstr "Dépassement du délai de connexion"
 #: ../../godmode/setup/setup_ehorus.php:255
 #: ../../godmode/setup/setup_integria.php:720
 #: ../../godmode/setup/setup_integria.php:801
-#: ../../operation/users/user_edit.php:1268
-#: ../../operation/users/user_edit.php:1346
+#: ../../operation/users/user_edit.php:1342
+#: ../../operation/users/user_edit.php:1420
 msgid "Empty user or password"
 msgstr "Utilisateur ou mot de passe vide"
 
 #: ../../godmode/setup/setup_ehorus.php:256
 #: ../../godmode/setup/setup_integria.php:721
 #: ../../godmode/setup/setup_integria.php:802
-#: ../../operation/users/user_edit.php:1269
-#: ../../operation/users/user_edit.php:1347
+#: ../../operation/users/user_edit.php:1343
+#: ../../operation/users/user_edit.php:1421
 msgid "User not found"
 msgstr "Utilisateur introuvable"
 
 #: ../../godmode/setup/setup_ehorus.php:257
 #: ../../godmode/setup/setup_integria.php:722
 #: ../../godmode/setup/setup_integria.php:803
-#: ../../operation/users/user_edit.php:1270
-#: ../../operation/users/user_edit.php:1348
+#: ../../operation/users/user_edit.php:1344
+#: ../../operation/users/user_edit.php:1422
 msgid "Invalid password"
 msgstr "Mot de passe incorrect"
 
@@ -38236,7 +38242,7 @@ msgid "Bind port"
 msgstr "Lier le port"
 
 #: ../../godmode/setup/setup_websocket_engine.php:67
-#: ../../include/functions_config.php:1885
+#: ../../include/functions_config.php:1866
 msgid "WebSocket proxy url"
 msgstr "URL du proxy WebSocket"
 
@@ -38340,7 +38346,7 @@ msgstr "Google Maps"
 #: ../../godmode/setup/gis_step_2.php:234
 #: ../../godmode/reporting/visual_console_builder.elements.php:183
 #: ../../include/functions_visual_map_editor.php:1387
-#: ../../include/functions_visual_map.php:4249
+#: ../../include/functions_visual_map.php:4200
 #: ../../operation/visual_console/view.php:298
 msgid "Static Image"
 msgstr "Image statique"
@@ -38390,24 +38396,24 @@ msgid "Corners of the area of the image"
 msgstr "Coins qui délimitent la surface de l'image"
 
 #: ../../godmode/setup/gis_step_2.php:344
-#: ../../include/rest-api/models/VisualConsole/Item.php:1960
+#: ../../include/rest-api/models/VisualConsole/Item.php:1961
 msgid "Left"
 msgstr "Gauche"
 
 #: ../../godmode/setup/gis_step_2.php:351
-#: ../../include/rest-api/models/VisualConsole/Item.php:1957
+#: ../../include/rest-api/models/VisualConsole/Item.php:1958
 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317
 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317
 msgid "Bottom"
 msgstr "En bas"
 
 #: ../../godmode/setup/gis_step_2.php:358
-#: ../../include/rest-api/models/VisualConsole/Item.php:1959
+#: ../../include/rest-api/models/VisualConsole/Item.php:1960
 msgid "Right"
 msgstr "Droite"
 
 #: ../../godmode/setup/gis_step_2.php:365
-#: ../../include/rest-api/models/VisualConsole/Item.php:1958
+#: ../../include/rest-api/models/VisualConsole/Item.php:1959
 msgid "Top"
 msgstr "En haut"
 
@@ -38507,7 +38513,7 @@ msgid "Integria IMS API is not reachable"
 msgstr "L'API Integria IMS n'est pas accessible"
 
 #: ../../godmode/setup/setup_integria.php:261
-#: ../../include/functions_config.php:1771
+#: ../../include/functions_config.php:1752
 msgid "Enable Integria IMS"
 msgstr "Activer Integria IMS"
 
@@ -38577,42 +38583,42 @@ msgid "Unsucessful save the snmp translation."
 msgstr "Erreur d'enregistrement de la traduction SNMP"
 
 #: ../../godmode/setup/setup_netflow.php:47
-#: ../../include/functions_config.php:1500
+#: ../../include/functions_config.php:1481
 msgid "Data storage path"
 msgstr "Chemin de stockage de données"
 
 #: ../../godmode/setup/setup_netflow.php:50
-#: ../../include/functions_config.php:1504
+#: ../../include/functions_config.php:1485
 msgid "Daemon interval"
 msgstr "Intervalle de démon"
 
 #: ../../godmode/setup/setup_netflow.php:53
-#: ../../include/functions_config.php:1508
+#: ../../include/functions_config.php:1489
 msgid "Daemon binary path"
 msgstr "Chemin binaire démon"
 
 #: ../../godmode/setup/setup_netflow.php:56
-#: ../../include/functions_config.php:1512
+#: ../../include/functions_config.php:1493
 msgid "Nfdump binary path"
 msgstr "Chemin binaire nfdump"
 
 #: ../../godmode/setup/setup_netflow.php:59
-#: ../../include/functions_config.php:1516
+#: ../../include/functions_config.php:1497
 msgid "Nfexpire binary path"
 msgstr "Chemin binaire Nfexpire"
 
 #: ../../godmode/setup/setup_netflow.php:62
-#: ../../include/functions_config.php:1520
+#: ../../include/functions_config.php:1501
 msgid "Maximum chart resolution"
 msgstr "Résolution maximale du graphique"
 
 #: ../../godmode/setup/setup_netflow.php:67
-#: ../../include/functions_config.php:1528
+#: ../../include/functions_config.php:1509
 msgid "Netflow max lifetime"
 msgstr "Durée de vie maximale du Netflow"
 
 #: ../../godmode/setup/setup_netflow.php:70
-#: ../../include/functions_config.php:1532
+#: ../../include/functions_config.php:1513
 msgid "Name resolution for IP address"
 msgstr "Résolution du nom pour l'adresse IP"
 
@@ -38630,7 +38636,7 @@ msgid "Click to display lateral menus"
 msgstr "Cliquer pour afficher les menus latéraux"
 
 #: ../../godmode/setup/setup_visuals.php:116
-#: ../../include/functions_config.php:1316
+#: ../../include/functions_config.php:1297
 msgid "Service label font size"
 msgstr "Taille de la police de l'étiquette de service"
 
@@ -38639,12 +38645,12 @@ msgid "Space between items in Service maps"
 msgstr "Espace entre les éléments sur les cartes de service"
 
 #: ../../godmode/setup/setup_visuals.php:137
-#: ../../include/functions_config.php:1023
+#: ../../include/functions_config.php:1004
 msgid "Style template"
 msgstr "Modèle de style"
 
 #: ../../godmode/setup/setup_visuals.php:150
-#: ../../include/functions_config.php:1043
+#: ../../include/functions_config.php:1024
 msgid "Status icon set"
 msgstr "Définir icône d'état"
 
@@ -38661,23 +38667,23 @@ msgid "Colors and text"
 msgstr "Couleurs et texte"
 
 #: ../../godmode/setup/setup_visuals.php:176
-#: ../../include/functions_config.php:1119
+#: ../../include/functions_config.php:1100
 msgid "Login background"
 msgstr "Fond d'écran de connexion"
 
 #: ../../godmode/setup/setup_visuals.php:394
-#: ../../include/functions_config.php:1079
+#: ../../include/functions_config.php:1060
 msgid "Custom documentation logo"
 msgstr "Logo de documentation personnalisé"
 
 #: ../../godmode/setup/setup_visuals.php:414
-#: ../../include/functions_config.php:1083
+#: ../../include/functions_config.php:1064
 msgid "Custom support logo"
 msgstr "Logo d'assistance personnalisé"
 
 #: ../../godmode/setup/setup_visuals.php:433
-#: ../../include/functions_config.php:1087
-#: ../../include/functions_config.php:1091
+#: ../../include/functions_config.php:1068
+#: ../../include/functions_config.php:1072
 msgid "Custom networkmap center logo"
 msgstr "Logo du centre de carte réseau personnalisé"
 
@@ -38694,7 +38700,7 @@ msgid "Disable helps"
 msgstr "Désactiver les aides"
 
 #: ../../godmode/setup/setup_visuals.php:545
-#: ../../include/functions_config.php:1255
+#: ../../include/functions_config.php:1236
 msgid "Fixed header"
 msgstr "En-tête fixe"
 
@@ -38703,12 +38709,12 @@ msgid "Automatically hide submenu"
 msgstr "Masquer automatiquement le sous-menu"
 
 #: ../../godmode/setup/setup_visuals.php:584
-#: ../../include/functions_config.php:1227
+#: ../../include/functions_config.php:1208
 msgid "GIS Labels"
 msgstr "Étiquettes GIS"
 
 #: ../../godmode/setup/setup_visuals.php:599
-#: ../../include/functions_config.php:1235
+#: ../../include/functions_config.php:1216
 msgid "Default icon in GIS"
 msgstr "Icône par défaut sur GIS"
 
@@ -38721,8 +38727,8 @@ msgid "Graphs font size"
 msgstr "Taille de police des graphiques"
 
 #: ../../godmode/setup/setup_visuals.php:654
-#: ../../include/functions_config.php:1203
-#: ../../include/functions_config.php:1207
+#: ../../include/functions_config.php:1184
+#: ../../include/functions_config.php:1188
 msgid "Agent size text"
 msgstr "Taille du texte de l'agent"
 
@@ -38737,18 +38743,18 @@ msgid "Normal:"
 msgstr "Normal :"
 
 #: ../../godmode/setup/setup_visuals.php:659
-#: ../../include/functions_config.php:1211
+#: ../../include/functions_config.php:1192
 msgid "Module size text"
 msgstr "Taille du texte du module"
 
 #: ../../godmode/setup/setup_visuals.php:664
-#: ../../include/functions_config.php:1215
-#: ../../include/functions_config.php:1219
+#: ../../include/functions_config.php:1196
+#: ../../include/functions_config.php:1200
 msgid "Description size text"
 msgstr "Taille du texte de description"
 
 #: ../../godmode/setup/setup_visuals.php:668
-#: ../../include/functions_config.php:1223
+#: ../../include/functions_config.php:1204
 msgid "Item title size text"
 msgstr "Taille du texte du titre de l'élément"
 
@@ -38757,37 +38763,37 @@ msgid "Show unit along with value in reports"
 msgstr "Afficher l'unité et la valeur dans les rapports"
 
 #: ../../godmode/setup/setup_visuals.php:732
-#: ../../include/functions_config.php:982
+#: ../../include/functions_config.php:963
 msgid "Graph color #4"
 msgstr "Couleur du graphique #4"
 
 #: ../../godmode/setup/setup_visuals.php:743
-#: ../../include/functions_config.php:986
+#: ../../include/functions_config.php:967
 msgid "Graph color #5"
 msgstr "Couleur du graphique #5"
 
 #: ../../godmode/setup/setup_visuals.php:754
-#: ../../include/functions_config.php:990
+#: ../../include/functions_config.php:971
 msgid "Graph color #6"
 msgstr "Couleur du graphique #6"
 
 #: ../../godmode/setup/setup_visuals.php:765
-#: ../../include/functions_config.php:994
+#: ../../include/functions_config.php:975
 msgid "Graph color #7"
 msgstr "Couleur du graphique #7"
 
 #: ../../godmode/setup/setup_visuals.php:776
-#: ../../include/functions_config.php:998
+#: ../../include/functions_config.php:979
 msgid "Graph color #8"
 msgstr "Couleur du graphique #8"
 
 #: ../../godmode/setup/setup_visuals.php:787
-#: ../../include/functions_config.php:1002
+#: ../../include/functions_config.php:983
 msgid "Graph color #9"
 msgstr "Couleur du graphique #9"
 
 #: ../../godmode/setup/setup_visuals.php:798
-#: ../../include/functions_config.php:1006
+#: ../../include/functions_config.php:987
 msgid "Graph color #10"
 msgstr "Couleur du graphique #10"
 
@@ -38800,7 +38806,7 @@ msgid "Data precision in graphs"
 msgstr "Précision de données sur les graphiques"
 
 #: ../../godmode/setup/setup_visuals.php:858
-#: ../../include/functions_config.php:1283
+#: ../../include/functions_config.php:1264
 msgid "Default line thickness for the Custom Graph."
 msgstr "Épaisseur de ligne par défaut pour le graphique personnalisé"
 
@@ -38829,7 +38835,7 @@ msgid "Number of favorite visual consoles to show in the menu"
 msgstr "Nombre de consoles visuelles préférées à afficher dans le menu"
 
 #: ../../godmode/setup/setup_visuals.php:1088
-#: ../../include/functions_config.php:1191
+#: ../../include/functions_config.php:1172
 msgid "Default line thickness for the Visual Console"
 msgstr "Épaisseur de ligne par défaut pour la console visuelle"
 
@@ -38847,7 +38853,7 @@ msgstr ""
 "ET PNG) dans l'outil de téléchargement de la console."
 
 #: ../../godmode/setup/setup_visuals.php:1281
-#: ../../include/functions_config.php:1267
+#: ../../include/functions_config.php:1248
 msgid "Networkmap max width"
 msgstr "Largeur maximale de la carte de réseau"
 
@@ -38856,7 +38862,7 @@ msgid "Show empty groups in group view"
 msgstr "Afficher les groupes vides dans la vue de groupe"
 
 #: ../../godmode/setup/setup_visuals.php:1320
-#: ../../include/functions_config.php:1489
+#: ../../include/functions_config.php:1470
 msgid "Decimal separator"
 msgstr "Séparateur décimal"
 
@@ -38975,80 +38981,101 @@ msgid "If public URL is not properly configured you will lose access to "
 msgstr ""
 "Si l'URL publique n'est pas correctement configurée, vous perdrez l'accès à"
 
-#: ../../godmode/setup/setup_general.php:353
+#: ../../godmode/setup/setup_general.php:354
+#: ../../include/functions_config.php:401
+msgid "Inventory changes blacklist"
+msgstr "Liste noire des changements d'inventaire"
+
+#: ../../godmode/setup/setup_general.php:417
+msgid "Out of black list"
+msgstr "En dehors de la liste noire"
+
+#: ../../godmode/setup/setup_general.php:419
+msgid "In black list"
+msgstr "Dans la liste noire"
+
+#: ../../godmode/setup/setup_general.php:424
+msgid "Push selected modules into blacklist"
+msgstr "Ajouter les modules sélectionnés sur la liste noire"
+
+#: ../../godmode/setup/setup_general.php:426
+msgid "Pop selected modules out of blacklist"
+msgstr "Supprimer les modules sélectionnés de la liste noire"
+
+#: ../../godmode/setup/setup_general.php:434
 #: ../../include/functions_config.php:304
 msgid "Referer security"
 msgstr "Sécurité du référent"
 
-#: ../../godmode/setup/setup_general.php:361
+#: ../../godmode/setup/setup_general.php:442
 #: ../../include/functions_config.php:308
 msgid "Event storm protection"
 msgstr "Protection Event Storm"
 
-#: ../../godmode/setup/setup_general.php:378
+#: ../../godmode/setup/setup_general.php:459
 msgid "Change remote config encoding"
 msgstr "Changer l'encodage de la configuration à distance"
 
-#: ../../godmode/setup/setup_general.php:386
+#: ../../godmode/setup/setup_general.php:467
 #: ../../include/functions_config.php:320
 msgid "Server logs directory"
 msgstr "Répertoire des journaux du serveur"
 
-#: ../../godmode/setup/setup_general.php:396
+#: ../../godmode/setup/setup_general.php:477
 #: ../../include/functions_config.php:324
 msgid "Log size limit in system logs viewer extension"
 msgstr ""
 "Taille limite des journaux dans l'extension du visualiseur de journaux du "
 "système"
 
-#: ../../godmode/setup/setup_general.php:407
+#: ../../godmode/setup/setup_general.php:488
 msgid "Full mode"
 msgstr "Mode intégral"
 
-#: ../../godmode/setup/setup_general.php:409
+#: ../../godmode/setup/setup_general.php:490
 msgid "Expert"
 msgstr "Expert"
 
-#: ../../godmode/setup/setup_general.php:411
+#: ../../godmode/setup/setup_general.php:492
 #: ../../include/functions_config.php:328
 msgid "Tutorial mode"
 msgstr "Mode tutoriel"
 
-#: ../../godmode/setup/setup_general.php:425
+#: ../../godmode/setup/setup_general.php:506
 #: ../../include/functions_config.php:332
 msgid "Allow create scheduled downtimes in the past"
 msgstr "Autoriser la création de temps d'arrêt planifiés dans le passé"
 
-#: ../../godmode/setup/setup_general.php:433
+#: ../../godmode/setup/setup_general.php:514
 msgid "Limit for bulk operations"
 msgstr "Limite pour les opérations massives"
 
-#: ../../godmode/setup/setup_general.php:443
+#: ../../godmode/setup/setup_general.php:524
 msgid "Include agents manually disabled"
 msgstr "Inclure les agents désactivés manuellement"
 
-#: ../../godmode/setup/setup_general.php:451
+#: ../../godmode/setup/setup_general.php:532
 msgid "Set alias as name by default in agent creation"
 msgstr "Définir l'alias comme nom par défaut lors de la création de l'agent."
 
-#: ../../godmode/setup/setup_general.php:468
-#: ../../godmode/setup/setup_general.php:479
+#: ../../godmode/setup/setup_general.php:549
+#: ../../godmode/setup/setup_general.php:560
 msgid "Log location"
 msgstr "Emplacement du journal"
 
-#: ../../godmode/setup/setup_general.php:489
+#: ../../godmode/setup/setup_general.php:570
 msgid "Module custom ID readonly"
 msgstr "ID personnalisé du module en lecture seule"
 
-#: ../../godmode/setup/setup_general.php:490
+#: ../../godmode/setup/setup_general.php:571
 msgid "Useful for integrations"
 msgstr "Utile pour les intégrations"
 
-#: ../../godmode/setup/setup_general.php:514
+#: ../../godmode/setup/setup_general.php:595
 msgid "General options"
 msgstr "Options générales"
 
-#: ../../godmode/setup/setup_general.php:533
+#: ../../godmode/setup/setup_general.php:614
 msgid ""
 "Please notice that some providers like Gmail or Office365 need to setup/enable "
 "manually external connections using SMTP and you need to use STARTTLS on port "
@@ -39064,27 +39091,27 @@ msgstr ""
 "Si vous avez des paramètres manuels dans votre pandora_server.conf, veuillez "
 "noter que ces paramètres ignoreront cette configuration de la console."
 
-#: ../../godmode/setup/setup_general.php:539
+#: ../../godmode/setup/setup_general.php:620
 msgid "From address"
 msgstr "De l'adresse"
 
-#: ../../godmode/setup/setup_general.php:559
+#: ../../godmode/setup/setup_general.php:640
 msgid "SMTP Server"
 msgstr "Serveur SMTP"
 
-#: ../../godmode/setup/setup_general.php:569
+#: ../../godmode/setup/setup_general.php:650
 msgid "SMTP Port"
 msgstr "Port SMTP"
 
-#: ../../godmode/setup/setup_general.php:619
+#: ../../godmode/setup/setup_general.php:700
 msgid "Email test"
 msgstr "Test d'un email"
 
-#: ../../godmode/setup/setup_general.php:671 ../../general/header.php:826
+#: ../../godmode/setup/setup_general.php:752 ../../general/header.php:826
 msgid "Send"
 msgstr "Envoyer"
 
-#: ../../godmode/setup/setup_general.php:681
+#: ../../godmode/setup/setup_general.php:762
 msgid "Check mail configuration"
 msgstr "Vérifier la configuration de la messagerie"
 
@@ -39224,26 +39251,34 @@ msgstr ""
 msgid "SNMP walk binary (fallback)"
 msgstr "SNMP walk binaire (repli)"
 
+#: ../../godmode/setup/performance.php:671
+#, php-format
+msgid ""
+"%s web2image cache system cleanup. It is always cleaned up after perform an "
+"upgrade"
+msgstr ""
+"%s nettoyage du système de cache web2image. Il est toujours nettoyé après "
+"avoir effectué une mise à niveau"
+
 #: ../../godmode/setup/performance.php:677
 msgid "WMI binary"
 msgstr "Binaire WMI"
 
-#: ../../godmode/setup/performance.php:734
+#: ../../godmode/setup/performance.php:717
 msgid "Database maintenance options"
 msgstr "Options d'entretien de la base de données"
 
-#: ../../godmode/setup/performance.php:740
+#: ../../godmode/setup/performance.php:723
 msgid "Historical database maintenance options"
 msgstr "Options de maintenance de la base de données historique"
 
-#: ../../godmode/setup/performance.php:746
-#: ../../include/functions_visual_map.php:2874
+#: ../../godmode/setup/performance.php:729 ../../include/graphs/fgraph.php:404
 #: ../../include/functions_netflow.php:2078
-#: ../../operation/network/network_report.php:326
+#: ../../include/functions_reporting.php:3959
 msgid "Others"
 msgstr "Autres"
 
-#: ../../godmode/setup/performance.php:751
+#: ../../godmode/setup/performance.php:734
 msgid "Agent SNMP Interface Wizard defaults"
 msgstr "Paramètres par défaut de l’Assistant de l’interface SNMP de l’agent"
 
@@ -39279,8 +39314,9 @@ msgstr "Image de fond"
 
 #: ../../godmode/reporting/visual_console_builder.data.php:181
 #: ../../include/functions_visual_map_editor.php:347
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:469
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:524
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:251
 msgid "Background color"
 msgstr "Couleur de fond"
 
@@ -39445,14 +39481,14 @@ msgid "Parent container"
 msgstr "Conteneur parent"
 
 #: ../../godmode/reporting/create_container.php:345
-#: ../../include/functions.php:2708
+#: ../../include/functions.php:2734
 msgid "custom"
 msgstr "personnalisé"
 
 #: ../../godmode/reporting/create_container.php:347
 #: ../../godmode/reporting/create_container.php:348
 #: ../../godmode/reporting/create_container.php:349
-#: ../../include/functions.php:2720 ../../include/functions.php:2721
+#: ../../include/functions.php:2746 ../../include/functions.php:2747
 #: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148
 #: ../../include/ajax/graph.ajax.php:149
 #, php-format
@@ -39467,13 +39503,13 @@ msgid "%s days"
 msgstr "%s jours"
 
 #: ../../godmode/reporting/create_container.php:353
-#: ../../include/functions.php:2723 ../../include/ajax/module.php:211
+#: ../../include/functions.php:2749 ../../include/ajax/module.php:211
 #: ../../include/ajax/graph.ajax.php:153
 msgid "1 week"
 msgstr "1 semaine"
 
 #: ../../godmode/reporting/create_container.php:355
-#: ../../include/functions.php:2725 ../../include/ajax/module.php:213
+#: ../../include/functions.php:2751 ../../include/ajax/module.php:213
 #: ../../include/ajax/graph.ajax.php:155
 msgid "1 month"
 msgstr "1 mois"
@@ -39613,7 +39649,7 @@ msgstr "Afficher les options"
 
 #: ../../godmode/reporting/graphs.php:310
 #: ../../include/functions_container.php:146 ../../operation/search_graphs.php:30
-#: ../../operation/reporting/graph_viewer.php:524
+#: ../../operation/reporting/graph_viewer.php:521
 msgid "Graph name"
 msgstr "Nom du graphique"
 
@@ -39690,6 +39726,11 @@ msgstr ""
 msgid "Show modules"
 msgstr "Afficher les modules"
 
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2193
+#: ../../operation/inventory/inventory.php:437
+msgid "Last"
+msgstr "Dernier"
+
 #: ../../godmode/reporting/reporting_builder.item_editor.php:2272
 msgid "Target server"
 msgstr "Serveur cible"
@@ -39803,12 +39844,12 @@ msgstr ""
 "octets/s)"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3456
-#: ../../include/functions_reporting.php:4796
+#: ../../include/functions_reporting.php:5059
 msgid "Unassigned group"
 msgstr "Groupe non affecté"
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3502
-#: ../../include/functions_reporting.php:4790
+#: ../../include/functions_reporting.php:5053
 msgid "Unnasigned group"
 msgstr "Groupe non affecté"
 
@@ -39949,7 +39990,7 @@ msgstr "Bulle de centile"
 #: ../../godmode/reporting/visual_console_builder.elements.php:222
 #: ../../mobile/operation/events.php:837
 #: ../../include/functions_visual_map_editor.php:1389
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545
 #: ../../operation/visual_console/view.php:308
 msgid "Module Graph"
 msgstr "Graphique de module"
@@ -39957,15 +39998,15 @@ msgstr "Graphique de module"
 #: ../../godmode/reporting/visual_console_builder.elements.php:232
 #: ../../include/functions_visual_map_editor.php:59
 #: ../../include/functions_visual_map_editor.php:1392
-#: ../../include/functions_visual_map.php:4229
+#: ../../include/functions_visual_map.php:4180
 #: ../../operation/visual_console/view.php:328
 msgid "Event history graph"
 msgstr "Graphique de l'historique des événements"
 
 #: ../../godmode/reporting/visual_console_builder.elements.php:241
 #: ../../include/functions_visual_map_editor.php:1393
-#: ../../include/functions_visual_map.php:4254
-#: ../../include/rest-api/models/VisualConsole/Item.php:2131
+#: ../../include/functions_visual_map.php:4205
+#: ../../include/rest-api/models/VisualConsole/Item.php:2132
 #: ../../operation/visual_console/view.php:333
 msgid "Simple Value"
 msgstr "Valeur simple"
@@ -39985,7 +40026,7 @@ msgstr "Valeur simple (processus moyen)"
 #: ../../godmode/reporting/visual_console_builder.elements.php:304
 #: ../../include/functions_visual_map_editor.php:71
 #: ../../include/functions_visual_map_editor.php:1398
-#: ../../include/functions_visual_map.php:4209
+#: ../../include/functions_visual_map.php:4160
 #: ../../operation/visual_console/view.php:358
 msgid "Box"
 msgstr "Boîte"
@@ -39999,20 +40040,20 @@ msgstr "Lien réseau"
 #: ../../godmode/reporting/visual_console_builder.elements.php:344
 #: ../../include/functions_visual_map_editor.php:73
 #: ../../include/functions_visual_map_editor.php:1400
-#: ../../include/functions_visual_map.php:4269
-#: ../../include/rest-api/models/VisualConsole/Item.php:2143
+#: ../../include/functions_visual_map.php:4220
+#: ../../include/rest-api/models/VisualConsole/Item.php:2144
 #: ../../operation/visual_console/view.php:368
 msgid "Color cloud"
 msgstr "Nuage de couleur"
 
 #: ../../godmode/reporting/visual_console_builder.elements.php:352
-#: ../../include/rest-api/models/VisualConsole/Item.php:2155
+#: ../../include/rest-api/models/VisualConsole/Item.php:2156
 #: ../../operation/visual_console/view.php:313
 msgid "Basic chart"
 msgstr "Graphique de base"
 
 #: ../../godmode/reporting/visual_console_builder.elements.php:360
-#: ../../include/rest-api/models/VisualConsole/Item.php:2151
+#: ../../include/rest-api/models/VisualConsole/Item.php:2152
 #: ../../operation/visual_console/view.php:378
 msgid "Odometer"
 msgstr "Odomètre"
@@ -40020,8 +40061,8 @@ msgstr "Odomètre"
 #: ../../godmode/reporting/visual_console_builder.elements.php:368
 #: ../../include/functions_visual_map_editor.php:69
 #: ../../include/functions_visual_map_editor.php:1396
-#: ../../include/functions_visual_map.php:4219
-#: ../../include/rest-api/models/VisualConsole/Item.php:2103
+#: ../../include/functions_visual_map.php:4170
+#: ../../include/rest-api/models/VisualConsole/Item.php:2104
 #: ../../include/lib/Dashboard/Widgets/clock.php:158
 #: ../../include/lib/Dashboard/Widgets/clock.php:310
 #: ../../operation/visual_console/view.php:348
@@ -40080,7 +40121,7 @@ msgstr "Liste de rapports"
 
 #: ../../godmode/reporting/reporting_builder.php:551
 #: ../../godmode/reporting/reporting_builder.php:3538
-#: ../../operation/menu.php:328 ../../operation/reporting/custom_reporting.php:23
+#: ../../operation/menu.php:332 ../../operation/reporting/custom_reporting.php:23
 msgid "Custom reporting"
 msgstr "Rapports personnalisés"
 
@@ -40126,8 +40167,8 @@ msgstr "Élément centile"
 #: ../../godmode/reporting/visual_console_builder.wizard.php:129
 #: ../../mobile/operation/home.php:102
 #: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map.php:4214
-#: ../../include/rest-api/models/VisualConsole/Item.php:2099
+#: ../../include/functions_visual_map.php:4165
+#: ../../include/rest-api/models/VisualConsole/Item.php:2100
 msgid "Module graph"
 msgstr "Graphique de module"
 
@@ -40145,7 +40186,7 @@ msgid "Size (px)"
 msgstr "Taille (px)"
 
 #: ../../godmode/reporting/visual_console_builder.wizard.php:228
-#: ../../include/functions_config.php:1051
+#: ../../include/functions_config.php:1032
 msgid "Font size"
 msgstr "Taille de la police"
 
@@ -40265,19 +40306,19 @@ msgstr "Suppression en cours"
 
 #: ../../godmode/reporting/graph_builder.main.php:218
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:356
-#: ../../operation/reporting/graph_viewer.php:374
+#: ../../operation/reporting/graph_viewer.php:346
 msgid "Bullet chart"
 msgstr "Graphique à puces"
 
 #: ../../godmode/reporting/graph_builder.main.php:219
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:357
-#: ../../operation/reporting/graph_viewer.php:375
+#: ../../operation/reporting/graph_viewer.php:347
 msgid "Gauge"
 msgstr "Calibre"
 
 #: ../../godmode/reporting/graph_builder.main.php:222
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:360
-#: ../../operation/reporting/graph_viewer.php:378
+#: ../../operation/reporting/graph_viewer.php:350
 msgid "Pie"
 msgstr "Diagramme circulaire"
 
@@ -40403,100 +40444,105 @@ msgstr ""
 "Si elle est activée, la commande sera affichée à tout utilisateur pouvant "
 "exécuter cette réponse d’événement"
 
-#: ../../godmode/events/event_edit_filter.php:266
+#: ../../godmode/events/event_edit_filter.php:276
 msgid "Update Filter"
 msgstr "Mise à jour du filtre"
 
-#: ../../godmode/events/event_edit_filter.php:268
+#: ../../godmode/events/event_edit_filter.php:278
 msgid "Create Filter"
 msgstr "Créer un filtre"
 
-#: ../../godmode/events/event_edit_filter.php:278
+#: ../../godmode/events/event_edit_filter.php:288
 #: ../../include/ajax/custom_fields.php:573
 #: ../../include/ajax/custom_fields.php:620
-#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:781
+#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:782
 msgid "Filter name"
 msgstr "Nom du filtre"
 
-#: ../../godmode/events/event_edit_filter.php:281
+#: ../../godmode/events/event_edit_filter.php:291
 msgid "Save in group"
 msgstr "Enregistrer dans le groupe"
 
-#: ../../godmode/events/event_edit_filter.php:281
+#: ../../godmode/events/event_edit_filter.php:291
 msgid ""
 "This group will be use to restrict the visibility of this filter with ACLs"
 msgstr ""
 "Ce groupe sera utilisé pour limiter la visibilité de ce filtre avec les ACL."
 
-#: ../../godmode/events/event_edit_filter.php:443
+#: ../../godmode/events/event_edit_filter.php:453
 msgid "Choose between the users who have validated an event. "
 msgstr "Choisissez parmi les utilisateurs ayant validé un événement. "
 
-#: ../../godmode/events/event_edit_filter.php:467
+#: ../../godmode/events/event_edit_filter.php:477
 msgid "Owner."
 msgstr "Propriétaire."
 
-#: ../../godmode/events/event_edit_filter.php:479
+#: ../../godmode/events/event_edit_filter.php:489
 #: ../../operation/events/events.php:1708
 msgid "All events"
 msgstr "Tous les événements"
 
-#: ../../godmode/events/event_edit_filter.php:480
+#: ../../godmode/events/event_edit_filter.php:490
 #: ../../operation/events/events.php:1709 ../../operation/events/events.php:2375
 msgid "Group events"
 msgstr "Événements du groupe"
 
-#: ../../godmode/events/event_edit_filter.php:481
+#: ../../godmode/events/event_edit_filter.php:491
 #: ../../include/ajax/heatmap.ajax.php:78 ../../operation/events/events.php:1710
 msgid "Group agents"
 msgstr "Groupes d'agents"
 
-#: ../../godmode/events/event_edit_filter.php:482
+#: ../../godmode/events/event_edit_filter.php:492
 #: ../../operation/events/events.php:1711
 msgid "Group extra id"
 msgstr "ID supplémentaire de groupe"
 
-#: ../../godmode/events/event_edit_filter.php:648
+#: ../../godmode/events/event_edit_filter.php:658
 #: ../../operation/events/events.php:1984
 msgid "Filter alert events"
 msgstr "Filtrer les événements d'alerte"
 
-#: ../../godmode/events/event_edit_filter.php:649
+#: ../../godmode/events/event_edit_filter.php:659
 #: ../../operation/events/events.php:1985
 msgid "Only alert events"
 msgstr "Seulement les événements d'alerte"
 
-#: ../../godmode/events/event_edit_filter.php:676
+#: ../../godmode/events/event_edit_filter.php:686
 #: ../../operation/events/events.php:1855
 msgid "Extra ID"
 msgstr "Identifiant supplémentaire"
 
-#: ../../godmode/events/event_edit_filter.php:682
+#: ../../godmode/events/event_edit_filter.php:692
 msgid "Custom data filter type"
 msgstr "Type de filtre de données personnalisé"
 
-#: ../../godmode/events/event_edit_filter.php:685
+#: ../../godmode/events/event_edit_filter.php:695
 msgid "Filter custom data by name field"
 msgstr "Filtrer les données personnalisées par champ de nom"
 
-#: ../../godmode/events/event_edit_filter.php:686
+#: ../../godmode/events/event_edit_filter.php:696
 msgid "Filter custom data by value field"
 msgstr "Filtrer les données personnalisées par champ de valeur"
 
-#: ../../godmode/events/event_edit_filter.php:696
+#: ../../godmode/events/event_edit_filter.php:706
 #: ../../godmode/events/custom_events.php:119
 #: ../../include/functions_reporting_html.php:1069
 #: ../../include/functions_reporting_html.php:1330
 #: ../../include/functions_reporting_html.php:2557
-#: ../../include/ajax/events.php:1718 ../../include/functions_events.php:221
+#: ../../include/ajax/events.php:1725 ../../include/functions_events.php:221
 #: ../../include/functions_events.php:323
 msgid "Custom data"
 msgstr "Données personnalisées"
 
-#: ../../godmode/events/event_edit_filter.php:700
+#: ../../godmode/events/event_edit_filter.php:710
 msgid "Id souce event"
 msgstr "Id source d'événement"
 
+#: ../../godmode/events/event_edit_filter.php:735
+#: ../../operation/events/events.php:256
+msgid "Metaconsola"
+msgstr "Métaconsole"
+
 #: ../../godmode/events/event_responses.list.php:32
 msgid "No responses found"
 msgstr "Aucune réponse retrouvée"
@@ -40562,7 +40608,7 @@ msgid "Severity mini"
 msgstr "Sévérité mini"
 
 #: ../../godmode/events/custom_events.php:118
-#: ../../include/functions_events.php:307 ../../include/functions_events.php:4911
+#: ../../include/functions_events.php:307 ../../include/functions_events.php:4890
 msgid "Module custom ID"
 msgstr "ID personnalisé du module"
 
@@ -40771,27 +40817,27 @@ msgstr ""
 "Vous pouvez définir plusieurs valeurs séparées par des virgules. Par exemple : "
 "public,mysecret,1234"
 
-#: ../../godmode/wizards/HostDevices.class.php:1375
+#: ../../godmode/wizards/HostDevices.class.php:1374
 msgid "OS detection"
 msgstr "Détection du système d'exploitation"
 
-#: ../../godmode/wizards/HostDevices.class.php:1387
+#: ../../godmode/wizards/HostDevices.class.php:1386
 msgid "Name resolution"
 msgstr "Résolution du nom"
 
-#: ../../godmode/wizards/HostDevices.class.php:1398
+#: ../../godmode/wizards/HostDevices.class.php:1397
 msgid "Parent detection"
 msgstr "Détection de parents"
 
-#: ../../godmode/wizards/HostDevices.class.php:1409
+#: ../../godmode/wizards/HostDevices.class.php:1408
 msgid "Parent recursion"
 msgstr "Récursion de parents"
 
-#: ../../godmode/wizards/HostDevices.class.php:1420
+#: ../../godmode/wizards/HostDevices.class.php:1419
 msgid "VLAN enabled"
 msgstr "VLAN activé"
 
-#: ../../godmode/wizards/HostDevices.class.php:1431
+#: ../../godmode/wizards/HostDevices.class.php:1430
 msgid "WMI enabled"
 msgstr "WMI activé"
 
@@ -41830,7 +41876,7 @@ msgstr "Aucun agent retrouvé"
 msgid "Modules by status"
 msgstr "Modules par état"
 
-#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:829
+#: ../../mobile/operation/agent.php:268 ../../include/functions_treeview.php:824
 msgid "Events (24h)"
 msgstr "Événements (24h)"
 
@@ -41848,7 +41894,7 @@ msgstr "Filtrer alertes par %s"
 msgid "Last Fired"
 msgstr "Déclenchée pour la dernière fois"
 
-#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2395
+#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2406
 msgid "No alerts"
 msgstr "Aucune alerte"
 
@@ -41925,7 +41971,7 @@ msgstr "Erreur d'obtention du graphique"
 #: ../../include/functions_reporting_html.php:1359
 #: ../../include/functions_reporting_html.php:2582
 #: ../../include/functions_events.php:2569
-#: ../../include/functions_events.php:4568 ../../operation/events/events.php:749
+#: ../../include/functions_events.php:4547 ../../operation/events/events.php:749
 msgid "New event"
 msgstr "Nouvel événement"
 
@@ -41934,7 +41980,7 @@ msgstr "Nouvel événement"
 #: ../../include/functions_reporting_html.php:1364
 #: ../../include/functions_reporting_html.php:2587
 #: ../../include/functions_events.php:2574
-#: ../../include/functions_events.php:4574 ../../operation/events/events.php:762
+#: ../../include/functions_events.php:4553 ../../operation/events/events.php:762
 msgid "Event validated"
 msgstr "Événement validé"
 
@@ -41943,7 +41989,7 @@ msgstr "Événement validé"
 #: ../../include/functions_reporting_html.php:1369
 #: ../../include/functions_reporting_html.php:2592
 #: ../../include/functions_events.php:2579
-#: ../../include/functions_events.php:4580 ../../operation/events/events.php:774
+#: ../../include/functions_events.php:4559 ../../operation/events/events.php:774
 msgid "Event in process"
 msgstr "Événement en cours"
 
@@ -41959,11 +42005,11 @@ msgstr "Erreur lors de la connexions dans la base de données."
 msgid "Event detail"
 msgstr "Détails de l'événement"
 
-#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4721
+#: ../../mobile/operation/events.php:800 ../../include/functions_events.php:4700
 msgid "Event ID"
 msgstr "Identification de l'événement"
 
-#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:4831
+#: ../../mobile/operation/events.php:828 ../../include/functions_events.php:4810
 msgid "Acknowledged by"
 msgstr "Reconnu par"
 
@@ -41985,10 +42031,10 @@ msgid "Preset Filters"
 msgstr "Filtres prédéfinis"
 
 #: ../../mobile/operation/events.php:1144
-#: ../../include/functions_reporting_html.php:6107
-#: ../../include/functions_reporting_html.php:6266
-#: ../../include/functions_reporting.php:2151
-#: ../../include/functions_reporting.php:2441
+#: ../../include/functions_reporting_html.php:6126
+#: ../../include/functions_reporting_html.php:6285
+#: ../../include/functions_reporting.php:2184
+#: ../../include/functions_reporting.php:2559
 #: ../../include/functions_events.php:2493
 #: ../../include/functions_events.php:2496
 msgid "No events"
@@ -42103,25 +42149,25 @@ msgid "Enable link"
 msgstr "Activer le lien"
 
 #: ../../include/functions_visual_map_editor.php:350
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:518
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508
 msgid "White"
 msgstr "Blanc"
 
 #: ../../include/functions_visual_map_editor.php:351
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509
 msgid "Black"
 msgstr "Noir"
 
 #: ../../include/functions_visual_map_editor.php:352
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:465
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:520
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510
 msgid "Transparent"
 msgstr "Transparent"
 
 #: ../../include/functions_visual_map_editor.php:378
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:499
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402
 msgid "Grid color"
 msgstr "Couleur de la grille"
 
@@ -42130,32 +42176,31 @@ msgid "Data image"
 msgstr "Données dans l'image"
 
 #: ../../include/functions_visual_map_editor.php:503
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:258
 msgid "Resume data color"
 msgstr "Couleur de la légende"
 
 #: ../../include/functions_visual_map_editor.php:517
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:269
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274
 msgid "24h"
 msgstr "24h"
 
 #: ../../include/functions_visual_map_editor.php:518
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:271
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276
 msgid "8h"
 msgstr "8h"
 
 #: ../../include/functions_visual_map_editor.php:519
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:272
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
 msgid "2h"
 msgstr "2h"
 
 #: ../../include/functions_visual_map_editor.php:520
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:273
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278
 msgid "1h"
 msgstr "1h"
 
 #: ../../include/functions_visual_map_editor.php:524
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282
 msgid "Max. Time"
 msgstr "Temp max."
 
@@ -42176,14 +42221,16 @@ msgid "Height proportional"
 msgstr "Hauteur proportionnelle"
 
 #: ../../include/functions_visual_map_editor.php:688
+#: ../../include/functions_visual_map.php:4190
 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460
-msgid "Circular porgress bar"
+#: ../../include/rest-api/models/VisualConsole/Item.php:2124
+msgid "Circular progress bar"
 msgstr "Barre de progression circulaire"
 
 #: ../../include/functions_visual_map_editor.php:689
-#: ../../include/functions_visual_map.php:4244
+#: ../../include/functions_visual_map.php:4195
 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462
-#: ../../include/rest-api/models/VisualConsole/Item.php:2127
+#: ../../include/rest-api/models/VisualConsole/Item.php:2128
 msgid "Circular progress bar (interior)"
 msgstr "Barre de progression circulaire (intérieur)"
 
@@ -42229,7 +42276,7 @@ msgid "To value"
 msgstr "À la valeur"
 
 #: ../../include/functions_visual_map_editor.php:815
-#: ../../include/rest-api/index.php:375
+#: ../../include/rest-api/index.php:376
 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471
 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530
 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487
@@ -42264,32 +42311,32 @@ msgstr ""
 "et la hauteur à 0."
 
 #: ../../include/functions_visual_map_editor.php:974
-#: ../../include/rest-api/models/VisualConsole/Item.php:2438
+#: ../../include/rest-api/models/VisualConsole/Item.php:2439
 msgid "Linked visual console"
 msgstr "Console visuelle liée"
 
 #: ../../include/functions_visual_map_editor.php:1081
-#: ../../include/rest-api/models/VisualConsole/Item.php:2489
+#: ../../include/rest-api/models/VisualConsole/Item.php:2490
 msgid "By status weight"
 msgstr "Par poids d’état"
 
 #: ../../include/functions_visual_map_editor.php:1082
-#: ../../include/rest-api/models/VisualConsole/Item.php:2490
+#: ../../include/rest-api/models/VisualConsole/Item.php:2491
 msgid "By critical elements"
 msgstr "Par éléments critiques"
 
 #: ../../include/functions_visual_map_editor.php:1097
-#: ../../include/rest-api/models/VisualConsole/Item.php:2497
+#: ../../include/rest-api/models/VisualConsole/Item.php:2498
 msgid "Type of the status calculation of the linked visual console"
 msgstr "Type de calcul d'état de la console visuelle liée"
 
 #: ../../include/functions_visual_map_editor.php:1102
-#: ../../include/rest-api/models/VisualConsole/Item.php:2488
+#: ../../include/rest-api/models/VisualConsole/Item.php:2489
 msgid "By default"
 msgstr "Par défaut"
 
 #: ../../include/functions_visual_map_editor.php:1122
-#: ../../include/rest-api/models/VisualConsole/Item.php:2513
+#: ../../include/rest-api/models/VisualConsole/Item.php:2514
 msgid "Linked visual console weight"
 msgstr "Poids de la console visuelle liée"
 
@@ -42298,7 +42345,7 @@ msgid "Lines haven't advanced options"
 msgstr "Les lignes n'ont pas d'options avancées"
 
 #: ../../include/functions_visual_map_editor.php:1206
-#: ../../include/rest-api/models/VisualConsole/Item.php:2188
+#: ../../include/rest-api/models/VisualConsole/Item.php:2189
 msgid "Restrict access to group"
 msgstr "Limiter l'accès au groupe"
 
@@ -42313,7 +42360,7 @@ msgstr ""
 "utilisé pour calculer les consoles visuelles des enfants."
 
 #: ../../include/functions_visual_map_editor.php:1248
-#: ../../include/rest-api/models/VisualConsole/Item.php:2201
+#: ../../include/rest-api/models/VisualConsole/Item.php:2202
 msgid "Cache expiration"
 msgstr "Expiration du cache"
 
@@ -42451,26 +42498,27 @@ msgstr "Erreur d'exportation des données"
 
 #: ../../include/graphs/functions_gd.php:183
 #: ../../include/graphs/functions_gd.php:466
-#: ../../include/functions_graph.php:2907 ../../include/functions_graph.php:2955
+#: ../../include/functions_graph.php:2775 ../../include/functions_graph.php:2823
 msgid "Out of limits"
 msgstr "Hors limites"
 
-#: ../../include/graphs/functions_flot.php:365
+#: ../../include/graphs/functions_flot.php:370
 msgid "Cancel zoom"
 msgstr "Annuler zoom"
 
-#: ../../include/graphs/functions_flot.php:367
+#: ../../include/graphs/functions_flot.php:372
 msgid "Warning and Critical thresholds"
 msgstr "Seuils d'état d'alerte et critique"
 
-#: ../../include/graphs/functions_flot.php:372
+#: ../../include/graphs/functions_flot.php:377
 msgid "Overview graph"
 msgstr "Aperçu du graphique"
 
-#: ../../include/graphs/functions_flot.php:509
-#: ../../include/functions_reporting_html.php:659
+#: ../../include/graphs/functions_flot.php:514
+#: ../../include/functions_reporting_html.php:660
 #: ../../include/functions_reporting_html.php:4596
-#: ../../include/ajax/events.php:1259 ../../include/functions_treeview.php:315
+#: ../../include/ajax/events.php:1260 ../../include/functions_graph.php:4836
+#: ../../include/functions_treeview.php:315
 msgid "No data"
 msgstr "Aucune donnée"
 
@@ -42534,15 +42582,15 @@ msgstr "Serveur de prédiction"
 msgid "Satellite server"
 msgstr "Serveur Satellite"
 
-#: ../../include/functions_reporting_html.php:109
+#: ../../include/functions_reporting_html.php:110
 msgid "Label: "
 msgstr "Étiquette : "
 
-#: ../../include/functions_reporting_html.php:584
+#: ../../include/functions_reporting_html.php:585
 msgid "Time Failed"
 msgstr "Temps d'échec"
 
-#: ../../include/functions_reporting_html.php:588
+#: ../../include/functions_reporting_html.php:589
 msgid "Downtime"
 msgstr "Temps d'arrêt"
 
@@ -42608,6 +42656,20 @@ msgstr "Groupes secondaires"
 msgid "Remote conf."
 msgstr "Configuration à distance"
 
+#: ../../include/functions_reporting_html.php:1831
+#: ../../include/functions_inventory.php:885
+#: ../../include/functions_inventory.php:948
+msgid "Added"
+msgstr "Ajouté"
+
+#: ../../include/functions_reporting_html.php:1842
+#: ../../include/functions_inventory.php:891
+#: ../../include/functions_inventory.php:956
+#: ../../include/functions_filemanager.php:342
+#: ../../include/functions_filemanager.php:359
+msgid "Deleted"
+msgstr "Supprimé"
+
 #: ../../include/functions_reporting_html.php:2198
 msgid "Cell turns grey when the module is in 'not initialize' status"
 msgstr ""
@@ -42615,7 +42677,7 @@ msgstr ""
 "initialisé »."
 
 #: ../../include/functions_reporting_html.php:2490
-#: ../../include/functions_reporting_html.php:5585
+#: ../../include/functions_reporting_html.php:5604
 msgid "Monitors"
 msgstr "Moniteurs"
 
@@ -42628,7 +42690,7 @@ msgid "Events validated by user"
 msgstr "Événements validés par l'utilisateur"
 
 #: ../../include/functions_reporting_html.php:2692
-#: ../../include/functions_reporting_html.php:5874
+#: ../../include/functions_reporting_html.php:5893
 msgid "Events by severity"
 msgstr "Événements par sévérité"
 
@@ -42686,78 +42748,78 @@ msgid "Primary"
 msgstr "Primaire"
 
 #: ../../include/functions_reporting_html.php:5130
-#: ../../include/functions_reporting.php:11614
-#: ../../include/functions_reporting.php:11635
+#: ../../include/functions_reporting.php:11900
+#: ../../include/functions_reporting.php:11921
 msgid "Alert level"
 msgstr "Niveau d'alerte"
 
-#: ../../include/functions_reporting_html.php:5359
+#: ../../include/functions_reporting_html.php:5378
 #, php-format
 msgid "Agents in group: %s"
 msgstr "Agents du groupe : %s"
 
-#: ../../include/functions_reporting_html.php:5461
+#: ../../include/functions_reporting_html.php:5480
 msgid "Last failure"
 msgstr "Dernier échec"
 
-#: ../../include/functions_reporting_html.php:5551
+#: ../../include/functions_reporting_html.php:5570
 msgid "N/A(*)"
 msgstr "S/O(*)"
 
-#: ../../include/functions_reporting_html.php:5799
-#: ../../include/functions_reporting.php:11846
+#: ../../include/functions_reporting_html.php:5818
+#: ../../include/functions_reporting.php:12132
 msgid "Monitor checks"
 msgstr "Vérifications de moniteurs"
 
-#: ../../include/functions_reporting_html.php:5806
-#: ../../include/functions_reporting.php:11865
+#: ../../include/functions_reporting_html.php:5825
+#: ../../include/functions_reporting.php:12151
 msgid "Total agents and monitors"
 msgstr "Nombre total d'agents et de moniteurs"
 
-#: ../../include/functions_reporting_html.php:5825
-#: ../../include/functions_reporting_html.php:5830
+#: ../../include/functions_reporting_html.php:5844
+#: ../../include/functions_reporting_html.php:5849
 msgid "Node overview"
 msgstr "Aperçu des nœuds"
 
-#: ../../include/functions_reporting_html.php:5850
-#: ../../include/functions_reporting_html.php:5862
+#: ../../include/functions_reporting_html.php:5869
+#: ../../include/functions_reporting_html.php:5881
 msgid "Critical events"
 msgstr "Événements en état critique"
 
-#: ../../include/functions_reporting_html.php:5853
-#: ../../include/functions_reporting_html.php:5864
+#: ../../include/functions_reporting_html.php:5872
+#: ../../include/functions_reporting_html.php:5883
 msgid "Warning events"
 msgstr "Événements en état d'alerte"
 
-#: ../../include/functions_reporting_html.php:5856
-#: ../../include/functions_reporting_html.php:5866
+#: ../../include/functions_reporting_html.php:5875
+#: ../../include/functions_reporting_html.php:5885
 msgid "OK events"
 msgstr "Événements en état OK"
 
-#: ../../include/functions_reporting_html.php:5859
-#: ../../include/functions_reporting_html.php:5868
+#: ../../include/functions_reporting_html.php:5878
+#: ../../include/functions_reporting_html.php:5887
 msgid "Unknown events"
 msgstr "Événements en état inconnu"
 
-#: ../../include/functions_reporting_html.php:5884
+#: ../../include/functions_reporting_html.php:5903
 msgid "Important Events by Criticity"
 msgstr "Événements importants par sévérité"
 
-#: ../../include/functions_reporting_html.php:5910
+#: ../../include/functions_reporting_html.php:5929
 #, php-format
 msgid "Last activity in %s console"
 msgstr "Dernière activité dans la console %s"
 
-#: ../../include/functions_reporting_html.php:5997
-#: ../../include/functions_reporting_html.php:6139
+#: ../../include/functions_reporting_html.php:6016
+#: ../../include/functions_reporting_html.php:6158
 msgid "Events info (1hr.)"
 msgstr "Information des événements (1h)"
 
-#: ../../include/functions_reporting_html.php:6296
+#: ../../include/functions_reporting_html.php:6315
 msgid "This SLA has been affected by the following scheduled downtimes"
 msgstr "Ce SLA a été affecté par les temps d'arrêt planifiés suivants"
 
-#: ../../include/functions_reporting_html.php:6297
+#: ../../include/functions_reporting_html.php:6316
 msgid ""
 "If the duration of the scheduled downtime is less than 5 minutes it will not "
 "be represented in the graph"
@@ -42765,163 +42827,163 @@ msgstr ""
 "Si la durée du temps d'arrêt programmé est inférieure à 5 minutes, il ne sera "
 "pas représenté dans le graphique"
 
-#: ../../include/functions_reporting_html.php:6304
+#: ../../include/functions_reporting_html.php:6323
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380
 msgid "Dates"
 msgstr "Dates"
 
-#: ../../include/functions_reporting_html.php:6335
+#: ../../include/functions_reporting_html.php:6354
 msgid "This item is affected by a malformed scheduled downtime"
 msgstr "Cet élément est affecté par un temps d'arrêt programmé mal formé"
 
-#: ../../include/functions_reporting_html.php:6335
+#: ../../include/functions_reporting_html.php:6354
 msgid "Go to the scheduled downtimes section to solve this"
 msgstr ""
 "Accédez à la section des temps d'arrêt programmés pour résoudre ce problème"
 
-#: ../../include/functions.php:484 ../../include/functions.php:636
+#: ../../include/functions.php:488 ../../include/functions.php:640
 msgid "s"
 msgstr "s"
 
-#: ../../include/functions.php:485 ../../include/functions.php:637
+#: ../../include/functions.php:489 ../../include/functions.php:641
 msgid "d"
 msgstr "d"
 
-#: ../../include/functions.php:486 ../../include/functions.php:638
+#: ../../include/functions.php:490 ../../include/functions.php:642
 msgid "M"
 msgstr "M"
 
-#: ../../include/functions.php:487 ../../include/functions.php:639
+#: ../../include/functions.php:491 ../../include/functions.php:643
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:259
-#: ../../include/rest-api/models/VisualConsole/Item.php:2036
+#: ../../include/rest-api/models/VisualConsole/Item.php:2037
 msgid "Y"
 msgstr "Y"
 
-#: ../../include/functions.php:488 ../../include/functions.php:640
+#: ../../include/functions.php:492 ../../include/functions.php:644
 msgid "m"
 msgstr "m"
 
-#: ../../include/functions.php:489 ../../include/functions.php:641
+#: ../../include/functions.php:493 ../../include/functions.php:645
 msgid "h"
 msgstr "h"
 
-#: ../../include/functions.php:490 ../../include/functions.php:642
+#: ../../include/functions.php:494 ../../include/functions.php:646
 msgid "N"
 msgstr "N"
 
-#: ../../include/functions.php:1043 ../../include/functions.php:1289
-#: ../../include/functions.php:1323 ../../include/functions_graph.php:3477
-#: ../../include/functions_graph.php:3478 ../../include/functions_graph.php:5060
+#: ../../include/functions.php:1069 ../../include/functions.php:1315
+#: ../../include/functions.php:1349 ../../include/functions_graph.php:3318
+#: ../../include/functions_graph.php:3320 ../../include/functions_graph.php:4848
 #: ../../include/functions_incidents.php:34
 #: ../../include/functions_incidents.php:75
-#: ../../include/functions_events.php:3090
+#: ../../include/functions_events.php:3069
 #: ../../operation/visual_console/view.php:433
 msgid "Maintenance"
 msgstr "Entretien"
 
-#: ../../include/functions.php:1047 ../../include/functions.php:1290
-#: ../../include/functions.php:1327 ../../include/functions_graph.php:3482
-#: ../../include/functions_graph.php:3483 ../../include/functions_graph.php:5064
-#: ../../include/functions_events.php:3094
+#: ../../include/functions.php:1073 ../../include/functions.php:1316
+#: ../../include/functions.php:1353 ../../include/functions_graph.php:3324
+#: ../../include/functions_graph.php:3326 ../../include/functions_graph.php:4852
+#: ../../include/functions_events.php:3073
 msgid "Informational"
 msgstr "Informatif"
 
-#: ../../include/functions.php:1063 ../../include/functions.php:1292
-#: ../../include/functions.php:1343 ../../include/functions_graph.php:3492
-#: ../../include/functions_graph.php:3493 ../../include/functions_graph.php:5080
+#: ../../include/functions.php:1089 ../../include/functions.php:1318
+#: ../../include/functions.php:1369 ../../include/functions_graph.php:3336
+#: ../../include/functions_graph.php:3338 ../../include/functions_graph.php:4868
 msgid "Minor"
 msgstr "Mineur"
 
-#: ../../include/functions.php:1067 ../../include/functions.php:1294
-#: ../../include/functions.php:1347 ../../include/functions_graph.php:3502
-#: ../../include/functions_graph.php:3503 ../../include/functions_graph.php:5084
+#: ../../include/functions.php:1093 ../../include/functions.php:1320
+#: ../../include/functions.php:1373 ../../include/functions_graph.php:3348
+#: ../../include/functions_graph.php:3350 ../../include/functions_graph.php:4872
 msgid "Major"
 msgstr "Majeure"
 
-#: ../../include/functions.php:1242 ../../include/functions_events.php:3010
+#: ../../include/functions.php:1268 ../../include/functions_events.php:2989
 msgid "Monitor Critical"
 msgstr "Moniteur en état critique"
 
-#: ../../include/functions.php:1243 ../../include/functions_events.php:3014
+#: ../../include/functions.php:1269 ../../include/functions_events.php:2993
 msgid "Monitor Warning"
 msgstr "Moniteur en état d'alerte"
 
-#: ../../include/functions.php:1244 ../../include/functions_events.php:3018
+#: ../../include/functions.php:1270 ../../include/functions_events.php:2997
 msgid "Monitor Normal"
 msgstr "Moniteur en état normal"
 
-#: ../../include/functions.php:1246
+#: ../../include/functions.php:1272
 msgid "Monitor Unknown"
 msgstr "Moniteur inconnu"
 
-#: ../../include/functions.php:1249 ../../include/functions_events.php:2794
-#: ../../include/functions_events.php:3026
+#: ../../include/functions.php:1275 ../../include/functions_events.php:2773
+#: ../../include/functions_events.php:3005
 msgid "Alert recovered"
 msgstr "Alertes récupérées"
 
-#: ../../include/functions.php:1250 ../../include/functions_events.php:2842
-#: ../../include/functions_events.php:3030
+#: ../../include/functions.php:1276 ../../include/functions_events.php:2821
+#: ../../include/functions_events.php:3009
 msgid "Alert ceased"
 msgstr "Alerte arrêtée"
 
-#: ../../include/functions.php:1251 ../../include/functions_events.php:3034
+#: ../../include/functions.php:1277 ../../include/functions_events.php:3013
 msgid "Alert manual validation"
 msgstr "Validation manuelle de la alerte"
 
-#: ../../include/functions.php:1253
+#: ../../include/functions.php:1279
 msgid "Agent created"
 msgstr "Agent créé"
 
-#: ../../include/functions.php:1254 ../../include/functions_events.php:3038
+#: ../../include/functions.php:1280 ../../include/functions_events.php:3017
 msgid "Recon host detected"
 msgstr "Hôte de reconnaissance détecté"
 
-#: ../../include/functions.php:1257 ../../include/functions_events.php:2838
-#: ../../include/functions_events.php:3050
+#: ../../include/functions.php:1283 ../../include/functions_events.php:2817
+#: ../../include/functions_events.php:3029
 msgid "Configuration change"
 msgstr "Modification de la configuration"
 
-#: ../../include/functions.php:1374 ../../include/functions.php:1404
+#: ../../include/functions.php:1400 ../../include/functions.php:1430
 msgid "ALERT FIRED"
 msgstr "ALETE DÉCLENCHÉE"
 
-#: ../../include/functions.php:1377 ../../include/functions.php:1414
-#: ../../include/functions_modules.php:4148
+#: ../../include/functions.php:1403 ../../include/functions.php:1440
+#: ../../include/functions_modules.php:4223
 #: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:567
 #: ../../operation/agentes/status_monitor.php:1669
 #: ../../operation/agentes/status_monitor.php:1682
 msgid "NO DATA"
 msgstr "PAS DE DONNÉES"
 
-#: ../../include/functions.php:2714
+#: ../../include/functions.php:2740
 #, php-format
 msgid "%s seconds"
 msgstr "%s secondes"
 
-#: ../../include/functions.php:2717 ../../include/functions.php:2718
+#: ../../include/functions.php:2743 ../../include/functions.php:2744
 #, php-format
 msgid "%s minutes"
 msgstr "%s minutes"
 
-#: ../../include/functions.php:2726 ../../include/functions.php:2727
+#: ../../include/functions.php:2752 ../../include/functions.php:2753
 #, php-format
 msgid "%s months"
 msgstr "%s mois"
 
-#: ../../include/functions.php:2729 ../../include/functions.php:2730
+#: ../../include/functions.php:2755 ../../include/functions.php:2756
 #, php-format
 msgid "%s years"
 msgstr "%s ans"
 
-#: ../../include/functions.php:2732
+#: ../../include/functions.php:2758
 msgid "Default values will be used"
 msgstr "Les valeurs par défaut seront utilisées."
 
-#: ../../include/functions.php:2917 ../../include/functions.php:2922
+#: ../../include/functions.php:2943 ../../include/functions.php:2948
 msgid "The file exceeds the maximum size"
 msgstr "Le fichier dépasse la taille maximale"
 
-#: ../../include/functions.php:2918
+#: ../../include/functions.php:2944
 msgid ""
 "Please check this PHP runtime variable values: 
  upload_max_filesize "
 "(currently "
@@ -42929,118 +42991,118 @@ msgstr ""
 "Veuillez vérifier les valeurs de cette variable d’exécution PHP : 
  "
 "upload_max_filesize (actuellement "
 
-#: ../../include/functions.php:2926
+#: ../../include/functions.php:2952
 msgid "The uploaded file was only partially uploaded"
 msgstr "Le fichier n'a été que partiellement téléversé."
 
-#: ../../include/functions.php:2930
+#: ../../include/functions.php:2956
 msgid "No file was uploaded"
 msgstr "Aucun fichier n'a été téléversé."
 
-#: ../../include/functions.php:2934
+#: ../../include/functions.php:2960
 msgid "Missing a temporary folder"
 msgstr "Dossier temporaire manquant"
 
-#: ../../include/functions.php:2938
+#: ../../include/functions.php:2964
 msgid "Failed to write file to disk"
 msgstr "Impossible d'écrire le fichier sur le disque"
 
-#: ../../include/functions.php:2942
+#: ../../include/functions.php:2968
 msgid "File upload stopped by extension"
 msgstr "Téléversement du fichier interrompu par l'extension"
 
-#: ../../include/functions.php:2946
+#: ../../include/functions.php:2972
 msgid "Unknown upload error"
 msgstr "Erreur inconnue de téléversement"
 
-#: ../../include/functions.php:3057
+#: ../../include/functions.php:3083
 msgid "No data found to export"
 msgstr "Aucune donnée à exporter"
 
-#: ../../include/functions.php:3378 ../../operation/gis_maps/render_view.php:149
+#: ../../include/functions.php:3404 ../../operation/gis_maps/render_view.php:149
 msgid "5 seconds"
 msgstr "5 secondes"
 
-#: ../../include/functions.php:3379 ../../operation/gis_maps/render_view.php:150
+#: ../../include/functions.php:3405 ../../operation/gis_maps/render_view.php:150
 msgid "10 seconds"
 msgstr "10 secondes"
 
-#: ../../include/functions.php:3380
+#: ../../include/functions.php:3406
 msgid "15 seconds"
 msgstr "15 secondes"
 
-#: ../../include/functions.php:3381 ../../include/ajax/heatmap.ajax.php:50
+#: ../../include/functions.php:3407 ../../include/ajax/heatmap.ajax.php:50
 #: ../../include/class/AgentsAlerts.class.php:804 ../../operation/heatmap.php:175
 #: ../../operation/gis_maps/render_view.php:151
 msgid "30 seconds"
 msgstr "30 secondes"
 
-#: ../../include/functions.php:3382 ../../include/ajax/heatmap.ajax.php:51
+#: ../../include/functions.php:3408 ../../include/ajax/heatmap.ajax.php:51
 #: ../../include/class/AgentsAlerts.class.php:805 ../../operation/heatmap.php:176
 #: ../../operation/gis_maps/render_view.php:152
 msgid "1 minute"
 msgstr "1 minute"
 
-#: ../../include/functions.php:3383
+#: ../../include/functions.php:3409
 #: ../../include/class/AgentsAlerts.class.php:806
 #: ../../operation/gis_maps/render_view.php:153
 msgid "2 minutes"
 msgstr "2 minutes"
 
-#: ../../include/functions.php:3384 ../../include/ajax/heatmap.ajax.php:53
+#: ../../include/functions.php:3410 ../../include/ajax/heatmap.ajax.php:53
 #: ../../include/ajax/module.php:205
 #: ../../include/class/AgentsAlerts.class.php:807 ../../operation/heatmap.php:178
 #: ../../operation/gis_maps/render_view.php:154
 msgid "5 minutes"
 msgstr "5 minutes"
 
-#: ../../include/functions.php:3385
+#: ../../include/functions.php:3411
 msgid "15 minutes"
 msgstr "15 minutes"
 
-#: ../../include/functions.php:3386 ../../include/ajax/module.php:206
+#: ../../include/functions.php:3412 ../../include/ajax/module.php:206
 msgid "30 minutes"
 msgstr "30 minutes"
 
-#: ../../include/functions.php:3901
+#: ../../include/functions.php:3927
 msgid "Summatory series"
 msgstr "Série récapitulative"
 
-#: ../../include/functions.php:3905
+#: ../../include/functions.php:3931
 msgid "Average series"
 msgstr "Série moyenne"
 
-#: ../../include/functions.php:3933 ../../include/functions.php:3952
-#: ../../include/functions.php:3966 ../../include/functions.php:3988
-#: ../../include/functions.php:4069 ../../include/functions.php:4146
+#: ../../include/functions.php:3959 ../../include/functions.php:3978
+#: ../../include/functions.php:3992 ../../include/functions.php:4014
+#: ../../include/functions.php:4095 ../../include/functions.php:4172
 msgid "Unit "
 msgstr "Unité"
 
-#: ../../include/functions.php:4014 ../../include/functions.php:4079
+#: ../../include/functions.php:4040 ../../include/functions.php:4105
 msgid "Min:"
 msgstr "Min :"
 
-#: ../../include/functions.php:4021 ../../include/functions.php:4088
+#: ../../include/functions.php:4047 ../../include/functions.php:4114
 msgid "Max:"
 msgstr "Max :"
 
-#: ../../include/functions.php:4028 ../../include/functions.php:4097
+#: ../../include/functions.php:4054 ../../include/functions.php:4123
 msgid "Avg:"
 msgstr "Moy :"
 
-#: ../../include/functions.php:4143 ../../include/functions.php:4151
+#: ../../include/functions.php:4169 ../../include/functions.php:4177
 msgid "of module"
 msgstr "du module"
 
-#: ../../include/functions.php:4170
+#: ../../include/functions.php:4196
 msgid "Projection"
 msgstr "Projection"
 
-#: ../../include/functions.php:5990
+#: ../../include/functions.php:6039
 msgid "Testing Pandora FMS email"
 msgstr "Tester l’email Pandora FMS"
 
-#: ../../include/functions.php:6003
+#: ../../include/functions.php:6052
 msgid ""
 "This is an email test sent from Pandora FMS. If you can read this, your "
 "configuration works."
@@ -43048,22 +43110,22 @@ msgstr ""
 "Il s'agit d'un test par e-mail envoyé par Pandora FMS. Si vous pouvez lire "
 "ceci, votre configuration fonctionne."
 
-#: ../../include/functions.php:6237
-#: ../../include/class/ConsoleSupervisor.php:1494
-#: ../../include/class/ConsoleSupervisor.php:1518
-#: ../../include/class/ConsoleSupervisor.php:1547
-#: ../../include/class/ConsoleSupervisor.php:1629
+#: ../../include/functions.php:6286
+#: ../../include/class/ConsoleSupervisor.php:1490
+#: ../../include/class/ConsoleSupervisor.php:1514
+#: ../../include/class/ConsoleSupervisor.php:1543
+#: ../../include/class/ConsoleSupervisor.php:1624
 #, php-format
 msgid "Not recommended '%s' value in PHP configuration"
 msgstr "Valeur '%s' non recommandée dans la configuration PHP"
 
-#: ../../include/functions.php:6238
+#: ../../include/functions.php:6287
 msgid "Recommended value is: -1"
 msgstr "La valeur recommandée est : -1"
 
-#: ../../include/functions.php:6239
-#: ../../include/class/ConsoleSupervisor.php:1553
-#: ../../include/class/ConsoleSupervisor.php:1635
+#: ../../include/functions.php:6288
+#: ../../include/class/ConsoleSupervisor.php:1549
+#: ../../include/class/ConsoleSupervisor.php:1630
 msgid ""
 "Please, change it on your PHP configuration file (php.ini) or contact with "
 "administrator"
@@ -43071,7 +43133,7 @@ msgstr ""
 "Veuillez le modifier sur votre fichier de configuration PHP (php.ini) ou "
 "communiquez avec votre administrateur."
 
-#: ../../include/functions.php:6240 ../../general/login_help_dialog.php:96
+#: ../../include/functions.php:6289 ../../general/login_help_dialog.php:96
 #: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:142
 msgid "Documentation"
 msgstr "Documentation"
@@ -43202,9 +43264,9 @@ msgstr ""
 msgid "Successful delete of alert template."
 msgstr "Suppression réussie du modèle d'alerte."
 
-#: ../../include/functions_api.php:6453 ../../include/functions_api.php:11966
-#: ../../include/functions_api.php:12032 ../../include/functions_api.php:12313
-#: ../../include/functions_api.php:12393
+#: ../../include/functions_api.php:6453 ../../include/functions_api.php:11971
+#: ../../include/functions_api.php:12037 ../../include/functions_api.php:12318
+#: ../../include/functions_api.php:12398
 #, php-format
 msgid "%d agents affected"
 msgstr "%d agents concernés"
@@ -43309,168 +43371,168 @@ msgstr "Module de politique SNMP mis à jour correctement"
 msgid "Successful deletion"
 msgstr "Suppression réussie"
 
-#: ../../include/functions_api.php:9613
+#: ../../include/functions_api.php:9614
 msgid "User created."
 msgstr "Utilisateur créé."
 
-#: ../../include/functions_api.php:9706
+#: ../../include/functions_api.php:9707
 msgid "User updated."
 msgstr "Utilisateur mis à jour."
 
-#: ../../include/functions_api.php:9783
+#: ../../include/functions_api.php:9784
 msgid "Enabled user."
 msgstr "Utilisateur activé"
 
-#: ../../include/functions_api.php:9791
+#: ../../include/functions_api.php:9792
 msgid "Disabled user."
 msgstr "Utilisateur désactivé"
 
-#: ../../include/functions_api.php:10086
+#: ../../include/functions_api.php:10087
 #, php-format
 msgid "Template have been inserted in %d agents."
 msgstr "Le modèle a été inséré dans %d agents."
 
-#: ../../include/functions_api.php:10258
+#: ../../include/functions_api.php:10263
 msgid "XML file was generated successfully in path: "
 msgstr "Le fichier XML a été généré correctement dans le chemin :"
 
-#: ../../include/functions_api.php:10398
+#: ../../include/functions_api.php:10403
 #, php-format
 msgid "Module has been created in %d agents."
 msgstr "Le module a été créé dans %d agents."
 
-#: ../../include/functions_api.php:10526
+#: ../../include/functions_api.php:10531
 #, php-format
 msgid "Action has been set for %d agents."
 msgstr "Une action a été définie pour %d agents."
 
-#: ../../include/functions_api.php:11566
+#: ../../include/functions_api.php:11571
 msgid "User deleted."
 msgstr "Utilisateur supprimé."
 
-#: ../../include/functions_api.php:11625
+#: ../../include/functions_api.php:11630
 msgid "User profile added."
 msgstr "Profil d’utilisateur ajouté."
 
-#: ../../include/functions_api.php:11690
+#: ../../include/functions_api.php:11695
 msgid "User profile deleted."
 msgstr "Profil d’utilisateur supprimé."
 
-#: ../../include/functions_api.php:11973
+#: ../../include/functions_api.php:11978
 msgid "Module disabled successfully."
 msgstr "Module désactivé correctement."
 
-#: ../../include/functions_api.php:11975
+#: ../../include/functions_api.php:11980
 msgid "The module could not be disabled."
 msgstr "Erreur de désactivation du module."
 
-#: ../../include/functions_api.php:12039
+#: ../../include/functions_api.php:12044
 msgid "Module enabled successfully."
 msgstr "Module activé correctement."
 
-#: ../../include/functions_api.php:12041
+#: ../../include/functions_api.php:12046
 msgid "The module could not be enabled."
 msgstr "Erreur d'activation du module."
 
-#: ../../include/functions_api.php:12089 ../../include/functions_api.php:12142
+#: ../../include/functions_api.php:12094 ../../include/functions_api.php:12147
 msgid "The alert could not be disabled."
 msgstr "Erreur de désactivation de l’alerte."
 
-#: ../../include/functions_api.php:12189 ../../include/functions_api.php:12242
+#: ../../include/functions_api.php:12194 ../../include/functions_api.php:12247
 msgid "The alert could not be enabled."
 msgstr "L'alerte n'a pas pu être activée."
 
-#: ../../include/functions_api.php:13519
+#: ../../include/functions_api.php:13524
 msgid "Enabled agent."
 msgstr "Agent activé"
 
-#: ../../include/functions_api.php:13527
+#: ../../include/functions_api.php:13532
 msgid "Disabled agent."
 msgstr "Agent désactivé"
 
-#: ../../include/functions_api.php:14506
+#: ../../include/functions_api.php:14511
 msgid "Metaconsole and the licenses of all nodes were updated."
 msgstr "La Metaconsole et les licences de tous les nœuds ont été mis à jour."
 
-#: ../../include/functions_api.php:14508
+#: ../../include/functions_api.php:14513
 #, php-format
 msgid "Metaconsole license updated but %d of %d node failed to sync."
 msgstr ""
 "La licence Metaconsole a été mise à jour mais %d sur %d nœud n'a pas réussi à "
 "se synchroniser."
 
-#: ../../include/functions_api.php:14511
+#: ../../include/functions_api.php:14516
 msgid "This function is for metaconsole only."
 msgstr "Cette fonction est réservée à la Métaconsole."
 
-#: ../../include/functions_api.php:14901 ../../include/functions_api.php:14972
+#: ../../include/functions_api.php:14906 ../../include/functions_api.php:14977
 msgid "Successfully deleted."
 msgstr "Supprimé correctement"
 
-#: ../../include/functions_api.php:14931
+#: ../../include/functions_api.php:14936
 msgid "The user cannot access the cluster."
 msgstr "L'utilisateur ne peut pas accéder au grappe."
 
-#: ../../include/functions_api.php:15817
+#: ../../include/functions_api.php:15822
 msgid "Event filter successfully created."
 msgstr "Filtre d'événement créé correctement."
 
-#: ../../include/functions_api.php:16050
+#: ../../include/functions_api.php:16055
 msgid "Event filter successfully updated."
 msgstr "Filtre d'événement mis à jour correctement."
 
-#: ../../include/functions_api.php:16091
+#: ../../include/functions_api.php:16096
 msgid "Event filter successfully deleted."
 msgstr "Filtre d'événement supprimé correctement."
 
-#: ../../include/functions_api.php:16407
+#: ../../include/functions_api.php:16412
 msgid "Validated traps."
 msgstr "Traps validés."
 
-#: ../../include/functions_api.php:16434
+#: ../../include/functions_api.php:16439
 msgid "Deleted traps."
 msgstr "Traps supprimés."
 
-#: ../../include/functions_api.php:16627
+#: ../../include/functions_api.php:16632
 #, php-format
 msgid "Successfully updated module/alert count in id agent %d."
 msgstr ""
 "Module/nombre d'alertes mis à jour correctement dans l'agent d'identification "
 "%d."
 
-#: ../../include/functions_api.php:16629
+#: ../../include/functions_api.php:16634
 msgid "Successfully updated module/alert count in all agents"
 msgstr "Nombre de modules/alertes mis à jour correctement dans tous les agents"
 
-#: ../../include/functions_api.php:17103
+#: ../../include/functions_api.php:17108
 #, php-format
 msgid "Successfully added to delete pending id agent %d to id policy %d."
 msgstr ""
 "Ajouté correctement pour supprimer l'agent d'ID en attente %d dans la "
 "stratégie d'ID %d."
 
-#: ../../include/functions_api.php:17292
+#: ../../include/functions_api.php:17297
 msgid "Error enable/disable discovery task. Id_user cannot be left blank."
 msgstr ""
 "Erreur d'activation/désactivation de la tâche de découverte. Id_user ne peut "
 "pas être laissé vide."
 
-#: ../../include/functions_api.php:17300
+#: ../../include/functions_api.php:17305
 msgid ""
 "Error enable/disable discovery task. Enable/disable value cannot be left blank."
 msgstr ""
 "Erreur d'activation/désactivation de la tâche de découverte. La valeur "
 "d'activation/désactivation ne peut pas être laissée vide."
 
-#: ../../include/functions_api.php:17325
+#: ../../include/functions_api.php:17330
 msgid "Error in discovery task enabling/disabling."
 msgstr "Erreur lors de l'activation/désactivation de la tâche de découverte."
 
-#: ../../include/functions_api.php:17333
+#: ../../include/functions_api.php:17338
 msgid "Enabled discovery task."
 msgstr "Tâche de découverte activée."
 
-#: ../../include/functions_api.php:17341
+#: ../../include/functions_api.php:17346
 msgid "Disabled discovery task."
 msgstr "Tâche de découverte désactivée."
 
@@ -43501,11 +43563,11 @@ msgstr "Créer une nouvelle carte dynamique radiale"
 
 #: ../../include/functions_networkmap.php:2068
 #: ../../include/functions_maps.php:73
-#: ../../include/functions_planned_downtimes.php:966
+#: ../../include/functions_planned_downtimes.php:967
 msgid "Copy of "
 msgstr "Copie de "
 
-#: ../../include/functions_networkmap.php:3505
+#: ../../include/functions_networkmap.php:3508
 msgid "Map not found."
 msgstr "Carte introuvable."
 
@@ -43631,10 +43693,10 @@ msgid "F."
 msgstr "F."
 
 #: ../../include/ajax/alert_list.ajax.php:341
-#: ../../operation/agentes/alerts_status.php:367
-#: ../../operation/agentes/alerts_status.php:368
-#: ../../operation/agentes/alerts_status.php:408
-#: ../../operation/agentes/alerts_status.php:409
+#: ../../operation/agentes/alerts_status.php:374
+#: ../../operation/agentes/alerts_status.php:375
+#: ../../operation/agentes/alerts_status.php:415
+#: ../../operation/agentes/alerts_status.php:416
 msgid "No alerts found"
 msgstr "Aucune alerte retrouvée"
 
@@ -43790,123 +43852,123 @@ msgstr "Filtre supprimée correctement"
 msgid "Error delete filter."
 msgstr "Erreur de suppression du filtre."
 
-#: ../../include/ajax/events.php:95
+#: ../../include/ajax/events.php:96
 msgid "Failed to retrieve comments"
 msgstr "Échec de la récupération des commentaires"
 
-#: ../../include/ajax/events.php:766
+#: ../../include/ajax/events.php:767
 msgid "New filter"
 msgstr "Nouveau filtre"
 
-#: ../../include/ajax/events.php:784
+#: ../../include/ajax/events.php:785
 msgid "Save in Group"
 msgstr "Enregistrer dans le groupe"
 
-#: ../../include/ajax/events.php:820
+#: ../../include/ajax/events.php:821
 msgid "Overwrite filter"
 msgstr "Écraser le filtre"
 
-#: ../../include/ajax/events.php:891
+#: ../../include/ajax/events.php:892
 msgid "Filter name cannot be left blank"
 msgstr "Le nom du filtre ne peut pas être laissé en blanc"
 
-#: ../../include/ajax/events.php:1242
+#: ../../include/ajax/events.php:1243
 msgid "unauthorized"
 msgstr "non autorisée"
 
-#: ../../include/ajax/events.php:1348
+#: ../../include/ajax/events.php:1349
 msgid "Error executing response"
 msgstr "Erreur lors de l'exécution de la réponse"
 
-#: ../../include/ajax/events.php:1666
+#: ../../include/ajax/events.php:1673
 msgid "Related"
 msgstr "Associé"
 
-#: ../../include/ajax/events.php:1678
+#: ../../include/ajax/events.php:1685
 msgid "Agent fields"
 msgstr "Champs d'agent"
 
-#: ../../include/ajax/events.php:1816
+#: ../../include/ajax/events.php:1823
 msgid "Error adding comment"
 msgstr "Erreur d'ajout du commentaire"
 
-#: ../../include/ajax/events.php:1823
+#: ../../include/ajax/events.php:1830
 msgid "Comment added successfully"
 msgstr "Commentaire ajouté correctement"
 
-#: ../../include/ajax/events.php:1830
+#: ../../include/ajax/events.php:1837
 msgid "Error changing event status"
 msgstr "Erreur de modification de l'état de l'événement"
 
-#: ../../include/ajax/events.php:1837
+#: ../../include/ajax/events.php:1844
 msgid "Event status changed successfully"
 msgstr "État de l'événement modifié correctement"
 
-#: ../../include/ajax/events.php:1844
+#: ../../include/ajax/events.php:1851
 msgid "Error changing event owner"
 msgstr "Erreur de modification du propriétaire de l'événement"
 
-#: ../../include/ajax/events.php:1851
+#: ../../include/ajax/events.php:1858
 msgid "Event owner changed successfully"
 msgstr "Propriétaire de l'événement modifié correctement"
 
-#: ../../include/ajax/events.php:1858
+#: ../../include/ajax/events.php:1865
 msgid "Error deleting event"
 msgstr "Erreur de suppression de l'événement"
 
-#: ../../include/ajax/events.php:1984
+#: ../../include/ajax/events.php:1991
 msgid "Show all Events 24h"
 msgstr "Afficher tous les événements des dernières 24h"
 
-#: ../../include/ajax/events.php:2074
+#: ../../include/ajax/events.php:2085
 msgid "These commands will apply to all selected events"
 msgstr "Ces commandes s'appliqueront à tous les événements sélectionnés"
 
-#: ../../include/ajax/events.php:2136
+#: ../../include/ajax/events.php:2147
 msgid "Total number of events in this node reached"
 msgstr "Nombre total d’événements dans ce nœud atteint"
 
-#: ../../include/ajax/events.php:2170
+#: ../../include/ajax/events.php:2181
 msgid "Total Events per node"
 msgstr "Nombre total d’événements par nœud"
 
-#: ../../include/ajax/events.php:2224 ../../operation/events/events.php:1549
+#: ../../include/ajax/events.php:2235 ../../operation/events/events.php:1549
 msgid "Events list"
 msgstr "Liste des événements"
 
-#: ../../include/ajax/events.php:2235
+#: ../../include/ajax/events.php:2246
 msgid "Console configuration"
 msgstr "Configuration de la console"
 
-#: ../../include/ajax/events.php:2242
+#: ../../include/ajax/events.php:2253
 msgid "Set condition"
 msgstr "Définir la condition"
 
-#: ../../include/ajax/events.php:2249 ../../operation/events/sound_events.php:192
+#: ../../include/ajax/events.php:2260 ../../operation/events/sound_events.php:192
 msgid "All new events"
 msgstr "Tous les nouveaux événements"
 
-#: ../../include/ajax/events.php:2286
+#: ../../include/ajax/events.php:2297
 msgid "Sound duration"
 msgstr "Durée du son"
 
-#: ../../include/ajax/events.php:2317
+#: ../../include/ajax/events.php:2328
 msgid "Sound melody"
 msgstr "Mélodie sonore"
 
-#: ../../include/ajax/events.php:2331
+#: ../../include/ajax/events.php:2342
 msgid "Test sound"
 msgstr "Tester mélodie"
 
-#: ../../include/ajax/events.php:2355
+#: ../../include/ajax/events.php:2366
 msgid "Discovered alerts"
 msgstr "Alertes découvertes"
 
-#: ../../include/ajax/events.php:2362
+#: ../../include/ajax/events.php:2373
 msgid "No alerts discovered"
 msgstr "Aucune alerte découverte"
 
-#: ../../include/ajax/events.php:2367
+#: ../../include/ajax/events.php:2378
 msgid "Congrats! there’s nothing to show"
 msgstr "Félicitations! il n’y a rien à montrer"
 
@@ -43928,28 +43990,28 @@ msgstr "Aucun moniteur"
 #: ../../include/functions_agents.php:2974
 #: ../../include/functions_agents.php:3029
 #: ../../include/functions_agents.php:3084
-#: ../../include/functions_reporting.php:12635
+#: ../../include/functions_reporting.php:12921
 msgid "At least one module in CRITICAL status"
 msgstr "Au moins un module en état CRITIQUE"
 
 #: ../../include/functions_agents.php:2980
 #: ../../include/functions_agents.php:3039
 #: ../../include/functions_agents.php:3092
-#: ../../include/functions_reporting.php:12642
+#: ../../include/functions_reporting.php:12928
 msgid "At least one module in WARNING status"
 msgstr "Au moins un module en état d'ALERTE"
 
 #: ../../include/functions_agents.php:2986
 #: ../../include/functions_agents.php:3049
 #: ../../include/functions_agents.php:3100
-#: ../../include/functions_reporting.php:12649
+#: ../../include/functions_reporting.php:12935
 msgid "At least one module is in UKNOWN status"
 msgstr "Au moins un module en état INCONNU"
 
 #: ../../include/functions_agents.php:2992
 #: ../../include/functions_agents.php:3059
 #: ../../include/functions_agents.php:3108
-#: ../../include/functions_reporting.php:12656
+#: ../../include/functions_reporting.php:12942
 msgid "All Monitors OK"
 msgstr "Tous les moniteurs OK"
 
@@ -43961,6 +44023,15 @@ msgstr "Alerte déclenchée dans l’agent"
 msgid "Dialog response time"
 msgstr "Temps de réponse du dialogue"
 
+#: ../../include/functions_inventory.php:115
+#: ../../include/functions_inventory.php:868
+msgid "No changes found"
+msgstr "Aucun changement trouvé"
+
+#: ../../include/functions_inventory.php:214
+msgid "Get CSV file"
+msgstr "Obtenir fichier CSV"
+
 #: ../../include/functions_plugins.php:58
 #, php-format
 msgid "Failed to erase module %d: %s"
@@ -44011,32 +44082,32 @@ msgstr "Impossible d'ajouter le fichier"
 msgid "File has an invalid extension"
 msgstr "Le fichier a une extension invalide"
 
-#: ../../include/functions_modules.php:4075
+#: ../../include/functions_modules.php:4150
 msgid "Realtime SNMP graph"
 msgstr "Graphique SNMP en temps réel"
 
-#: ../../include/functions_modules.php:4140
+#: ../../include/functions_modules.php:4215
 msgid "ALL"
 msgstr "TOUT"
 
-#: ../../include/functions_modules.php:4156
+#: ../../include/functions_modules.php:4231
 msgid "NOT NORMAL"
 msgstr "PAS NORMAL"
 
-#: ../../include/auth/mysql.php:335 ../../include/auth/mysql.php:363
+#: ../../include/auth/mysql.php:305 ../../include/auth/mysql.php:333
 msgid ""
 "Problems with configuration permissions. Please contact with Administrator"
 msgstr ""
 "Problèmes avec les permissions de configuration. Veuillez communiquer avec "
 "l'administrateur."
 
-#: ../../include/auth/mysql.php:350 ../../include/auth/mysql.php:413
-#: ../../include/auth/mysql.php:428 ../../include/auth/mysql.php:459
+#: ../../include/auth/mysql.php:320 ../../include/auth/mysql.php:383
+#: ../../include/auth/mysql.php:398 ../../include/auth/mysql.php:429
 msgid "User not found in database or incorrect password"
 msgstr ""
 "Utilisateur introuvable dans la base de données ou mot de passe incorrect"
 
-#: ../../include/auth/mysql.php:376
+#: ../../include/auth/mysql.php:346
 msgid ""
 "Ooops User not found in\n"
 "\t\t\t\tdatabase or incorrect password"
@@ -44044,67 +44115,41 @@ msgstr ""
 "Oups, utilisateur introuvable dans \n"
 "\t\t\t\tbase de données ou mot de passe incorrect"
 
-#: ../../include/auth/mysql.php:781
+#: ../../include/auth/mysql.php:769
 msgid "Could not changes password on remote pandora"
 msgstr "Erreur de modification du mot de passe sur Pandora  FMS à distance"
 
-#: ../../include/auth/mysql.php:866
+#: ../../include/auth/mysql.php:854
 msgid "Your installation of PHP does not support LDAP"
 msgstr "Votre installation de PHP ne prend pas en charge LDAP"
 
-#: ../../include/api.php:237
+#: ../../include/api.php:257
 msgid "User or group not specified"
 msgstr "Utilisateur ou groupe non spécifié"
 
-#: ../../include/api.php:238
+#: ../../include/api.php:258
 msgid "User, group not specified"
 msgstr "Utilisateur, groupe non spécifié"
 
-#: ../../include/api.php:269
+#: ../../include/api.php:289
 msgid "User, group or profile not specified"
 msgstr "Utilisateur, groupe ou profil non spécifié"
 
-#: ../../include/api.php:270
+#: ../../include/api.php:290
 msgid "User, group or profile status not specified"
 msgstr "Utilisateur, groupe ou état du profil non spécifié"
 
-#: ../../include/functions_graph.php:1089
-#: ../../include/functions_reporting.php:4678
-#: ../../include/functions_reporting.php:4721
-msgid "No data to display within the selected interval"
-msgstr "Aucune donnée à afficher dans l'intervalle sélectionné"
-
-#: ../../include/functions_graph.php:2639
+#: ../../include/functions_graph.php:2608
 msgid "Not fired alerts"
 msgstr "Aucune alerte déclenchée"
 
-#: ../../include/functions_graph.php:2658 ../../include/functions_graph.php:2794
-#: ../../include/functions_graph.php:2892 ../../include/functions_graph.php:3862
-#: ../../include/functions_reporting.php:1952
-#: ../../include/functions_reporting.php:2199
-#: ../../include/functions_reporting.php:2214
-#: ../../include/functions_reporting.php:2242
-#: ../../include/functions_reporting.php:2274
-#: ../../include/functions_reporting.php:3833
-#: ../../include/functions_reporting.php:4201
-#: ../../include/functions_reporting.php:4229
-#: ../../include/functions_reporting.php:4261
-#: ../../include/functions_reporting.php:5234
-#: ../../include/functions_reporting.php:10881
-#: ../../include/functions_reporting.php:10909
-#: ../../include/functions_reporting.php:10941
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:514
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:479
-msgid "other"
-msgstr "autre"
-
-#: ../../include/functions_graph.php:3399 ../../include/functions_ui.php:3833
-#: ../../include/functions_events.php:108 ../../include/functions_events.php:2826
+#: ../../include/functions_graph.php:3236 ../../include/functions_ui.php:3837
+#: ../../include/functions_events.php:108 ../../include/functions_events.php:2805
 #: ../../operation/events/events.php:668
 msgid "SYSTEM"
 msgstr "SYSTÈME"
 
-#: ../../include/functions_graph.php:5463
+#: ../../include/functions_graph.php:5251
 msgid "Main node"
 msgstr "Nœud principal"
 
@@ -44145,43 +44190,43 @@ msgstr "Autres adresses IP"
 msgid "Next agent contact"
 msgstr "Suivant contact avec l'agent"
 
-#: ../../include/functions_treeview.php:702
-msgid "Edit cluster"
-msgstr "Modifier le cluster"
+#: ../../include/functions_treeview.php:697
+msgid "Go to cluster edition"
+msgstr "Accéder à l’édition cluster"
 
-#: ../../include/functions_treeview.php:705
+#: ../../include/functions_treeview.php:700
 msgid "Go to agent edition"
 msgstr "Accéder à l'édition de l'agent"
 
-#: ../../include/functions_treeview.php:717
+#: ../../include/functions_treeview.php:712
 msgid "Agent data"
 msgstr "Données de l'agent"
 
-#: ../../include/functions_treeview.php:748
+#: ../../include/functions_treeview.php:743
 #: ../../operation/agentes/estado_generalagente.php:471
 msgid "Position (Long, Lat)"
 msgstr "Position (Long, Lat)"
 
-#: ../../include/functions_treeview.php:765
+#: ../../include/functions_treeview.php:760
 #: ../../operation/agentes/estado_generalagente.php:513
 msgid "Timezone Offset"
 msgstr "Fuseau horaire désactivé"
 
-#: ../../include/functions_treeview.php:797
+#: ../../include/functions_treeview.php:792
 msgid "Advanced information"
 msgstr "Informations avancées"
 
-#: ../../include/functions_treeview.php:810
+#: ../../include/functions_treeview.php:805
 msgid "Agent access rate (24h)"
 msgstr "Accessibilité de l'agent (24h)"
 
-#: ../../include/functions_treeview.php:876
-#: ../../operation/agentes/pandora_networkmap.view.php:1273
+#: ../../include/functions_treeview.php:871
+#: ../../operation/agentes/pandora_networkmap.view.php:1277
 #: ../../operation/agentes/estado_generalagente.php:735
 msgid "Interface traffic"
 msgstr "Trafic d'interface"
 
-#: ../../include/functions_treeview.php:899
+#: ../../include/functions_treeview.php:894
 msgid "Interface information"
 msgstr "Informations d'interface"
 
@@ -44269,14 +44314,10 @@ msgstr "Gérer les commandes"
 msgid "Manage export targets"
 msgstr "Gérer les objectifs d'exportation"
 
-#: ../../include/functions_menu.php:525 ../../operation/menu.php:138
+#: ../../include/functions_menu.php:525 ../../operation/menu.php:142
 msgid "SNMP trap generator"
 msgstr "Générateur de déroutements SNMP"
 
-#: ../../include/functions_menu.php:526 ../../operation/menu.php:127
-msgid "SNMP console"
-msgstr "Console SNMP"
-
 #: ../../include/functions_menu.php:528
 msgid "Manage incident"
 msgstr "Gérer l'incident"
@@ -44289,6 +44330,51 @@ msgstr "Gérer les groupes"
 msgid "Administration"
 msgstr "Administration"
 
+#: ../../include/functions_menu.php:817 ../../include/functions_ui.php:287
+msgid "Information"
+msgstr "Information"
+
+#: ../../include/functions_menu.php:819 ../../include/functions_menu.php:961
+#: ../../include/class/Diagnostics.class.php:243
+msgid "System Info"
+msgstr "Information du système"
+
+#: ../../include/functions_menu.php:820
+msgid "PHP System"
+msgstr "Système PHP"
+
+#: ../../include/functions_menu.php:835
+msgid "MR version"
+msgstr "Version MR"
+
+#: ../../include/functions_menu.php:841
+msgid "Update manager"
+msgstr "Gestionnaire de mises à jour"
+
+#: ../../include/functions_menu.php:842
+msgid "System report"
+msgstr "Rapport système"
+
+#: ../../include/functions_menu.php:858
+#: ../../include/class/Diagnostics.class.php:235
+msgid "Database health status"
+msgstr "État de santé de la base de données"
+
+#: ../../include/functions_menu.php:888
+#: ../../include/class/Diagnostics.class.php:239
+msgid "Database status info"
+msgstr "Information sur l'état de la base de données"
+
+#: ../../include/functions_menu.php:926
+#: ../../include/class/Diagnostics.class.php:252
+#, php-format
+msgid "Tables fragmentation in the %s database"
+msgstr "Fragmentation des tables dans la base de données %s"
+
+#: ../../include/functions_menu.php:1012
+msgid "PHP system"
+msgstr "Système PHP"
+
 #: ../../include/functions_incidents.php:29
 #: ../../include/functions_incidents.php:55
 msgid "Informative"
@@ -44814,8 +44900,8 @@ msgid "Please check if the email configuration is correct."
 msgstr "Veuillez vérifier que la configuration du courriel est correcte."
 
 #: ../../include/functions_profile.php:188
-#: ../../operation/users/user_edit.php:812
-#: ../../operation/users/user_edit.php:821
+#: ../../operation/users/user_edit.php:886
+#: ../../operation/users/user_edit.php:895
 msgid "Profiles/Groups assigned to this user"
 msgstr "Profils/Groupes assignés à cet utilisateur"
 
@@ -44835,10 +44921,6 @@ msgstr "Top de protocoles TCP"
 msgid "Top UDP protocols"
 msgstr "Top de protocoles UDP"
 
-#: ../../include/functions_ui.php:287
-msgid "Information"
-msgstr "Information"
-
 #: ../../include/functions_ui.php:465
 msgid "Request successfully processed"
 msgstr "Requête traitée correctement"
@@ -44875,7 +44957,7 @@ msgstr ""
 msgid "Unknown option."
 msgstr "Option inconnue."
 
-#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2494
+#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2470
 msgid "the Flexible Monitoring System"
 msgstr "Système de surveillance flexible"
 
@@ -44884,71 +44966,71 @@ msgstr "Système de surveillance flexible"
 msgid "Total items: %s"
 msgstr "Nombre total d'éléments : %s"
 
-#: ../../include/functions_ui.php:2540
+#: ../../include/functions_ui.php:2544
 msgid "Unknown type"
 msgstr "Type inconnu"
 
-#: ../../include/functions_ui.php:3443
+#: ../../include/functions_ui.php:3447
 msgid "No matching records found"
 msgstr "Aucun enregistrements correspondants trouvés"
 
-#: ../../include/functions_ui.php:3444
+#: ../../include/functions_ui.php:3448
 msgid "No data available in table"
 msgstr "Aucune donnée disponible dans le tableau"
 
-#: ../../include/functions_ui.php:3539 ../../include/functions_ui.php:3540
+#: ../../include/functions_ui.php:3543 ../../include/functions_ui.php:3544
 msgid "Export current page to CSV"
 msgstr "Exporter la page actuelle au format CSV"
 
-#: ../../include/functions_ui.php:3824 ../../include/functions_events.php:75
+#: ../../include/functions_ui.php:3828 ../../include/functions_events.php:75
 #: ../../include/functions_events.php:101 ../../operation/events/events.php:659
 #: ../../operation/events/events.php:723
 msgid "ALERT"
 msgstr "ALERTE"
 
-#: ../../include/functions_ui.php:3902 ../../include/functions_events.php:167
+#: ../../include/functions_ui.php:3906 ../../include/functions_events.php:167
 #: ../../operation/events/events.php:583
 msgid "MAINTENANCE"
 msgstr "ENTRETIEN"
 
-#: ../../include/functions_ui.php:3907 ../../include/functions_events.php:170
+#: ../../include/functions_ui.php:3911 ../../include/functions_events.php:170
 #: ../../operation/events/events.php:588
 msgid "INFORMATIONAL"
 msgstr "INFORMATIF"
 
-#: ../../include/functions_ui.php:3927 ../../include/functions_events.php:176
+#: ../../include/functions_ui.php:3931 ../../include/functions_events.php:176
 #: ../../operation/events/events.php:598
 msgid "MINOR"
 msgstr "MINEUR"
 
-#: ../../include/functions_ui.php:3932 ../../include/functions_events.php:173
+#: ../../include/functions_ui.php:3936 ../../include/functions_events.php:173
 #: ../../operation/events/events.php:593
 msgid "MAJOR"
 msgstr "MAJEUR"
 
-#: ../../include/functions_ui.php:4751 ../../include/functions_html.php:930
+#: ../../include/functions_ui.php:4755 ../../include/functions_html.php:930
 #: ../../include/functions_html.php:3392 ../../include/functions_html.php:3884
-#: ../../include/functions_reporting.php:11686
-#: ../../include/functions_reporting.php:11843
-#: ../../include/functions_reporting.php:11857
-#: ../../include/functions_reporting.php:14196
-#: ../../include/functions_reporting.php:14271
+#: ../../include/functions_reporting.php:11972
+#: ../../include/functions_reporting.php:12129
+#: ../../include/functions_reporting.php:12143
+#: ../../include/functions_reporting.php:14482
+#: ../../include/functions_reporting.php:14557
 msgid "Enterprise version not installed"
 msgstr "Version Enterprise non installée"
 
-#: ../../include/functions_ui.php:5133
+#: ../../include/functions_ui.php:5137
 msgid "Type at least two characters to search."
 msgstr "Écrivez un minimum de deux caractères pour rechercher"
 
-#: ../../include/functions_ui.php:6072
+#: ../../include/functions_ui.php:6076
 msgid "Unhandled error"
 msgstr "Erreur non traitée"
 
-#: ../../include/functions_ui.php:6073
+#: ../../include/functions_ui.php:6077
 msgid "An unhandled error occurs"
 msgstr "Une erreur non gérée se produit"
 
-#: ../../include/functions_ui.php:6344
+#: ../../include/functions_ui.php:6348
 #, php-format
 msgid ""
 "These controls are using the timezone of the system (%s) instead of yours "
@@ -44957,15 +45039,15 @@ msgstr ""
 "Ces contrôles utilisent le fuseau horaire du système (%s) au lieu du vôtre "
 "(%s). La différence avec votre fuseau horaire en heures est de %s."
 
-#: ../../include/functions_ui.php:6680
+#: ../../include/functions_ui.php:6684
 msgid "Execute query"
 msgstr "Exécute la requête"
 
-#: ../../include/functions_ui.php:6702
+#: ../../include/functions_ui.php:6706
 msgid "Results"
 msgstr "Résultats"
 
-#: ../../include/functions_ui.php:6766
+#: ../../include/functions_ui.php:6770
 msgid "Show password"
 msgstr "Afficher le mot de passe"
 
@@ -44976,37 +45058,32 @@ msgstr "Afficher le mot de passe"
 msgid "Last value: "
 msgstr "Dernière valeur : "
 
-#: ../../include/functions_visual_map.php:2632
+#: ../../include/functions_visual_map.php:2634
 msgid "Agent successfully added to layout"
 msgstr "Agent ajouté au layout correctement"
 
-#: ../../include/functions_visual_map.php:2824
+#: ../../include/functions_visual_map.php:2826
 msgid "Modules successfully added to layout"
 msgstr "Modules ajoutés au layout correctement"
 
-#: ../../include/functions_visual_map.php:3157
+#: ../../include/functions_visual_map.php:3108
 msgid "Agents successfully added to layout"
 msgstr "Agents ajoutés correctement"
 
-#: ../../include/functions_visual_map.php:3553
+#: ../../include/functions_visual_map.php:3504
 msgid "Cannot load the visualmap"
 msgstr "Erreur de chargement de la carte visuelle"
 
-#: ../../include/functions_visual_map.php:4224
-#: ../../include/rest-api/models/VisualConsole/Item.php:2107
+#: ../../include/functions_visual_map.php:4175
+#: ../../include/rest-api/models/VisualConsole/Item.php:2108
 msgid "Bars graph"
 msgstr "Graphique à barres"
 
-#: ../../include/functions_visual_map.php:4234
-#: ../../include/rest-api/models/VisualConsole/Item.php:2115
+#: ../../include/functions_visual_map.php:4185
+#: ../../include/rest-api/models/VisualConsole/Item.php:2116
 msgid "Percentile bar"
 msgstr "Barre de centile"
 
-#: ../../include/functions_visual_map.php:4239
-#: ../../include/rest-api/models/VisualConsole/Item.php:2123
-msgid "Circular progress bar"
-msgstr "Barre de progression circulaire"
-
 #: ../../include/functions_clippy.php:152
 #, php-format
 msgid "%s assistant"
@@ -45052,7 +45129,7 @@ msgstr "État pas normal"
 msgid "No actions defined"
 msgstr "Aucune action définie"
 
-#: ../../include/functions_alerts.php:2661
+#: ../../include/functions_alerts.php:2665
 msgid "Alert and command group does not match"
 msgstr "Le groupe d'alerte et de commande ne correspond pas"
 
@@ -45169,6 +45246,10 @@ msgstr "Sauvegardé"
 msgid "Time (ms)"
 msgstr "Temps (ms)"
 
+#: ../../include/functions_users.php:916
+msgid "NONE"
+msgstr "AUCUN"
+
 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438
 msgid "Add new range"
 msgstr "Ajouter une nouvelle plage"
@@ -45178,24 +45259,24 @@ msgid "Current ranges"
 msgstr "Gammes actuelles"
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:217
-#: ../../include/rest-api/models/VisualConsole/Item.php:1994
+#: ../../include/rest-api/models/VisualConsole/Item.php:1995
 msgid "width"
 msgstr "largeur"
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:227
-#: ../../include/rest-api/models/VisualConsole/Item.php:2004
+#: ../../include/rest-api/models/VisualConsole/Item.php:2005
 msgid "height"
 msgstr "hauteur"
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:249
-#: ../../include/rest-api/models/VisualConsole/Item.php:2026
+#: ../../include/rest-api/models/VisualConsole/Item.php:2027
 msgid "X"
 msgstr "X"
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:273
 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:499
 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950
-#: ../../include/rest-api/models/VisualConsole/Item.php:2063
+#: ../../include/rest-api/models/VisualConsole/Item.php:2064
 msgid "Show on top"
 msgstr "Afficher en haut"
 
@@ -45219,20 +45300,20 @@ msgstr "Afficher la dernière valeur"
 msgid "Avg Value"
 msgstr "Valeur moyenne"
 
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:390
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:648
 msgid "Graph Type"
 msgstr "Type de graphique"
 
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:275
 msgid "12h"
 msgstr "12h"
 
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:295
 msgid "Legend color"
 msgstr "Couleur de la légende"
 
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:662
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:376
 #: ../../include/lib/Dashboard/Widgets/single_graph.php:336
 msgid "Show legend"
@@ -45241,8 +45322,8 @@ msgstr "Afficher la légende"
 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538
 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619
 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280
-#: ../../include/rest-api/models/VisualConsole/View.php:712
-#: ../../include/rest-api/models/VisualConsole/View.php:791
+#: ../../include/rest-api/models/VisualConsole/View.php:713
+#: ../../include/rest-api/models/VisualConsole/View.php:792
 msgid "Failed to connect to node"
 msgstr "Échec de la connexion au nœud"
 
@@ -45273,59 +45354,59 @@ msgstr "Type d’élément non valide ["
 msgid "Item type has no getFormInputs method ["
 msgstr "Le type d'élément n'a pas de méthode getFormInputs ["
 
-#: ../../include/rest-api/models/VisualConsole/View.php:729
+#: ../../include/rest-api/models/VisualConsole/View.php:730
 msgid "NetworkLink from"
 msgstr "NetworkLink de"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:733
-#: ../../include/rest-api/models/VisualConsole/View.php:812
+#: ../../include/rest-api/models/VisualConsole/View.php:734
+#: ../../include/rest-api/models/VisualConsole/View.php:813
 #, php-format
 msgid "Interface %s status"
 msgstr "État de l'interface %s"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:738
-#: ../../include/rest-api/models/VisualConsole/View.php:817
+#: ../../include/rest-api/models/VisualConsole/View.php:739
+#: ../../include/rest-api/models/VisualConsole/View.php:818
 #: ../../operation/agentes/interface_traffic_graph_win.php:78
 msgid "In"
 msgstr "Dans"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:739
-#: ../../include/rest-api/models/VisualConsole/View.php:818
+#: ../../include/rest-api/models/VisualConsole/View.php:740
+#: ../../include/rest-api/models/VisualConsole/View.php:819
 #: ../../operation/agentes/interface_traffic_graph_win.php:79
 msgid "Out"
 msgstr "À l'extérieur de"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:808
+#: ../../include/rest-api/models/VisualConsole/View.php:809
 msgid "NetworkLink to"
 msgstr "NetworkLink vers"
 
-#: ../../include/rest-api/models/VisualConsole/View.php:860
+#: ../../include/rest-api/models/VisualConsole/View.php:861
 #, php-format
 msgid "Failed to generate charts: %s"
 msgstr "Échec de la génération des graphiques : %s"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:1964
+#: ../../include/rest-api/models/VisualConsole/Item.php:1965
 msgid "Label position"
 msgstr "Position de l’étiquette"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2051
+#: ../../include/rest-api/models/VisualConsole/Item.php:2052
 msgid "Link enabled"
 msgstr "Lien activé"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2093
+#: ../../include/rest-api/models/VisualConsole/Item.php:2094
 msgid "Static graph"
 msgstr "Graphique statique"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2111
+#: ../../include/rest-api/models/VisualConsole/Item.php:2112
 msgid "Event History Graph"
 msgstr "Graphique de l'historique des événements"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2119
+#: ../../include/rest-api/models/VisualConsole/Item.php:2120
 msgid "Percentile bubble"
 msgstr "Bulle de centile"
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2589
 #: ../../include/rest-api/models/VisualConsole/Item.php:2590
+#: ../../include/rest-api/models/VisualConsole/Item.php:2591
 msgid "Image Vc"
 msgstr "Image Vc"
 
@@ -45376,14 +45457,14 @@ msgstr "Cliquez ici pour obtenir plus d’information…"
 #: ../../include/functions_reports.php:681
 #: ../../include/functions_reports.php:686 ../../include/functions_groups.php:123
 #: ../../include/functions_groups.php:187 ../../operation/search_results.php:120
-#: ../../operation/agentes/ver_agente.php:1572
+#: ../../operation/agentes/ver_agente.php:1590
 msgid "Graphs"
 msgstr "Graphiques"
 
 #: ../../include/functions_reports.php:639
 #: ../../include/functions_reports.php:1090
-#: ../../include/functions_reporting.php:10317
-#: ../../include/functions_reporting.php:10477
+#: ../../include/functions_reporting.php:10535
+#: ../../include/functions_reporting.php:10695
 msgid "Simple graph"
 msgstr "Graphique simple"
 
@@ -45504,12 +45585,12 @@ msgid "Inventory changes"
 msgstr "Changements d'inventaire"
 
 #: ../../include/functions_reports.php:906
-#: ../../include/functions_reporting.php:6602
+#: ../../include/functions_reporting.php:6817
 msgid "Agent configuration"
 msgstr "Configuration des agents"
 
 #: ../../include/functions_reports.php:910
-#: ../../include/functions_reporting.php:4863
+#: ../../include/functions_reporting.php:5126
 msgid "Group configuration"
 msgstr "Configuration du groupe"
 
@@ -45575,8 +45656,8 @@ msgstr "Jour de la semaine"
 msgid "Type at least two characters to search the module."
 msgstr "Introduire au moins deux caractères pour rechercher le module."
 
-#: ../../include/functions_html.php:4818 ../../index.php:521 ../../index.php:804
-#: ../../index.php:878
+#: ../../include/functions_html.php:4818 ../../index.php:524 ../../index.php:807
+#: ../../index.php:881
 #, php-format
 msgid "%s cannot verify the origin of the request. Try again, please."
 msgstr ""
@@ -45646,8 +45727,8 @@ msgid "Failed updated: User is not admin."
 msgstr "Erreur de mise à jour : l'utilisateur n'est pas un administrateur."
 
 #: ../../include/functions_config.php:188
-msgid "phantomjs config directory"
-msgstr "répertoire de configuration de phantomjs"
+msgid "Chromium config directory"
+msgstr "Répertoire de configuration Chromium"
 
 #: ../../include/functions_config.php:204
 msgid "SSL cert path"
@@ -45661,7 +45742,7 @@ msgstr "Utiliser le certificat"
 msgid "Integria inventory"
 msgstr "Inventaire d'Integria IMS"
 
-#: ../../include/functions_config.php:248 ../../include/functions_config.php:1797
+#: ../../include/functions_config.php:248 ../../include/functions_config.php:1778
 msgid "Integria API password"
 msgstr "Mot de passe de l'API d'Integria IMS"
 
@@ -45720,39 +45801,39 @@ msgstr "Journal d'audit activé"
 msgid "Module Custom ID read only"
 msgstr "ID personnalisé du module en lecture seule"
 
-#: ../../include/functions_config.php:419
+#: ../../include/functions_config.php:424
 msgid "Replication DB host"
 msgstr "Hôte de BD de réplication"
 
-#: ../../include/functions_config.php:423
+#: ../../include/functions_config.php:428
 msgid "Replication DB database"
 msgstr "Nom de la BD de réplication"
 
-#: ../../include/functions_config.php:427
+#: ../../include/functions_config.php:432
 msgid "Replication DB user"
 msgstr "Utilisateur de BD de réplication"
 
-#: ../../include/functions_config.php:431
+#: ../../include/functions_config.php:436
 msgid "Replication DB password"
 msgstr "Mot de passe de BD de réplication"
 
-#: ../../include/functions_config.php:435
+#: ../../include/functions_config.php:440
 msgid "Replication DB port"
 msgstr "Port de BD de réplication"
 
-#: ../../include/functions_config.php:439
+#: ../../include/functions_config.php:444
 msgid "Metaconsole agent cache"
 msgstr "Cache de l'agent de la Métaconsole"
 
-#: ../../include/functions_config.php:447
+#: ../../include/functions_config.php:452
 msgid "Enable Update Manager"
 msgstr "Activer le Update Manager"
 
-#: ../../include/functions_config.php:451
+#: ../../include/functions_config.php:456
 msgid "Ipam Ocuppied Manager Critical"
 msgstr "Ipam Occupé Manager Critique"
 
-#: ../../include/functions_config.php:455
+#: ../../include/functions_config.php:460
 msgid "Ipam Ocuppied Manager Warning"
 msgstr "Avertissement du gestionnaire occupé par Ipam"
 
@@ -45812,330 +45893,330 @@ msgstr "Binaire WMI par défaut"
 msgid "SNMP Interface Agent Wizard"
 msgstr "Assistant de l’agent d’interface SNMP"
 
-#: ../../include/functions_config.php:1039
+#: ../../include/functions_config.php:1020
 msgid "Show QR code header"
 msgstr "Afficher code QR dans l'en-tête"
 
-#: ../../include/functions_config.php:1067
+#: ../../include/functions_config.php:1048
 msgid "Custom logo white background"
 msgstr "Logo personnalisé (fond blanc)"
 
-#: ../../include/functions_config.php:1095
+#: ../../include/functions_config.php:1076
 msgid "Custom title header"
 msgstr "En-tête de titre personnalisé"
 
-#: ../../include/functions_config.php:1099
+#: ../../include/functions_config.php:1080
 msgid "Custom subtitle header"
 msgstr "En-tête de sous-titre personnalisé"
 
-#: ../../include/functions_config.php:1123
-#: ../../include/functions_config.php:1163
+#: ../../include/functions_config.php:1104
+#: ../../include/functions_config.php:1144
 msgid "Custom Docs url"
 msgstr "URL de documents personnalisée"
 
-#: ../../include/functions_config.php:1127
-#: ../../include/functions_config.php:1167
+#: ../../include/functions_config.php:1108
+#: ../../include/functions_config.php:1148
 msgid "Custom support url"
 msgstr "URL d'assistance personnalisée"
 
-#: ../../include/functions_config.php:1139
+#: ../../include/functions_config.php:1120
 msgid "Custom logo metaconsole (white background)"
 msgstr "Logo personnalisé de la Métaconsole (fond blanc d’en-tête)"
 
-#: ../../include/functions_config.php:1143
+#: ../../include/functions_config.php:1124
 msgid "Custom logo login metaconsole"
 msgstr "Logo personnalisé pour écran de connexion de la Métaconsole"
 
-#: ../../include/functions_config.php:1147
+#: ../../include/functions_config.php:1128
 msgid "Custom splash login metaconsole"
 msgstr "Splash personnalisé pour écran de connexion de la Métaconsole"
 
-#: ../../include/functions_config.php:1151
+#: ../../include/functions_config.php:1132
 msgid "Custom title1 login metaconsole"
 msgstr "Titre1 personnalisé pour écran de connexion de la Métaconsole"
 
-#: ../../include/functions_config.php:1155
+#: ../../include/functions_config.php:1136
 msgid "Custom title2 login metaconsole"
 msgstr "Titre2 personnalisé pour écran de connexion de la Métaconsole"
 
-#: ../../include/functions_config.php:1159
+#: ../../include/functions_config.php:1140
 msgid "Login background metaconsole"
 msgstr "Fond d'écran de connexion à la Métaconsole"
 
-#: ../../include/functions_config.php:1183
+#: ../../include/functions_config.php:1164
 msgid "Default line favourite_view for the Visual Console"
 msgstr "Ligne par défaut favourite_view pour la console visuelle"
 
-#: ../../include/functions_config.php:1187
+#: ../../include/functions_config.php:1168
 msgid "Default line menu items for the Visual Console"
 msgstr "Éléments prédéterminés de menu de ligne pour console visuelle"
 
-#: ../../include/functions_config.php:1199
+#: ../../include/functions_config.php:1180
 msgid "Default line menu items for the Services"
 msgstr "Éléments de menu de ligne par défaut pour les Services"
 
-#: ../../include/functions_config.php:1231
+#: ../../include/functions_config.php:1212
 msgid "Show units in values report"
 msgstr "Afficher unités dans les valeurs du rapport"
 
-#: ../../include/functions_config.php:1239
+#: ../../include/functions_config.php:1220
 msgid "Autohidden menu"
 msgstr "Menu caché automatiquement"
 
-#: ../../include/functions_config.php:1243
+#: ../../include/functions_config.php:1224
 msgid "visual_animation"
 msgstr "visual_animation"
 
-#: ../../include/functions_config.php:1251
+#: ../../include/functions_config.php:1232
 msgid "Fixed graph"
 msgstr "Graphique fixe"
 
-#: ../../include/functions_config.php:1259
+#: ../../include/functions_config.php:1240
 msgid "Paginate module"
 msgstr "Paginer module"
 
-#: ../../include/functions_config.php:1263
+#: ../../include/functions_config.php:1244
 #: ../../include/class/ExternalTools.class.php:303
 msgid "Custom graphviz directory"
 msgstr "Répertoire personnalisé graphviz"
 
-#: ../../include/functions_config.php:1271
+#: ../../include/functions_config.php:1252
 msgid "Shortened module graph data"
 msgstr "Graphique de module de données raccourcies"
 
-#: ../../include/functions_config.php:1279
+#: ../../include/functions_config.php:1260
 msgid "Show empty groups in group view."
 msgstr "Afficher les groupes vides dans la vue de groupe."
 
-#: ../../include/functions_config.php:1287
+#: ../../include/functions_config.php:1268
 msgid "Default type of module charts."
 msgstr "Type de graphiques de modules par défaut"
 
-#: ../../include/functions_config.php:1291
+#: ../../include/functions_config.php:1272
 msgid "Default Number of elements in Custom Graph."
 msgstr "Nombre d'éléments par défaut dans le graphique personnalisé."
 
-#: ../../include/functions_config.php:1295
+#: ../../include/functions_config.php:1276
 msgid "Default type of interface charts."
 msgstr "Type de graphiques d'interface par défaut"
 
-#: ../../include/functions_config.php:1311
+#: ../../include/functions_config.php:1292
 msgid "Display lateral menus with left click"
 msgstr "Afficher menus latéraux en faisant clic gauche"
 
-#: ../../include/functions_config.php:1320
+#: ../../include/functions_config.php:1301
 msgid "Service item padding size"
 msgstr "Espace entre les nœuds de la carte de service"
 
-#: ../../include/functions_config.php:1325
+#: ../../include/functions_config.php:1306
 msgid "Default percentil"
 msgstr "Centile par défaut"
 
-#: ../../include/functions_config.php:1329
+#: ../../include/functions_config.php:1310
 msgid "Default full scale (TIP)"
 msgstr "Pleine échelle par défaut (TIP)"
 
-#: ../../include/functions_config.php:1333
+#: ../../include/functions_config.php:1314
 msgid "Default soft graphs"
 msgstr "Graphiques logiciels par défaut"
 
-#: ../../include/functions_config.php:1337
+#: ../../include/functions_config.php:1318
 msgid "Default zoom graphs"
 msgstr "Graphiques de zoom par défaut"
 
-#: ../../include/functions_config.php:1346
+#: ../../include/functions_config.php:1327
 msgid "Default height of the chart image"
 msgstr "Hauteur par défaut de l'image du graphique"
 
-#: ../../include/functions_config.php:1368
+#: ../../include/functions_config.php:1349
 msgid "Add the custom post process"
 msgstr "Ajouter personnalisation au processus postérieur"
 
-#: ../../include/functions_config.php:1376
+#: ../../include/functions_config.php:1357
 msgid "Delete the custom post process"
 msgstr "Supprimer personnalisation du processus postérieur"
 
-#: ../../include/functions_config.php:1430
+#: ../../include/functions_config.php:1411
 msgid "Add custom module unit"
 msgstr "Ajouter une unité de module personnalisée"
 
-#: ../../include/functions_config.php:1436
+#: ../../include/functions_config.php:1417
 msgid "Delete custom module unit"
 msgstr "Supprimer l'unité de module personnalisé"
 
-#: ../../include/functions_config.php:1493
+#: ../../include/functions_config.php:1474
 msgid "Thousand separator"
 msgstr "Séparateur de milliers"
 
-#: ../../include/functions_config.php:1538
+#: ../../include/functions_config.php:1519
 msgid "IP ElasticSearch server"
 msgstr "IP du serveur ElasticSearch"
 
-#: ../../include/functions_config.php:1542
+#: ../../include/functions_config.php:1523
 msgid "Port ElasticSearch server"
 msgstr "Port du serveur ElasticSearch"
 
-#: ../../include/functions_config.php:1589
+#: ../../include/functions_config.php:1570
 msgid "Enable history trap"
 msgstr "Activer le déroutement d’historique"
 
-#: ../../include/functions_config.php:1609
+#: ../../include/functions_config.php:1590
 msgid "Enable history database advanced"
 msgstr "Activer la base de données d’historique avancée"
 
-#: ../../include/functions_config.php:1618
+#: ../../include/functions_config.php:1599
 msgid "String Days"
 msgstr "Jours de chaîne"
 
-#: ../../include/functions_config.php:1634
+#: ../../include/functions_config.php:1615
 msgid "Trap Days"
 msgstr "Jours de déroutements"
 
-#: ../../include/functions_config.php:1642
+#: ../../include/functions_config.php:1623
 msgid "Trap history purge"
 msgstr "Purge de déroutements d’historique"
 
-#: ../../include/functions_config.php:1714
+#: ../../include/functions_config.php:1695
 msgid "Historical database traps purge"
 msgstr "Purge des déroutements de la base de données historique"
 
-#: ../../include/functions_config.php:1737
+#: ../../include/functions_config.php:1718
 msgid "eHorus user login"
 msgstr "Connexion utilisateur eHorus"
 
-#: ../../include/functions_config.php:1749
+#: ../../include/functions_config.php:1730
 msgid "eHorus API hostname"
 msgstr "Nom d'hôte API eHorus"
 
-#: ../../include/functions_config.php:1753
+#: ../../include/functions_config.php:1734
 msgid "eHorus API port"
 msgstr "Port API eHorus"
 
-#: ../../include/functions_config.php:1757
+#: ../../include/functions_config.php:1738
 msgid "eHorus request timeout"
 msgstr "Délai de requête eHorus"
 
-#: ../../include/functions_config.php:1761
+#: ../../include/functions_config.php:1742
 msgid "eHorus id custom field"
 msgstr "Identifiant du champ personnalisé eHorus"
 
-#: ../../include/functions_config.php:1767
+#: ../../include/functions_config.php:1748
 msgid "Integria user login"
 msgstr "Connexion utilisateur Integria"
 
-#: ../../include/functions_config.php:1775
+#: ../../include/functions_config.php:1756
 msgid "Integria user"
 msgstr "Utilisateur d’Integria"
 
-#: ../../include/functions_config.php:1779
+#: ../../include/functions_config.php:1760
 msgid "Integria password"
 msgstr "Mot de passe d’Integria"
 
-#: ../../include/functions_config.php:1793
+#: ../../include/functions_config.php:1774
 msgid "integria API hostname"
 msgstr "nom d'hôte de l'API d’Integria"
 
-#: ../../include/functions_config.php:1801
+#: ../../include/functions_config.php:1782
 msgid "Integria request timeout"
 msgstr "Délai d'expiration de la requête d’Integria"
 
-#: ../../include/functions_config.php:1805
+#: ../../include/functions_config.php:1786
 msgid "Integria default group"
 msgstr "Groupe par défaut d’Integria"
 
-#: ../../include/functions_config.php:1809
+#: ../../include/functions_config.php:1790
 msgid "Integria custom response default group"
 msgstr "Groupe par défaut de réponse personnalisée d’Integria"
 
-#: ../../include/functions_config.php:1813
+#: ../../include/functions_config.php:1794
 msgid "Integria default priority"
 msgstr "Priorité par défaut d’Integria"
 
-#: ../../include/functions_config.php:1817
+#: ../../include/functions_config.php:1798
 msgid "Integria custom response default priority"
 msgstr "Priorité par défaut de la réponse personnalisée d’Integria"
 
-#: ../../include/functions_config.php:1821
+#: ../../include/functions_config.php:1802
 msgid "Integria default creator"
 msgstr "Créateur par défaut d’Integria"
 
-#: ../../include/functions_config.php:1825
+#: ../../include/functions_config.php:1806
 msgid "Integria default owner"
 msgstr "Propriétaire par défaut d’Integria"
 
-#: ../../include/functions_config.php:1829
+#: ../../include/functions_config.php:1810
 msgid "Integria custom response default owner"
 msgstr "Propriétaire par défaut de la réponse personnalisée d’Integria"
 
-#: ../../include/functions_config.php:1833
+#: ../../include/functions_config.php:1814
 msgid "Integria default ticket type"
 msgstr "Type de ticket par défaut d’Integria"
 
-#: ../../include/functions_config.php:1837
+#: ../../include/functions_config.php:1818
 msgid "Integria custom response default ticket type"
 msgstr "Type de ticket par défaut de réponse personnalisée d’Integria"
 
-#: ../../include/functions_config.php:1841
+#: ../../include/functions_config.php:1822
 msgid "Integria default ticket status"
 msgstr "État du ticket par défaut d'Integria"
 
-#: ../../include/functions_config.php:1845
+#: ../../include/functions_config.php:1826
 msgid "Integria custom response default ticket status"
 msgstr "État du ticket par défaut de la réponse personnalisée d’Integria"
 
-#: ../../include/functions_config.php:1849
+#: ../../include/functions_config.php:1830
 msgid "Integria default ticket title"
 msgstr "Titre du ticket par défaut d’Integria"
 
-#: ../../include/functions_config.php:1853
+#: ../../include/functions_config.php:1834
 msgid "Integria custom response default ticket title"
 msgstr "Titre du ticket par défaut de la réponse personnalisée d’Integria"
 
-#: ../../include/functions_config.php:1857
+#: ../../include/functions_config.php:1838
 msgid "Integria default ticket content"
 msgstr "Contenu du ticket par défaut d'Integria"
 
-#: ../../include/functions_config.php:1861
+#: ../../include/functions_config.php:1842
 msgid "Integria custom response default ticket content"
 msgstr "Contenu du ticket par défaut de la réponse personnalisée d’Integria"
 
-#: ../../include/functions_config.php:1867
+#: ../../include/functions_config.php:1848
 msgid "Module Library User"
 msgstr "Utilisateur de la bibliothèque de modules"
 
-#: ../../include/functions_config.php:1871
+#: ../../include/functions_config.php:1852
 msgid "Module Library Password"
 msgstr "Mot de passe de la bibliothèque de modules"
 
-#: ../../include/functions_config.php:1877
+#: ../../include/functions_config.php:1858
 msgid "WebSocket bind address"
 msgstr "Adresse de liaison WebSocket"
 
-#: ../../include/functions_config.php:1881
+#: ../../include/functions_config.php:1862
 msgid "WebSocket port"
 msgstr "Port WebSocket"
 
-#: ../../include/functions_config.php:1904
+#: ../../include/functions_config.php:1885
 #, php-format
 msgid "Update failed. The next values could not be updated: 
-%s" msgstr "" "La mise à jour a échoué. Les valeurs suivantes n’ont pas pu être mises à " "jour :
-%s" -#: ../../include/functions_config.php:2490 +#: ../../include/functions_config.php:2466 #: ../../operation/agentes/networkmap.dinamic.php:226 msgid "Pandora FMS" msgstr "Pandora FMS" -#: ../../include/functions_config.php:2498 +#: ../../include/functions_config.php:2474 msgid "PandoraFMS Metaconsole" msgstr "Métaconsole PandoraFMS" -#: ../../include/functions_config.php:2502 +#: ../../include/functions_config.php:2478 msgid "Centralized operation console" msgstr "Console d'exploitation centralisée" -#: ../../include/functions_config.php:2506 +#: ../../include/functions_config.php:2482 msgid "PANDORA FMS" msgstr "PANDORA FMS" @@ -46383,7 +46464,7 @@ msgid "Something is wrong" msgstr "Il y a un problème" #: ../../include/class/HelpFeedBack.class.php:172 -#: ../../include/class/Diagnostics.class.php:1897 +#: ../../include/class/Diagnostics.class.php:1902 msgid "What happened?" msgstr "Que s'est-il passé?" @@ -46396,7 +46477,7 @@ msgid "Submit" msgstr "Envoyer" #: ../../include/class/HelpFeedBack.class.php:214 -#: ../../include/class/Diagnostics.class.php:1970 ../../general/header.php:356 +#: ../../include/class/Diagnostics.class.php:1975 ../../general/header.php:356 #: ../../general/header.php:358 msgid "Feedback" msgstr "Commentaires" @@ -46441,27 +46522,10 @@ msgstr "État des informations %s" msgid "PHP setup" msgstr "Installation PHP" -#: ../../include/class/Diagnostics.class.php:235 -msgid "Database health status" -msgstr "État de santé de la base de données" - -#: ../../include/class/Diagnostics.class.php:239 -msgid "Database status info" -msgstr "Information sur l'état de la base de données" - -#: ../../include/class/Diagnostics.class.php:243 -msgid "System Info" -msgstr "Information du système" - #: ../../include/class/Diagnostics.class.php:247 msgid "MySQL Performance metrics" msgstr "Métriques de performances MySQL" -#: ../../include/class/Diagnostics.class.php:252 -#, php-format -msgid "Tables fragmentation in the %s database" -msgstr "Fragmentation des tables dans la base de données %s" - #: ../../include/class/Diagnostics.class.php:258 #, php-format msgid "%s logs dates" @@ -46884,7 +46948,7 @@ msgstr "Le dossier joint contient moins de 700 fichiers." msgid "Total files in the attached folder" msgstr "Nombre total de fichiers dans le dossier joint" -#: ../../include/class/Diagnostics.class.php:1280 +#: ../../include/class/Diagnostics.class.php:1285 msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." @@ -46892,31 +46956,31 @@ msgstr "" "La table tagent_données contient trop de données. Une base de données " "historique est recommandée." -#: ../../include/class/Diagnostics.class.php:1285 +#: ../../include/class/Diagnostics.class.php:1290 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "La table tagent_données contient une quantité de données acceptable." -#: ../../include/class/Diagnostics.class.php:1294 +#: ../../include/class/Diagnostics.class.php:1299 msgid "Total data in tagente_datos table" msgstr "Données totales dans la table tagent_données" -#: ../../include/class/Diagnostics.class.php:1298 +#: ../../include/class/Diagnostics.class.php:1303 msgid "Tagente_datos table status" msgstr "État de la table Tagent_données" -#: ../../include/class/Diagnostics.class.php:1334 +#: ../../include/class/Diagnostics.class.php:1339 msgid "Threads" msgstr "Threads" -#: ../../include/class/Diagnostics.class.php:1344 +#: ../../include/class/Diagnostics.class.php:1349 msgid "Total threads" msgstr "Fils maximales" -#: ../../include/class/Diagnostics.class.php:1351 +#: ../../include/class/Diagnostics.class.php:1356 msgid "Current pandora_server running threads" msgstr "Threads en cours d'exécution de pandora_server" -#: ../../include/class/Diagnostics.class.php:1355 +#: ../../include/class/Diagnostics.class.php:1360 msgid "" "There's more pandora_server threads than configured, are you running multiple " "servers simultaneusly?." @@ -46924,7 +46988,7 @@ msgstr "" "Il y a plus de threads pandora_server que configurés, exécutez-vous plusieurs " "serveurs simultanément ?" -#: ../../include/class/Diagnostics.class.php:1489 +#: ../../include/class/Diagnostics.class.php:1494 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." @@ -46933,7 +46997,7 @@ msgstr "" "assurer que le démon de maintenance de la base de données est en cours " "d'exécution." -#: ../../include/class/Diagnostics.class.php:1493 +#: ../../include/class/Diagnostics.class.php:1498 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" @@ -46941,45 +47005,45 @@ msgstr "" "Il est très important de maintenir la base de données à jour pour obtenir les " "meilleures performances et résultats dans Pandora FMS" -#: ../../include/class/Diagnostics.class.php:1755 +#: ../../include/class/Diagnostics.class.php:1760 msgid "You have more than 10 MB of logs" msgstr "Vous avez plus de 10 Mo de journaux" -#: ../../include/class/Diagnostics.class.php:1758 +#: ../../include/class/Diagnostics.class.php:1763 msgid "You have less than 10 MB of logs" msgstr "Vous avez moins de 10 Mo de journaux" -#: ../../include/class/Diagnostics.class.php:1925 +#: ../../include/class/Diagnostics.class.php:1930 msgid "Include installation data" msgstr "Inclure les données d'installation" -#: ../../include/class/Diagnostics.class.php:1962 +#: ../../include/class/Diagnostics.class.php:1967 msgid "Hello Feedback-Men" msgstr "Hello Feedback-Men" -#: ../../include/class/Diagnostics.class.php:1972 +#: ../../include/class/Diagnostics.class.php:1977 msgid "Hello" msgstr "Hello" -#: ../../include/class/Diagnostics.class.php:1976 +#: ../../include/class/Diagnostics.class.php:1981 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "L'utilisateur %s signale un problème dans son expérience %s" -#: ../../include/class/Diagnostics.class.php:1985 +#: ../../include/class/Diagnostics.class.php:1990 msgid "Find some files attached to this mail" msgstr "Retrouver quelques fichiers joints à ce mail" -#: ../../include/class/Diagnostics.class.php:1988 +#: ../../include/class/Diagnostics.class.php:1993 msgid "PDF is the diagnostic information retrieved at report time" msgstr "" "PDF correspond aux informations de diagnostic récupérées au moment du rapport" -#: ../../include/class/Diagnostics.class.php:1991 +#: ../../include/class/Diagnostics.class.php:1996 msgid "CSV contains the statuses of every product file" msgstr "CSV contient les états de chaque fiche produit" -#: ../../include/class/Diagnostics.class.php:1996 +#: ../../include/class/Diagnostics.class.php:2001 #, php-format msgid "" "If you think this report must be escalated, feel free to forward this mail to " @@ -46988,11 +47052,11 @@ msgstr "" "Si vous pensez que ce rapport doit être escaladé, n'hésitez pas à transmettre " "ce courrier à \"%s\"" -#: ../../include/class/Diagnostics.class.php:2000 +#: ../../include/class/Diagnostics.class.php:2005 msgid "LEGAL WARNING" msgstr "AVERTISSEMENT LÉGAL" -#: ../../include/class/Diagnostics.class.php:2002 +#: ../../include/class/Diagnostics.class.php:2007 msgid "" "The information contained in this transmission is privileged and confidential " "information intended only for the use of the individual or entity named above" @@ -47001,7 +47065,7 @@ msgstr "" "privilégiées et confidentielles destinées uniquement à l'usage de la personne " "ou de l'entité nommée ci-dessus." -#: ../../include/class/Diagnostics.class.php:2006 +#: ../../include/class/Diagnostics.class.php:2011 msgid "" "If the reader of this message is not the intended recipient, you are hereby " "notified that any dissemination, distribution or copying of this communication " @@ -47011,11 +47075,11 @@ msgstr "" "vous informons que toute diffusion, distribution ou copie de ces documents est " "strictement interdite." -#: ../../include/class/Diagnostics.class.php:2010 +#: ../../include/class/Diagnostics.class.php:2015 msgid "If you have received this transmission in error, do not read it" msgstr "Si vous avez reçu cette transmission par erreur, ne la lisez pas" -#: ../../include/class/Diagnostics.class.php:2014 +#: ../../include/class/Diagnostics.class.php:2019 msgid "" "Please immediately reply to the sender that you have received this " "communication in error and then delete it" @@ -47023,21 +47087,21 @@ msgstr "" "Veuillez répondre immédiatement à l'expéditeur que vous avez reçu cette " "communication par erreur, puis la supprimer" -#: ../../include/class/Diagnostics.class.php:2093 +#: ../../include/class/Diagnostics.class.php:2098 msgid "Invalid cron task" msgstr "Tâche cron non valide" -#: ../../include/class/Diagnostics.class.php:2094 +#: ../../include/class/Diagnostics.class.php:2099 msgid "Sending of information has been processed" msgstr "L'envoi des informations a été traité" -#: ../../include/class/Diagnostics.class.php:2129 -#: ../../include/class/Diagnostics.class.php:2139 +#: ../../include/class/Diagnostics.class.php:2134 +#: ../../include/class/Diagnostics.class.php:2144 msgid "Diagnostics Info" msgstr "Informations de diagnostic" -#: ../../include/class/Diagnostics.class.php:2247 -#: ../../include/class/Diagnostics.class.php:2257 +#: ../../include/class/Diagnostics.class.php:2252 +#: ../../include/class/Diagnostics.class.php:2262 msgid "PHP Info" msgstr "Info PHP" @@ -47373,7 +47437,7 @@ msgstr "WMI" #: ../../include/class/CredentialStore.class.php:989 #: ../../include/class/SnmpConsole.class.php:231 #: ../../operation/snmpconsole/snmp_statistics.php:102 -#: ../../operation/menu.php:143 +#: ../../operation/menu.php:147 msgid "SNMP" msgstr "SNMP" @@ -47488,9 +47552,9 @@ msgid "Trap subtype" msgstr "Sous-type de déroutements" #: ../../include/class/SnmpConsole.class.php:354 -#: ../../include/functions_reporting.php:5571 -#: ../../include/functions_reporting.php:5588 -#: ../../include/functions_reporting.php:5605 +#: ../../include/functions_reporting.php:5786 +#: ../../include/functions_reporting.php:5803 +#: ../../include/functions_reporting.php:5820 msgid "Not triggered" msgstr "Non déclenché" @@ -47500,25 +47564,25 @@ msgstr "Déclenché" #: ../../include/class/SnmpConsole.class.php:372 #: ../../include/class/SnmpConsole.class.php:521 -#: ../../include/class/SnmpConsole.class.php:794 -#: ../../include/functions_reporting.php:2258 -#: ../../include/functions_reporting.php:4245 -#: ../../include/functions_reporting.php:10925 +#: ../../include/class/SnmpConsole.class.php:795 +#: ../../include/functions_reporting.php:2361 +#: ../../include/functions_reporting.php:4493 +#: ../../include/functions_reporting.php:11196 msgid "Not validated" msgstr "Non validé" #: ../../include/class/SnmpConsole.class.php:373 #: ../../include/class/SnmpConsole.class.php:512 -#: ../../include/class/SnmpConsole.class.php:804 -#: ../../include/functions_reporting.php:2257 -#: ../../include/functions_reporting.php:4244 -#: ../../include/functions_reporting.php:10924 +#: ../../include/class/SnmpConsole.class.php:805 +#: ../../include/functions_reporting.php:2360 +#: ../../include/functions_reporting.php:4492 +#: ../../include/functions_reporting.php:11195 #: ../../include/functions_events.php:2546 -#: ../../include/functions_events.php:3149 -#: ../../include/functions_events.php:3421 -#: ../../include/functions_events.php:3430 -#: ../../include/functions_events.php:3437 -#: ../../include/functions_events.php:3444 +#: ../../include/functions_events.php:3128 +#: ../../include/functions_events.php:3400 +#: ../../include/functions_events.php:3409 +#: ../../include/functions_events.php:3416 +#: ../../include/functions_events.php:3423 msgid "Validated" msgstr "Validé" @@ -47526,37 +47590,37 @@ msgstr "Validé" msgid "Group by Enterprise String/IP" msgstr "Regrouper par chaîne Enterprise / IP" -#: ../../include/class/SnmpConsole.class.php:816 +#: ../../include/class/SnmpConsole.class.php:817 #: ../../operation/snmpconsole/snmp_statistics.php:197 msgid "View agent details" msgstr "Voir les détails de l'agent" -#: ../../include/class/SnmpConsole.class.php:1362 +#: ../../include/class/SnmpConsole.class.php:1363 msgid "Count:" msgstr "Total :" -#: ../../include/class/SnmpConsole.class.php:1362 +#: ../../include/class/SnmpConsole.class.php:1363 msgid "First trap:" msgstr "Premier déroutement :" -#: ../../include/class/SnmpConsole.class.php:1362 +#: ../../include/class/SnmpConsole.class.php:1363 msgid "Last trap:" msgstr "Dernier déroutement :" -#: ../../include/class/SnmpConsole.class.php:1400 +#: ../../include/class/SnmpConsole.class.php:1401 msgid "Type:" msgstr "Type :" -#: ../../include/class/SnmpConsole.class.php:1414 +#: ../../include/class/SnmpConsole.class.php:1415 msgid "Enterprise String:" msgstr "Chaîne Enterprise :" -#: ../../include/class/SnmpConsole.class.php:1423 -#: ../../include/class/SnmpConsole.class.php:1437 +#: ../../include/class/SnmpConsole.class.php:1424 +#: ../../include/class/SnmpConsole.class.php:1438 msgid "Variable bindings:" msgstr "Liens variables :" -#: ../../include/class/SnmpConsole.class.php:1433 +#: ../../include/class/SnmpConsole.class.php:1434 msgid "See more details" msgstr "Afficher plus de détails" @@ -47740,41 +47804,41 @@ msgstr "Voulez-vous supprimer tous les modèles ?" msgid "Do you want delete the selected templates?" msgstr "Voulez-vous supprimer les modèles sélectionnés ?" -#: ../../include/class/ConsoleSupervisor.php:838 +#: ../../include/class/ConsoleSupervisor.php:834 msgid "Limited mode." msgstr "Mode limité." -#: ../../include/class/ConsoleSupervisor.php:852 +#: ../../include/class/ConsoleSupervisor.php:848 msgid "License is about to expire" msgstr "La licence est sur le point d'expirer" -#: ../../include/class/ConsoleSupervisor.php:855 +#: ../../include/class/ConsoleSupervisor.php:851 msgid "Support is about to expire" msgstr "L'assistance est sur le point d'expirer" -#: ../../include/class/ConsoleSupervisor.php:873 +#: ../../include/class/ConsoleSupervisor.php:869 msgid "Expired license" msgstr "Licence expirée" -#: ../../include/class/ConsoleSupervisor.php:874 +#: ../../include/class/ConsoleSupervisor.php:870 msgid "Your license has expired. Please, contact our sales department." msgstr "Votre licence a expiré. Veuillez contacter notre service commercial." -#: ../../include/class/ConsoleSupervisor.php:876 +#: ../../include/class/ConsoleSupervisor.php:872 msgid "Support expired" msgstr "Support expiré" -#: ../../include/class/ConsoleSupervisor.php:877 +#: ../../include/class/ConsoleSupervisor.php:873 msgid "This license is outside of support. Please, contact our sales department." msgstr "" "Cette licence est en dehors du support. Veuillez contacter notre service " "commercial." -#: ../../include/class/ConsoleSupervisor.php:958 +#: ../../include/class/ConsoleSupervisor.php:954 msgid "Attachment directory is not writable" msgstr "Le répertoire des attachements n'est pas accessible en écriture" -#: ../../include/class/ConsoleSupervisor.php:960 +#: ../../include/class/ConsoleSupervisor.php:956 #, php-format msgid "" "Directory %s is not writable. Please, configure corresponding permissions." @@ -47782,11 +47846,11 @@ msgstr "" "Le répertoire %s n'est pas accessible en écriture. Veuillez configurer les " "autorisations correspondantes." -#: ../../include/class/ConsoleSupervisor.php:980 +#: ../../include/class/ConsoleSupervisor.php:976 msgid "There are too many files in attachment directory" msgstr "Il y a trop de fichiers dans le répertoire des attachements" -#: ../../include/class/ConsoleSupervisor.php:982 +#: ../../include/class/ConsoleSupervisor.php:978 #, php-format msgid "" "There are more than %d files in attachment, consider cleaning up attachment " @@ -47795,11 +47859,11 @@ msgstr "" "Il y a plus de %d fichiers attachés, pensez à éliminer le répertoire des " "pièces jointes manuellement." -#: ../../include/class/ConsoleSupervisor.php:1014 +#: ../../include/class/ConsoleSupervisor.php:1010 msgid "Remote configuration directory is not readable" msgstr "Le répertoire de configuration à distance n'est pas lisible" -#: ../../include/class/ConsoleSupervisor.php:1016 +#: ../../include/class/ConsoleSupervisor.php:1012 #, php-format msgid "" "Remote configuration directory %s is not readable. Please, adjust " @@ -47808,12 +47872,12 @@ msgstr "" "Le répertoire de configuration à distance %s n'est pas lisible. Veuillez " "ajuster la configuration." -#: ../../include/class/ConsoleSupervisor.php:1033 +#: ../../include/class/ConsoleSupervisor.php:1029 msgid "Remote configuration directory is not writable" msgstr "" "Le répertoire de configuration à distance n'est pas accessible en écriture" -#: ../../include/class/ConsoleSupervisor.php:1035 +#: ../../include/class/ConsoleSupervisor.php:1031 #, php-format msgid "" "Remote configuration directory %s is not writable. Please, adjust " @@ -47822,33 +47886,33 @@ msgstr "" "Le répertoire de configuration à distance %s n'est pas accessible en écriture. " "Veuillez ajuster la configuration." -#: ../../include/class/ConsoleSupervisor.php:1051 +#: ../../include/class/ConsoleSupervisor.php:1047 msgid "Remote collections directory is not writable" msgstr "Le répertoire des collections distantes n'est pas accessible en écriture" -#: ../../include/class/ConsoleSupervisor.php:1053 +#: ../../include/class/ConsoleSupervisor.php:1049 #, php-format msgid "Collections directory %s is not writable. Please, adjust configuration." msgstr "" "Le répertoire de collections %s n'est pas accessible en écriture. Veuillez " "ajuster la configuration." -#: ../../include/class/ConsoleSupervisor.php:1069 +#: ../../include/class/ConsoleSupervisor.php:1065 msgid "Remote md5 directory is not writable" msgstr "Le répertoire md5 distant n'est pas accessible en écriture" -#: ../../include/class/ConsoleSupervisor.php:1071 +#: ../../include/class/ConsoleSupervisor.php:1067 #, php-format msgid "MD5 directory %s is not writable. Please, adjust configuration." msgstr "" "Le répertoire MD5 %s n'est pas accessible en écriture. Veuillez ajuster la " "configuration." -#: ../../include/class/ConsoleSupervisor.php:1099 +#: ../../include/class/ConsoleSupervisor.php:1095 msgid "There are too much files in spool" msgstr "Il y a trop de fichiers dans le spool" -#: ../../include/class/ConsoleSupervisor.php:1101 +#: ../../include/class/ConsoleSupervisor.php:1097 #, php-format msgid "" "There are more than %d files in %s. Consider checking DataServer performance" @@ -47856,26 +47920,26 @@ msgstr "" "Il y a plus de %d fichiers dans %s. Pensez à vérifier les performances de " "DataServer" -#: ../../include/class/ConsoleSupervisor.php:1122 +#: ../../include/class/ConsoleSupervisor.php:1118 msgid "There are too many BADXML files in spool" msgstr "Il y a trop de fichiers BADXML dans le spool" -#: ../../include/class/ConsoleSupervisor.php:1124 +#: ../../include/class/ConsoleSupervisor.php:1120 #, php-format msgid "There are more than %d files in %s. Consider checking software agents." msgstr "" "Il y a plus de %d fichiers dans %s. Pensez à vérifier les agents logiciels." -#: ../../include/class/ConsoleSupervisor.php:1211 +#: ../../include/class/ConsoleSupervisor.php:1207 #, php-format msgid "%s (%s) is lacking performance." msgstr "%s (%s) manque de performances." -#: ../../include/class/ConsoleSupervisor.php:1279 +#: ../../include/class/ConsoleSupervisor.php:1275 msgid "No servers available." msgstr "Aucuns serveurs ne sont disponibles." -#: ../../include/class/ConsoleSupervisor.php:1280 +#: ../../include/class/ConsoleSupervisor.php:1276 msgid "" "There are no servers registered in this console. Please, check installation " "guide." @@ -47883,22 +47947,22 @@ msgstr "" "Il n'y a aucun serveur enregistré dans cette console. Veuillez consulter le " "guide d'installation." -#: ../../include/class/ConsoleSupervisor.php:1325 +#: ../../include/class/ConsoleSupervisor.php:1321 #, php-format msgid "%s (%s) has crashed." msgstr "%s (%s) a échoué." -#: ../../include/class/ConsoleSupervisor.php:1331 +#: ../../include/class/ConsoleSupervisor.php:1327 #, php-format msgid "%s (%s) has crashed, please check log files." msgstr "%s (%s) a échoué, veuillez vérifier les fichiers journaux." -#: ../../include/class/ConsoleSupervisor.php:1338 +#: ../../include/class/ConsoleSupervisor.php:1334 #, php-format msgid "%s (%s) is not running." msgstr "%s (%s) n'est pas en cours d'exécution." -#: ../../include/class/ConsoleSupervisor.php:1343 +#: ../../include/class/ConsoleSupervisor.php:1339 #, php-format msgid "" "%s (%s) is not running. Please, check configuration file or remove this server " @@ -47907,11 +47971,11 @@ msgstr "" "%s (%s) n'est pas en cours d'exécution. Veuillez vérifier le fichier de " "configuration ou supprimer ce serveur de la liste des serveurs." -#: ../../include/class/ConsoleSupervisor.php:1395 +#: ../../include/class/ConsoleSupervisor.php:1391 msgid "No master servers found." msgstr "Aucun serveur maître trouvé." -#: ../../include/class/ConsoleSupervisor.php:1396 +#: ../../include/class/ConsoleSupervisor.php:1392 msgid "" "At least one server must be defined to run as master. Please, check " "documentation." @@ -47919,13 +47983,13 @@ msgstr "" "Au moins un serveur doit être défini pour s'exécuter en tant que maître. S'il " "vous plaît, vérifiez la documentation." -#: ../../include/class/ConsoleSupervisor.php:1451 +#: ../../include/class/ConsoleSupervisor.php:1447 msgid "PHP safe mode is enabled. Some features may not work properly" msgstr "" "Le mode sans échec PHP est activé. Certaines fonctionnalités peuvent ne pas " "fonctionner correctement" -#: ../../include/class/ConsoleSupervisor.php:1452 +#: ../../include/class/ConsoleSupervisor.php:1448 msgid "" "To disable it, go to your PHP configuration file (php.ini) and put safe_mode = " "Off (Do not forget to restart apache process after changes)" @@ -47934,22 +47998,22 @@ msgstr "" "mettez safe_mode = Off (N'oubliez pas de redémarrer le processus Apache après " "les modifications)" -#: ../../include/class/ConsoleSupervisor.php:1470 +#: ../../include/class/ConsoleSupervisor.php:1466 #, php-format msgid "%s value in PHP configuration is not recommended" msgstr "La valeur %s dans la configuration PHP n'est pas recommandée" -#: ../../include/class/ConsoleSupervisor.php:1474 +#: ../../include/class/ConsoleSupervisor.php:1470 #, php-format msgid "Recommended value is %s" msgstr "La valeur recommandée est %s" -#: ../../include/class/ConsoleSupervisor.php:1475 -#: ../../include/class/ConsoleSupervisor.php:1499 +#: ../../include/class/ConsoleSupervisor.php:1471 +#: ../../include/class/ConsoleSupervisor.php:1495 msgid "Unlimited" msgstr "Illimité" -#: ../../include/class/ConsoleSupervisor.php:1476 +#: ../../include/class/ConsoleSupervisor.php:1472 msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator (Do not forget to restart Apache process after)" @@ -47958,17 +48022,17 @@ msgstr "" "contactez l'administrateur (N'oubliez pas de redémarrer le processus Apache " "après)" -#: ../../include/class/ConsoleSupervisor.php:1498 -#: ../../include/class/ConsoleSupervisor.php:1522 -#: ../../include/class/ConsoleSupervisor.php:1551 -#: ../../include/class/ConsoleSupervisor.php:1633 +#: ../../include/class/ConsoleSupervisor.php:1494 +#: ../../include/class/ConsoleSupervisor.php:1518 +#: ../../include/class/ConsoleSupervisor.php:1547 +#: ../../include/class/ConsoleSupervisor.php:1628 #, php-format msgid "Recommended value is: %s" msgstr "La valeur recommandée est : %s" -#: ../../include/class/ConsoleSupervisor.php:1500 -#: ../../include/class/ConsoleSupervisor.php:1524 -#: ../../include/class/ConsoleSupervisor.php:1571 +#: ../../include/class/ConsoleSupervisor.php:1496 +#: ../../include/class/ConsoleSupervisor.php:1520 +#: ../../include/class/ConsoleSupervisor.php:1567 msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator (Dont forget restart apache process after changes)" @@ -47977,17 +48041,17 @@ msgstr "" "communiquez avec votre administrateur (n'oubliez pas de réinitialiser le " "processus Apache après les modifications)." -#: ../../include/class/ConsoleSupervisor.php:1523 -#: ../../include/class/ConsoleSupervisor.php:1552 +#: ../../include/class/ConsoleSupervisor.php:1519 +#: ../../include/class/ConsoleSupervisor.php:1548 #, php-format msgid "%s or greater" msgstr "%s ou supérieur" -#: ../../include/class/ConsoleSupervisor.php:1570 +#: ../../include/class/ConsoleSupervisor.php:1566 msgid "Problems with disable_functions in php.ini" msgstr "Problèmes avec disable_functions dans php.ini" -#: ../../include/class/ConsoleSupervisor.php:1571 +#: ../../include/class/ConsoleSupervisor.php:1567 msgid "" "The variable disable_functions contains functions system() or exec() in PHP " "configuration file (php.ini)" @@ -47995,23 +48059,23 @@ msgstr "" "La variable disable_functions contient les fonctions system() ou exec() dans " "le fichier de configuration PHP (php.ini)" -#: ../../include/class/ConsoleSupervisor.php:1588 -msgid "PhantomJS is not installed" -msgstr "PhantomJS n'est pas installé" +#: ../../include/class/ConsoleSupervisor.php:1583 +msgid "chromium is not installed" +msgstr "Chromium n’est pas installé" -#: ../../include/class/ConsoleSupervisor.php:1589 +#: ../../include/class/ConsoleSupervisor.php:1584 msgid "" "To be able to create images of the graphs for PDFs, please install the " -"PhantomJS extension. For that, it is necessary to follow these steps:" +"chromium extension. For that, it is necessary to follow these steps:" msgstr "" "Pour pouvoir créer des images des graphiques pour les PDF, veuillez installer " -"l'extension PhantomJS. Pour cela, il faut suivre ces étapes :" +"l’extension Chromium. Pour cela, il est nécessaire de suivre ces étapes :" -#: ../../include/class/ConsoleSupervisor.php:1610 +#: ../../include/class/ConsoleSupervisor.php:1605 msgid "PHP UPDATE REQUIRED" msgstr "MISE À JOUR PHP REQUISE" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:30 msgid "" "For a correct operation of PandoraFMS, PHP must be updated to version 8.0 or " @@ -48020,31 +48084,31 @@ msgstr "" "Pour la correcte opération de Pandora FMS, PHP doit être mis à jour à la " "version 8.0 ou supérieure." -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:31 msgid "Otherwise, functionalities will be lost." msgstr "Autrement, les fonctionnalités seront perdues." -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:33 msgid "Report download in PDF format" msgstr "Rapport téléchargement en format PDF" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:34 msgid "Emails Sending" msgstr "Envoy d'emails" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:35 msgid "Metaconsole Collections" msgstr "Collections de Métaconsole" -#: ../../include/class/ConsoleSupervisor.php:1677 +#: ../../include/class/ConsoleSupervisor.php:1672 msgid "Historical database not available" msgstr "Base de données historique non disponible" -#: ../../include/class/ConsoleSupervisor.php:1678 +#: ../../include/class/ConsoleSupervisor.php:1673 msgid "" "Historical database is enabled, though not accessible with the current " "configuration." @@ -48052,11 +48116,11 @@ msgstr "" "La base de données historique est activée, mais pas accessible avec la " "configuration actuelle." -#: ../../include/class/ConsoleSupervisor.php:1721 +#: ../../include/class/ConsoleSupervisor.php:1716 msgid "Database maintenance problem" msgstr "Problème de maintenance de la base de données" -#: ../../include/class/ConsoleSupervisor.php:1723 +#: ../../include/class/ConsoleSupervisor.php:1718 #, php-format msgid "" "Your database hasn't been through maintenance for 48hrs. Please, check " @@ -48067,11 +48131,11 @@ msgstr "" "consulter la documentation sur la façon d'effectuer ce processus de " "maintenance sur %s et l'activer dès que possible." -#: ../../include/class/ConsoleSupervisor.php:1783 +#: ../../include/class/ConsoleSupervisor.php:1778 msgid "Historical database maintenance problem." msgstr "Problème de maintenance de la base de données historique." -#: ../../include/class/ConsoleSupervisor.php:1785 +#: ../../include/class/ConsoleSupervisor.php:1780 #, php-format msgid "" "Your historical database hasn't been through maintenance for 48hrs. Please, " @@ -48082,11 +48146,11 @@ msgstr "" "Veuillez consulter la documentation sur la façon d'effectuer ce processus de " "maintenance sur %s et l'activer dès que possible." -#: ../../include/class/ConsoleSupervisor.php:1823 +#: ../../include/class/ConsoleSupervisor.php:1818 msgid "Historical database MR mismatch" msgstr "Non-concordance de la base de données historique MR" -#: ../../include/class/ConsoleSupervisor.php:1824 +#: ../../include/class/ConsoleSupervisor.php:1819 msgid "" "Your historical database is not using the same schema as the main DB. This " "could produce anomalies while storing historical data." @@ -48095,29 +48159,29 @@ msgstr "" "données principale. Cela pourrait produire des anomalies lors du stockage des " "données historiques." -#: ../../include/class/ConsoleSupervisor.php:1864 +#: ../../include/class/ConsoleSupervisor.php:1859 msgid "Log collector cannot connect to ElasticSearch" msgstr "Le collecteur de journaux ne peut pas se connecter à ElasticSearch" -#: ../../include/class/ConsoleSupervisor.php:1865 +#: ../../include/class/ConsoleSupervisor.php:1860 msgid "ElasticSearch is not available using current configuration." msgstr "ElasticSearch n'est pas disponible avec la configuration actuelle." -#: ../../include/class/ConsoleSupervisor.php:1934 +#: ../../include/class/ConsoleSupervisor.php:1929 msgid "Metaconsole DB is not available." msgstr "La base de données Metaconsole n'est pas disponible." -#: ../../include/class/ConsoleSupervisor.php:1935 +#: ../../include/class/ConsoleSupervisor.php:1930 msgid "Cannot connect with Metaconsole DB using current configuration." msgstr "" "Impossible de se connecter avec la base de données de la Métaconsole en " "utilisant la configuration actuelle." -#: ../../include/class/ConsoleSupervisor.php:1963 +#: ../../include/class/ConsoleSupervisor.php:1958 msgid "Scheduled downtime running." msgstr "Temps d'arrêt programmé en cours d'exécution." -#: ../../include/class/ConsoleSupervisor.php:1964 +#: ../../include/class/ConsoleSupervisor.php:1959 msgid "" "A scheduled downtime is running. Some monitoring data won't be available while " "downtime is taking place." @@ -48125,11 +48189,11 @@ msgstr "" "Un temps d'arrêt programmé est en cours d'exécution. Certaines données de " "supervision ne seront pas disponibles pendant le temps d'arrêt." -#: ../../include/class/ConsoleSupervisor.php:2120 +#: ../../include/class/ConsoleSupervisor.php:2115 msgid "Downtime scheduled soon." msgstr "Temps d'arrêt prévu prochainement." -#: ../../include/class/ConsoleSupervisor.php:2122 +#: ../../include/class/ConsoleSupervisor.php:2117 #, php-format msgid "" "A scheduled downtime is going to be executed from %s to %s. Some monitoring " @@ -48138,22 +48202,22 @@ msgstr "" "Un temps d'arrêt programmé va être exécuté de %s à %s. Certaines données de " "supervision ne seront pas disponibles pendant le temps d'arrêt." -#: ../../include/class/ConsoleSupervisor.php:2152 +#: ../../include/class/ConsoleSupervisor.php:2147 msgid "This instance is not registered in the Update manager section" msgstr "" "Cette instance n'est pas enregistrée dans la section Gestionnaire de mise à " "jour" -#: ../../include/class/ConsoleSupervisor.php:2153 +#: ../../include/class/ConsoleSupervisor.php:2148 msgid "Click here to start the registration process" msgstr "Cliquez ici pour commencer le processus d’enregistrement" -#: ../../include/class/ConsoleSupervisor.php:2185 +#: ../../include/class/ConsoleSupervisor.php:2180 msgid "Default password for \"Admin\" user has not been changed" msgstr "" "Le mot de passe par défaut de l'utilisateur \"Admin\" n'a pas été modifié" -#: ../../include/class/ConsoleSupervisor.php:2186 +#: ../../include/class/ConsoleSupervisor.php:2181 msgid "" "Please, change the default password since it is a commonly reported " "vulnerability." @@ -48161,11 +48225,11 @@ msgstr "" "Veuillez modifier le mot de passe par défaut car il s'agit d'une vulnérabilité " "couramment signalée." -#: ../../include/class/ConsoleSupervisor.php:2221 +#: ../../include/class/ConsoleSupervisor.php:2216 msgid "Default font doesn't exist" msgstr "La police par défaut n'existe pas" -#: ../../include/class/ConsoleSupervisor.php:2222 +#: ../../include/class/ConsoleSupervisor.php:2217 msgid "" "Your defined font doesn't exist or is not defined. Please, check font " "parameters in your config" @@ -48173,11 +48237,11 @@ msgstr "" "Votre police définie n'existe pas ou n'est pas définie. S'il vous plaît, " "vérifiez les paramètres de police dans votre configuration" -#: ../../include/class/ConsoleSupervisor.php:2247 +#: ../../include/class/ConsoleSupervisor.php:2242 msgid "Developer mode is enabled" msgstr "Mode développeur activé" -#: ../../include/class/ConsoleSupervisor.php:2249 +#: ../../include/class/ConsoleSupervisor.php:2244 #, php-format msgid "" "Your %s has the \"develop_bypass\" mode enabled. This is a developer mode and " @@ -48188,11 +48252,11 @@ msgstr "" "et doit être désactivé dans un environnement de production. Cette valeur se " "trouve dans le fichier principal index.php" -#: ../../include/class/ConsoleSupervisor.php:2273 +#: ../../include/class/ConsoleSupervisor.php:2268 msgid "Event storm protection is enabled." msgstr "La protection contre les tempêtes d'événements est activée." -#: ../../include/class/ConsoleSupervisor.php:2274 +#: ../../include/class/ConsoleSupervisor.php:2269 msgid "" "Some events may get lost while this mode is enabled. The server must be " "restarted after altering this setting." @@ -48200,27 +48264,27 @@ msgstr "" "Certains événements peuvent être perdus lorsque ce mode est activé. Le serveur " "doit être redémarré après avoir modifié ce paramètre." -#: ../../include/class/ConsoleSupervisor.php:2300 +#: ../../include/class/ConsoleSupervisor.php:2295 msgid "Failed to retrieve updates, please configure utility" msgstr "" "Échec de la récupération des mises à jour, veuillez configurer l'utilitaire" -#: ../../include/class/ConsoleSupervisor.php:2318 +#: ../../include/class/ConsoleSupervisor.php:2313 #, php-format msgid "New %s Console update" msgstr "Nouvelle %s mise à jour de la console" -#: ../../include/class/ConsoleSupervisor.php:2321 +#: ../../include/class/ConsoleSupervisor.php:2316 msgid "There is a new update available. Please.À propos de la mise à jour mineure ." -#: ../../include/class/ConsoleSupervisor.php:2385 +#: ../../include/class/ConsoleSupervisor.php:2380 msgid "Discovery relies on an appropriate cron setup." msgstr "La découverte repose sur une configuration cron appropriée." -#: ../../include/class/ConsoleSupervisor.php:2401 +#: ../../include/class/ConsoleSupervisor.php:2396 msgid "Please, make sure process is not locked." msgstr "Veuillez vous assurer que le processus n'est pas verrouillé." -#: ../../include/class/ConsoleSupervisor.php:2412 +#: ../../include/class/ConsoleSupervisor.php:2407 msgid "DiscoveryConsoleTasks is not configured." msgstr "DiscoveryConsoleTasks n'est pas configuré." -#: ../../include/class/ConsoleSupervisor.php:2503 +#: ../../include/class/ConsoleSupervisor.php:2498 #, php-format msgid "%s version misaligned with Console" msgstr "%s version mal alignée avec la Console" -#: ../../include/class/ConsoleSupervisor.php:2507 +#: ../../include/class/ConsoleSupervisor.php:2502 #, php-format msgid "" "Server %s and this console have different versions. This might cause several " @@ -48255,19 +48319,19 @@ msgstr "" "Le serveur %s et cette console ont des versions différentes. Cela peut " "provoquer plusieurs dysfonctionnements. Veuillez mettre à jour ce serveur." -#: ../../include/class/ConsoleSupervisor.php:2570 +#: ../../include/class/ConsoleSupervisor.php:2565 msgid "AllowOverride is disabled" msgstr "AllowOverride est désactivé" -#: ../../include/class/ConsoleSupervisor.php:2616 +#: ../../include/class/ConsoleSupervisor.php:2611 msgid "Desynchronized operation on the node " msgstr "Opération désynchronisée sur le nœud" -#: ../../include/class/ConsoleSupervisor.php:2639 +#: ../../include/class/ConsoleSupervisor.php:2634 msgid "Pandora FMS console log file changed location" msgstr "Le fichier journal de la console Pandora FMS a changé d'emplacement" -#: ../../include/class/ConsoleSupervisor.php:2643 +#: ../../include/class/ConsoleSupervisor.php:2638 #, php-format msgid "" "Pandora FMS console log file has been moved to new location %s/log. Currently " @@ -48278,11 +48342,11 @@ msgstr "" "emplacement %s/log. Actuellement, vous disposez d'une version obsolète et " "inopérante de ce fichier sur %s. S'il vous plaît, pensez à le supprimer." -#: ../../include/class/ConsoleSupervisor.php:2678 +#: ../../include/class/ConsoleSupervisor.php:2673 msgid "Pandora FMS audit log file changed location" msgstr "Le fichier journal d'audit Pandora FMS a changé d'emplacement" -#: ../../include/class/ConsoleSupervisor.php:2682 +#: ../../include/class/ConsoleSupervisor.php:2677 #, php-format msgid "" "Pandora FMS audit log file has been moved to new location %s/log. Currently " @@ -48293,12 +48357,12 @@ msgstr "" "emplacement %s/log. Actuellement, vous disposez d'une version obsolète et " "inopérante de ce fichier sur %s. S'il vous plaît, pensez à le supprimer." -#: ../../include/class/ConsoleSupervisor.php:2768 +#: ../../include/class/ConsoleSupervisor.php:2735 #, php-format msgid "Node %s sync queue length exceeded, " msgstr "Longueur de file d’attente de synchronisation de nœud %s dépassée, " -#: ../../include/class/ConsoleSupervisor.php:2770 +#: ../../include/class/ConsoleSupervisor.php:2737 #, php-format msgid "" "Synchronization queue lenght for node %s is %d items, this value should be 0 " @@ -48308,12 +48372,12 @@ msgstr "" "éléments, cette valeur doit être 0 ou inférieure à %d, veuillez vérifier " "l’état de la file d’attente." -#: ../../include/class/ConsoleSupervisor.php:2823 +#: ../../include/class/ConsoleSupervisor.php:2790 #, php-format msgid "Node %s sync queue failed, " msgstr "Échec de la file d’attente de synchronisation du nœud %s, " -#: ../../include/class/ConsoleSupervisor.php:2825 +#: ../../include/class/ConsoleSupervisor.php:2792 #, php-format msgid "" "Node %s cannot process synchronization queue due %s, please check the queue " @@ -48783,225 +48847,230 @@ msgstr " agents" msgid " modules" msgstr " modules" -#: ../../include/functions_reporting.php:1519 +#: ../../include/functions_reporting.php:1520 msgid "Top N" msgstr "Top N" -#: ../../include/functions_reporting.php:1705 +#: ../../include/functions_reporting.php:1706 msgid "Insuficient data" msgstr "Données insuffisantes" -#: ../../include/functions_reporting.php:2039 +#: ../../include/functions_reporting.php:2072 msgid "Event Report Group" msgstr "Rapport d'événements de groupes" -#: ../../include/functions_reporting.php:2069 +#: ../../include/functions_reporting.php:2102 msgid "Exclude " msgstr "Exclure" -#: ../../include/functions_reporting.php:2325 +#: ../../include/functions_reporting.php:2443 msgid "Event Report Module" msgstr "Module de rapports d'événements" -#: ../../include/functions_reporting.php:3113 +#: ../../include/functions_reporting.php:3231 msgid "Agent/Modules" msgstr "Agent/Modules" -#: ../../include/functions_reporting.php:3210 +#: ../../include/functions_reporting.php:3328 msgid "Agent/Modules Status" msgstr "État de l’agent/des modules" -#: ../../include/functions_reporting.php:3359 +#: ../../include/functions_reporting.php:3477 msgid "Exception - Everything" msgstr "Exception - Tout" -#: ../../include/functions_reporting.php:3365 +#: ../../include/functions_reporting.php:3483 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "Exception - Modules supérieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3368 +#: ../../include/functions_reporting.php:3486 #, php-format msgid "Modules over or equal to %s" msgstr "Modules supérieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3373 +#: ../../include/functions_reporting.php:3491 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "Exception - Modules inférieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3376 +#: ../../include/functions_reporting.php:3494 #, php-format msgid "Modules under or equal to %s" msgstr "Modules inférieurs ou égaux à %s" -#: ../../include/functions_reporting.php:3381 +#: ../../include/functions_reporting.php:3499 #, php-format msgid "Exception - Modules under %s" msgstr "Exception - Modules inférieurs à %s" -#: ../../include/functions_reporting.php:3384 +#: ../../include/functions_reporting.php:3502 #, php-format msgid "Modules under %s" msgstr "Modules inférieurs à %s" -#: ../../include/functions_reporting.php:3389 +#: ../../include/functions_reporting.php:3507 #, php-format msgid "Exception - Modules over %s" msgstr "Exception - Modules supérieurs à %s" -#: ../../include/functions_reporting.php:3392 +#: ../../include/functions_reporting.php:3510 #, php-format msgid "Modules over %s" msgstr "Modules supérieurs à %s" -#: ../../include/functions_reporting.php:3397 +#: ../../include/functions_reporting.php:3515 #, php-format msgid "Exception - Equal to %s" msgstr "Exception - Égal à %s" -#: ../../include/functions_reporting.php:3400 +#: ../../include/functions_reporting.php:3518 #, php-format msgid "Equal to %s" msgstr "Égal à %s" -#: ../../include/functions_reporting.php:3405 +#: ../../include/functions_reporting.php:3523 #, php-format msgid "Exception - Not equal to %s" msgstr "Exception - Pas égal à %s" -#: ../../include/functions_reporting.php:3408 +#: ../../include/functions_reporting.php:3526 #, php-format msgid "Not equal to %s" msgstr "Pas égal à %s" -#: ../../include/functions_reporting.php:3412 +#: ../../include/functions_reporting.php:3530 msgid "Exception - Modules at normal status" msgstr "Exception - Modules en état normal" -#: ../../include/functions_reporting.php:3413 +#: ../../include/functions_reporting.php:3531 msgid "Modules at normal status" msgstr "Modules en état normal" -#: ../../include/functions_reporting.php:3417 +#: ../../include/functions_reporting.php:3535 msgid "Exception - Modules at critical or warning status" msgstr "Exception - Modules en état critique ou d'alerte" -#: ../../include/functions_reporting.php:3418 +#: ../../include/functions_reporting.php:3536 msgid "Modules at critical or warning status" msgstr "Modules en état critique ou d'alerte" -#: ../../include/functions_reporting.php:3698 +#: ../../include/functions_reporting.php:3816 msgid "There are no Modules under those conditions." msgstr "Aucun module sous ces conditions" -#: ../../include/functions_reporting.php:3702 +#: ../../include/functions_reporting.php:3820 #, php-format msgid "There are no Modules over or equal to %s." msgstr "Aucun module supérieur ou égal à %s" -#: ../../include/functions_reporting.php:3706 +#: ../../include/functions_reporting.php:3824 #, php-format msgid "There are no Modules less or equal to %s." msgstr "Aucun module inférieur ou égal à %s" -#: ../../include/functions_reporting.php:3710 +#: ../../include/functions_reporting.php:3828 #, php-format msgid "There are no Modules less %s." msgstr "Aucun module inférieur à %s" -#: ../../include/functions_reporting.php:3714 +#: ../../include/functions_reporting.php:3832 #, php-format msgid "There are no Modules over %s." msgstr "Aucun module supérieur à %s" -#: ../../include/functions_reporting.php:3718 +#: ../../include/functions_reporting.php:3836 #, php-format msgid "There are no Modules equal to %s" msgstr "Aucun module égal à %s" -#: ../../include/functions_reporting.php:3722 +#: ../../include/functions_reporting.php:3840 #, php-format msgid "There are no Modules not equal to %s" msgstr "Aucun module pas égal à %s" -#: ../../include/functions_reporting.php:3726 +#: ../../include/functions_reporting.php:3844 msgid "There are no Modules normal status" msgstr "Aucun module en état normal" -#: ../../include/functions_reporting.php:3730 +#: ../../include/functions_reporting.php:3848 msgid "There are no Modules at critial or warning status" msgstr "Aucun module en état critique ou d'alerte" -#: ../../include/functions_reporting.php:4081 +#: ../../include/functions_reporting.php:4276 msgid "Event Report Agent" msgstr "Agent de rapport d'événement" -#: ../../include/functions_reporting.php:4432 +#: ../../include/functions_reporting.php:4695 msgid "Database Serialized" msgstr "Base de données sérialisée" -#: ../../include/functions_reporting.php:4628 +#: ../../include/functions_reporting.php:4891 msgid "Last Value" msgstr "Dernière valeur" -#: ../../include/functions_reporting.php:4952 +#: ../../include/functions_reporting.php:4941 +#: ../../include/functions_reporting.php:4984 +msgid "No data to display within the selected interval" +msgstr "Aucune donnée à afficher dans l'intervalle sélectionné" + +#: ../../include/functions_reporting.php:5215 msgid "Network interfaces report" msgstr "Rapport des interfaces du réseau" -#: ../../include/functions_reporting.php:5046 +#: ../../include/functions_reporting.php:5309 msgid "Custom render report" msgstr "Rapport de rendu personnalisé" -#: ../../include/functions_reporting.php:5086 -#: ../../include/functions_reporting.php:5112 +#: ../../include/functions_reporting.php:5349 +#: ../../include/functions_reporting.php:5375 msgid "" "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "" "Cette requête n’est pas sécurisée, elle peut appliquer des modifications " "indésirables sur le schéma" -#: ../../include/functions_reporting.php:5343 +#: ../../include/functions_reporting.php:5554 msgid "The group has no agents or none of the agents has any network interface" msgstr "Le groupe n'a pas d'agents ou aucun agent a une interface de réseau" -#: ../../include/functions_reporting.php:5364 +#: ../../include/functions_reporting.php:5579 msgid "bytes/s" msgstr "octets/s" -#: ../../include/functions_reporting.php:6031 +#: ../../include/functions_reporting.php:6246 msgid "SQL Graph Vertical Bars" msgstr "Barres verticales du graphique SQL" -#: ../../include/functions_reporting.php:6035 +#: ../../include/functions_reporting.php:6250 msgid "SQL Graph Horizontal Bars" msgstr "Barres horizontales du graphique SQL" -#: ../../include/functions_reporting.php:6039 +#: ../../include/functions_reporting.php:6254 msgid "SQL Graph Pie" msgstr "Diagramme circulaire SQL" -#: ../../include/functions_reporting.php:6266 +#: ../../include/functions_reporting.php:6481 msgid "Netflow Area" msgstr "Zone Netflow" -#: ../../include/functions_reporting.php:6270 +#: ../../include/functions_reporting.php:6485 msgid "Netflow Summary" msgstr "Résumé Netflow" -#: ../../include/functions_reporting.php:6274 +#: ../../include/functions_reporting.php:6489 msgid "Netflow Data" msgstr "Données Netflow" -#: ../../include/functions_reporting.php:6282 +#: ../../include/functions_reporting.php:6497 msgid "Unknown report" msgstr "Rapport inconnu" -#: ../../include/functions_reporting.php:6376 +#: ../../include/functions_reporting.php:6591 msgid "Prediction Date" msgstr "Date de prédiction" -#: ../../include/functions_reporting.php:7295 +#: ../../include/functions_reporting.php:7510 msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." @@ -49010,230 +49079,230 @@ msgstr "" "peuvent pas être employés : *, supprimer, déposer, altérer, modifier, mot de " "passe, passe, introduire ou mettre à jour." -#: ../../include/functions_reporting.php:8706 -#: ../../include/functions_reporting.php:9424 +#: ../../include/functions_reporting.php:8924 +#: ../../include/functions_reporting.php:9642 msgid "No Address" msgstr "Aucune adresse" -#: ../../include/functions_reporting.php:9723 +#: ../../include/functions_reporting.php:9941 msgid "" "The monitor have no data in this range of dates or monitor type is not numeric" msgstr "" "Le moniteur ne dispose pas de données dans cette plage de dates ou le type de " "moniteur n'est pas numérique." -#: ../../include/functions_reporting.php:9741 +#: ../../include/functions_reporting.php:9959 msgid "The monitor type is not numeric" msgstr "Le type de moniteur n'est pas numérique." -#: ../../include/functions_reporting.php:10167 +#: ../../include/functions_reporting.php:10385 msgid "Maximum" msgstr "Maximum" -#: ../../include/functions_reporting.php:10245 +#: ../../include/functions_reporting.php:10463 msgid "Automatic combined graph" msgstr "Graphique automatique combiné" -#: ../../include/functions_reporting.php:11599 -#: ../../include/functions_reporting.php:11623 +#: ../../include/functions_reporting.php:11885 +#: ../../include/functions_reporting.php:11909 msgid "Server health" msgstr "État du serveur" -#: ../../include/functions_reporting.php:11599 +#: ../../include/functions_reporting.php:11885 #, php-format msgid "%d Downed servers" msgstr "%d serveurs hors service" -#: ../../include/functions_reporting.php:11604 -#: ../../include/functions_reporting.php:11627 +#: ../../include/functions_reporting.php:11890 +#: ../../include/functions_reporting.php:11913 msgid "Monitor health" msgstr "État du moniteur" -#: ../../include/functions_reporting.php:11604 +#: ../../include/functions_reporting.php:11890 #, php-format msgid "%d Not Normal monitors" msgstr "%d Moniteurs anormaux" -#: ../../include/functions_reporting.php:11604 -#: ../../include/functions_reporting.php:11628 +#: ../../include/functions_reporting.php:11890 +#: ../../include/functions_reporting.php:11914 msgid "of monitors up" msgstr "de moniteurs actifs" -#: ../../include/functions_reporting.php:11609 -#: ../../include/functions_reporting.php:11631 +#: ../../include/functions_reporting.php:11895 +#: ../../include/functions_reporting.php:11917 msgid "Module sanity" msgstr "État des modules" -#: ../../include/functions_reporting.php:11609 +#: ../../include/functions_reporting.php:11895 #, php-format msgid "%d Not inited monitors" msgstr "%d moniteurs non initialisés" -#: ../../include/functions_reporting.php:11609 -#: ../../include/functions_reporting.php:11632 +#: ../../include/functions_reporting.php:11895 +#: ../../include/functions_reporting.php:11918 msgid "of total modules inited" msgstr "du total de modules initialisés" -#: ../../include/functions_reporting.php:11614 -#: ../../include/functions_reporting.php:12726 -#: ../../include/functions_reporting.php:12736 +#: ../../include/functions_reporting.php:11900 +#: ../../include/functions_reporting.php:13012 +#: ../../include/functions_reporting.php:13022 #, php-format msgid "%d Fired alerts" msgstr "%d alertes déclenchées" -#: ../../include/functions_reporting.php:11614 -#: ../../include/functions_reporting.php:11636 +#: ../../include/functions_reporting.php:11900 +#: ../../include/functions_reporting.php:11922 msgid "of defined alerts not fired" msgstr "d'alertes définies non déclenchées" -#: ../../include/functions_reporting.php:11708 +#: ../../include/functions_reporting.php:11994 msgid "Defined and fired alerts" msgstr "Alertes définies et déclenchées" -#: ../../include/functions_reporting.php:11887 +#: ../../include/functions_reporting.php:12173 msgid "Defined users" msgstr "Utilisateurs définis" -#: ../../include/functions_reporting.php:12583 +#: ../../include/functions_reporting.php:12869 msgid "Agent without data" msgstr "Agent sans données" -#: ../../include/functions_reporting.php:12722 +#: ../../include/functions_reporting.php:13008 #, php-format msgid "%d Normal modules" msgstr "%d modules normaux" -#: ../../include/functions_reporting.php:12723 +#: ../../include/functions_reporting.php:13009 #, php-format msgid "%d Critical modules" msgstr "%d modules critiques" -#: ../../include/functions_reporting.php:12724 +#: ../../include/functions_reporting.php:13010 #, php-format msgid "%d Warning modules" msgstr "%d modules en état d'alerte" -#: ../../include/functions_reporting.php:12725 +#: ../../include/functions_reporting.php:13011 #, php-format msgid "%d Unknown modules" msgstr "%d modules inconnus" -#: ../../include/functions_reporting.php:12730 +#: ../../include/functions_reporting.php:13016 #, php-format msgid "%d Total agents" msgstr "%d agents au total" -#: ../../include/functions_reporting.php:12731 +#: ../../include/functions_reporting.php:13017 #, php-format msgid "%d Normal agents" msgstr "%d agents normaux" -#: ../../include/functions_reporting.php:12732 +#: ../../include/functions_reporting.php:13018 #, php-format msgid "%d Critical agents" msgstr "%d agents critiques" -#: ../../include/functions_reporting.php:12733 +#: ../../include/functions_reporting.php:13019 #, php-format msgid "%d Warning agents" msgstr "%d agents en état d'alerte" -#: ../../include/functions_reporting.php:12734 +#: ../../include/functions_reporting.php:13020 #, php-format msgid "%d Unknown agents" msgstr "%d agents inconnus" -#: ../../include/functions_reporting.php:12735 +#: ../../include/functions_reporting.php:13021 #, php-format msgid "%d not init agents" msgstr "%d agents non initialisés" -#: ../../include/functions_reporting.php:14163 +#: ../../include/functions_reporting.php:14449 msgid "Total running modules" msgstr "Nombre total de modules en fonctionnement" -#: ../../include/functions_reporting.php:14166 -#: ../../include/functions_reporting.php:14181 -#: ../../include/functions_reporting.php:14193 -#: ../../include/functions_reporting.php:14211 -#: ../../include/functions_reporting.php:14223 -#: ../../include/functions_reporting.php:14235 -#: ../../include/functions_reporting.php:14247 +#: ../../include/functions_reporting.php:14452 +#: ../../include/functions_reporting.php:14467 +#: ../../include/functions_reporting.php:14479 +#: ../../include/functions_reporting.php:14497 +#: ../../include/functions_reporting.php:14509 +#: ../../include/functions_reporting.php:14521 +#: ../../include/functions_reporting.php:14533 msgid "Ratio" msgstr "Ratio" -#: ../../include/functions_reporting.php:14166 -#: ../../include/functions_reporting.php:14181 -#: ../../include/functions_reporting.php:14193 -#: ../../include/functions_reporting.php:14211 -#: ../../include/functions_reporting.php:14223 -#: ../../include/functions_reporting.php:14235 -#: ../../include/functions_reporting.php:14247 +#: ../../include/functions_reporting.php:14452 +#: ../../include/functions_reporting.php:14467 +#: ../../include/functions_reporting.php:14479 +#: ../../include/functions_reporting.php:14497 +#: ../../include/functions_reporting.php:14509 +#: ../../include/functions_reporting.php:14521 +#: ../../include/functions_reporting.php:14533 msgid "Modules by second" msgstr "Modules par seconde" -#: ../../include/functions_reporting.php:14178 +#: ../../include/functions_reporting.php:14464 msgid "Local modules" msgstr "Modules locaux" -#: ../../include/functions_reporting.php:14188 +#: ../../include/functions_reporting.php:14474 msgid "Network modules" msgstr "Modules de réseau" -#: ../../include/functions_reporting.php:14207 +#: ../../include/functions_reporting.php:14493 msgid "Plugin modules" msgstr "Modules plugin" -#: ../../include/functions_reporting.php:14219 +#: ../../include/functions_reporting.php:14505 msgid "Prediction modules" msgstr "Modules de prédiction" -#: ../../include/functions_reporting.php:14231 +#: ../../include/functions_reporting.php:14517 msgid "WMI modules" msgstr "Modules WMI" -#: ../../include/functions_reporting.php:14243 +#: ../../include/functions_reporting.php:14529 msgid "Web modules" msgstr "Modules Web" -#: ../../include/functions_reporting.php:14281 +#: ../../include/functions_reporting.php:14567 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "Performance du serveur" -#: ../../include/functions_reporting.php:14394 +#: ../../include/functions_reporting.php:14680 msgid "Start condition" msgstr "Condition de démarrage" -#: ../../include/functions_reporting.php:14394 +#: ../../include/functions_reporting.php:14680 msgid "Stop condition" msgstr "Condition d’arrêt" -#: ../../include/functions_reporting.php:14404 +#: ../../include/functions_reporting.php:14690 msgid "Weekly:" msgstr "Hebdomadaire :" -#: ../../include/functions_reporting.php:14446 +#: ../../include/functions_reporting.php:14732 msgid "Monthly:" msgstr "Mensuel :" -#: ../../include/functions_reporting.php:14447 +#: ../../include/functions_reporting.php:14733 msgid "From day" msgstr "À partir du jour" -#: ../../include/functions_reporting.php:14448 +#: ../../include/functions_reporting.php:14734 msgid "To day" msgstr "Jusqu'au jour" -#: ../../include/functions_reporting.php:14999 +#: ../../include/functions_reporting.php:15283 msgid "Module Histogram Graph" msgstr "Graphique de registres du module" -#: ../../include/functions_reporting.php:15391 +#: ../../include/functions_reporting.php:15646 msgid "Attached to this email there's a PDF file of the" msgstr "Ce courriel contient une pièce jointe en format PDF du" -#: ../../include/functions_reporting.php:15392 +#: ../../include/functions_reporting.php:15647 msgid "report" msgstr "rapport" @@ -49377,11 +49446,11 @@ msgstr "Cliquez ici pour ouvrir une fenêtre pop-up avec l'étiquette de l'URL" msgid "Copy of %s" msgstr "Copie de %s" -#: ../../include/lib/Dashboard/Manager.php:999 +#: ../../include/lib/Dashboard/Manager.php:992 msgid "Error create or update dashboard" msgstr "Erreur lors de la création ou de la mise à jour du tableau de bord" -#: ../../include/lib/Dashboard/Manager.php:1480 +#: ../../include/lib/Dashboard/Manager.php:1473 msgid "Icon image dashboard" msgstr "Tableau de bord des images d'icônes" @@ -49626,7 +49695,7 @@ msgstr "Graphiques de compteurs groupés" #: ../../include/lib/Dashboard/Widgets/network_map.php:173 #: ../../include/lib/Dashboard/Widgets/network_map.php:515 -#: ../../operation/menu.php:171 +#: ../../operation/menu.php:175 msgid "Network map" msgstr "Carte de réseau" @@ -49680,15 +49749,15 @@ msgid "Custom filters" msgstr "Filtres personnalisés" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 -#: ../../include/functions_events.php:3141 -#: ../../include/functions_events.php:3147 -#: ../../include/functions_events.php:3169 +#: ../../include/functions_events.php:3120 +#: ../../include/functions_events.php:3126 +#: ../../include/functions_events.php:3148 msgid "All event" msgstr "Tous les événements" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 -#: ../../include/functions_events.php:3143 -#: ../../include/functions_events.php:3177 +#: ../../include/functions_events.php:3122 +#: ../../include/functions_events.php:3156 msgid "Only validated" msgstr "Seulement les événements validés" @@ -49749,7 +49818,7 @@ msgid "Global status" msgstr "État général" #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:537 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:536 msgid "Top N events by module" msgstr "Top N des événements par module" @@ -49851,12 +49920,12 @@ msgid "This graph has been deleted." msgstr "Ce graphique a été supprimé." #: ../../include/lib/Dashboard/Widgets/custom_graph.php:358 -#: ../../operation/reporting/graph_viewer.php:376 +#: ../../operation/reporting/graph_viewer.php:348 msgid "Horizontal Bars" msgstr "Barres horizontales" #: ../../include/lib/Dashboard/Widgets/custom_graph.php:359 -#: ../../operation/reporting/graph_viewer.php:377 +#: ../../operation/reporting/graph_viewer.php:349 msgid "Vertical Bars" msgstr "Barres verticales" @@ -49942,7 +50011,7 @@ msgid "Groups found" msgstr "Groupes trouvés" #: ../../include/lib/Dashboard/Widgets/top_n.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n.php:536 +#: ../../include/lib/Dashboard/Widgets/top_n.php:540 msgid "Top N of agent modules" msgstr "Top N des modules d'agent" @@ -49975,45 +50044,45 @@ msgid "Digital" msgstr "Numérique" #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:502 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:501 msgid "Top N events by agent" msgstr "Top N des événements par agent" -#: ../../include/lib/ClusterViewer/ClusterManager.php:225 +#: ../../include/lib/ClusterViewer/ClusterManager.php:224 msgid "Cluster not found: " msgstr "Le grappe n'a pas été trouvé : " -#: ../../include/lib/ClusterViewer/ClusterManager.php:234 +#: ../../include/lib/ClusterViewer/ClusterManager.php:233 msgid "Cluster agent not found: " msgstr "Agent de grappe non trouvé : " -#: ../../include/lib/ClusterViewer/ClusterManager.php:271 +#: ../../include/lib/ClusterViewer/ClusterManager.php:270 #, php-format msgid "Error while deleting, reason: %s" msgstr "Erreur d'élimination, cause : %s" -#: ../../include/lib/ClusterViewer/ClusterManager.php:279 +#: ../../include/lib/ClusterViewer/ClusterManager.php:278 msgid "Cluster successfully deleted." msgstr "Grappe éliminée correctement" -#: ../../include/lib/ClusterViewer/ClusterManager.php:305 +#: ../../include/lib/ClusterViewer/ClusterManager.php:304 #, php-format msgid "Error while forcing, reason: %s" msgstr "Erreur de forçage, cause : %s" -#: ../../include/lib/ClusterViewer/ClusterManager.php:313 +#: ../../include/lib/ClusterViewer/ClusterManager.php:312 msgid "Cluster successfully forced." msgstr "Grappe forcée correctement." -#: ../../include/lib/ClusterViewer/ClusterManager.php:571 +#: ../../include/lib/ClusterViewer/ClusterManager.php:568 msgid "Not set" msgstr "Non défini" -#: ../../include/lib/ClusterViewer/ClusterManager.php:581 +#: ../../include/lib/ClusterViewer/ClusterManager.php:578 msgid "Active-Active" msgstr "Active-Active" -#: ../../include/lib/ClusterViewer/ClusterManager.php:583 +#: ../../include/lib/ClusterViewer/ClusterManager.php:580 msgid "Active-Passive" msgstr "Active-Passive" @@ -50232,7 +50301,7 @@ msgid " to apply" msgstr " À appliquer" #: ../../include/functions_snmp_browser.php:1542 -#: ../../operation/snmpconsole/snmp_browser.php:541 +#: ../../operation/snmpconsole/snmp_browser.php:539 msgid "Create new policy" msgstr "Créer une nouvelle politique" @@ -50240,6 +50309,14 @@ msgstr "Créer une nouvelle politique" msgid "Undo" msgstr "Annuler" +#: ../../include/chart_generator.php:113 ../../operation/agentes/stat_win.php:51 +#: ../../operation/agentes/stat_win.php:176 +#: ../../operation/agentes/realtime_win.php:51 +#: ../../operation/agentes/interface_traffic_graph_win.php:54 +#: ../../operation/inventory/inventory.php:206 +msgid "There was a problem connecting with the node" +msgstr "Problème de connexion avec le nœud" + #: ../../include/functions_groups.php:75 msgid "Alert Actions" msgstr "Actions d'alerte" @@ -50304,172 +50381,158 @@ msgid "Could not connect: %s" msgstr "Impossible de se connecter : %s" #: ../../include/functions_events.php:2506 -#: ../../operation/agentes/tactical.php:228 +#: ../../operation/agentes/tactical.php:229 msgid "Latest events" msgstr "Derniers événements" -#: ../../include/functions_events.php:2643 -msgid "Events -by module-" -msgstr "Événements par module" - -#: ../../include/functions_events.php:2649 -#: ../../operation/agentes/tactical.php:245 -msgid "Event graph" -msgstr "Graphique de commandes" - -#: ../../include/functions_events.php:2651 -#: ../../operation/agentes/tactical.php:248 -msgid "Event graph by agent" -msgstr "Graphique d'événements par l'agent" - -#: ../../include/functions_events.php:2790 +#: ../../include/functions_events.php:2769 msgid "Going to unknown" msgstr "Changement à état inconnu" -#: ../../include/functions_events.php:2798 +#: ../../include/functions_events.php:2777 msgid "Alert manually validated" msgstr "Alerte validée manuellement" -#: ../../include/functions_events.php:2802 +#: ../../include/functions_events.php:2781 msgid "Going from critical to warning" msgstr "Changement de l'état critique à l'état d'alerte" -#: ../../include/functions_events.php:2808 +#: ../../include/functions_events.php:2787 msgid "Going up to critical state" msgstr "Passage à l'état critique" -#: ../../include/functions_events.php:2814 +#: ../../include/functions_events.php:2793 msgid "Going up to normal state" msgstr "Passage à l'état normal" -#: ../../include/functions_events.php:2818 +#: ../../include/functions_events.php:2797 msgid "Going down from normal to warning" msgstr "Passage de l'état normal à l'état d'alerte" -#: ../../include/functions_events.php:2830 +#: ../../include/functions_events.php:2809 msgid "Discovery server detected a new host" msgstr "Le serveur Discovery a détecté un nouvel hôte" -#: ../../include/functions_events.php:2834 +#: ../../include/functions_events.php:2813 msgid "New agent created" msgstr "Nouvel agent créé" -#: ../../include/functions_events.php:2851 +#: ../../include/functions_events.php:2830 msgid "Unknown type:" msgstr "Type inconnu :" -#: ../../include/functions_events.php:3142 -#: ../../include/functions_events.php:3173 +#: ../../include/functions_events.php:3121 +#: ../../include/functions_events.php:3152 msgid "Only new" msgstr "Uniquement les nouveaux" -#: ../../include/functions_events.php:3144 -#: ../../include/functions_events.php:3181 +#: ../../include/functions_events.php:3123 +#: ../../include/functions_events.php:3160 msgid "Only in process" msgstr "Uniquement ceux en cours" -#: ../../include/functions_events.php:3145 -#: ../../include/functions_events.php:3185 +#: ../../include/functions_events.php:3124 +#: ../../include/functions_events.php:3164 msgid "Only not validated" msgstr "Uniquement les non validés" -#: ../../include/functions_events.php:3150 -#: ../../include/functions_events.php:3420 -#: ../../include/functions_events.php:3429 +#: ../../include/functions_events.php:3129 +#: ../../include/functions_events.php:3399 +#: ../../include/functions_events.php:3408 msgid "In process" msgstr "En cours" -#: ../../include/functions_events.php:3151 +#: ../../include/functions_events.php:3130 msgid "Not Validated" msgstr "Non validés" -#: ../../include/functions_events.php:3343 +#: ../../include/functions_events.php:3322 msgid "Change owner" msgstr "Changer de propriétaire" -#: ../../include/functions_events.php:3405 +#: ../../include/functions_events.php:3384 msgid "Change status" msgstr "Modifier l'état" -#: ../../include/functions_events.php:3499 -#: ../../include/functions_events.php:5126 +#: ../../include/functions_events.php:3478 +#: ../../include/functions_events.php:5139 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314 msgid "Add comment" msgstr "Ajouter un commentaire" -#: ../../include/functions_events.php:3519 -#: ../../include/functions_events.php:3523 ../../operation/events/events.php:948 +#: ../../include/functions_events.php:3498 +#: ../../include/functions_events.php:3502 ../../operation/events/events.php:948 msgid "Delete event" msgstr "Supprimer l'événement" -#: ../../include/functions_events.php:3543 +#: ../../include/functions_events.php:3522 msgid "Custom responses" msgstr "Réponses personnalisées" -#: ../../include/functions_events.php:4149 +#: ../../include/functions_events.php:4128 msgid "Extended information" msgstr "Informations étendues" -#: ../../include/functions_events.php:4180 +#: ../../include/functions_events.php:4159 msgid "There was an error connecting to the node" msgstr "Erreur de connexion au nœud" -#: ../../include/functions_events.php:4201 +#: ../../include/functions_events.php:4180 msgid "Agent details" msgstr "Détails de l'agent" -#: ../../include/functions_events.php:4215 +#: ../../include/functions_events.php:4194 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "" "Cet agent appartient à la Métaconsole, il n'est pas possible de l'afficher" -#: ../../include/functions_events.php:4266 +#: ../../include/functions_events.php:4245 msgid "View custom fields" msgstr "Afficher les champs personnalisés" -#: ../../include/functions_events.php:4289 +#: ../../include/functions_events.php:4268 msgid "Module details" msgstr "Détails du module" -#: ../../include/functions_events.php:4305 +#: ../../include/functions_events.php:4284 msgid "No assigned" msgstr "Non attribué" -#: ../../include/functions_events.php:4389 -#: ../../include/functions_events.php:4398 +#: ../../include/functions_events.php:4368 +#: ../../include/functions_events.php:4377 msgid "Go to data overview" msgstr "Accéder à l'aperçu de données" -#: ../../include/functions_events.php:4514 +#: ../../include/functions_events.php:4493 #, php-format msgid "Invalid custom data: %s" msgstr "Données personnalisées non valides : %s" -#: ../../include/functions_events.php:4743 +#: ../../include/functions_events.php:4722 msgid "First event" msgstr "Premier événement" -#: ../../include/functions_events.php:4746 +#: ../../include/functions_events.php:4725 msgid "Last event" msgstr "Dernier événement" -#: ../../include/functions_events.php:4835 +#: ../../include/functions_events.php:4814 msgid "Autovalidated" msgstr "Autovalidé" -#: ../../include/functions_events.php:4901 +#: ../../include/functions_events.php:4880 msgid "ID extra" msgstr "Identifiant supplémentaire" -#: ../../include/functions_events.php:4975 +#: ../../include/functions_events.php:4988 msgid "There are no comments" msgstr "Aucun commentaire" -#: ../../include/functions_events.php:5039 ../../general/logon_ok.php:208 +#: ../../include/functions_events.php:5052 ../../general/logon_ok.php:208 msgid "by" msgstr "par" -#: ../../include/functions_events.php:5136 +#: ../../include/functions_events.php:5149 msgid "" "If event replication is ongoing, it won't be possible to enter comments here. " "This option is only to allow local pandora users to see comments, but not to " @@ -50482,84 +50545,84 @@ msgstr "" "L'opération, lorsque la réplication d'événement est activée, doit être " "effectuée uniquement dans la Métaconsole." -#: ../../include/functions_events.php:5706 +#: ../../include/functions_events.php:5719 #, php-format msgid "Event # %d" msgstr "Événement # %d" -#: ../../include/functions_events.php:5709 +#: ../../include/functions_events.php:5722 msgid "Executing command: " msgstr "Exécution de la commande : " -#: ../../include/functions_planned_downtimes.php:577 +#: ../../include/functions_planned_downtimes.php:578 msgid "Succesful stopped the Downtime" msgstr "Arrêt interrompu correctement" -#: ../../include/functions_planned_downtimes.php:578 +#: ../../include/functions_planned_downtimes.php:579 msgid "Unsuccesful stopped the Downtime" msgstr "Interruption d'arrêt échouée" -#: ../../include/functions_planned_downtimes.php:733 +#: ../../include/functions_planned_downtimes.php:734 #, php-format msgid "Enabled %s elements from the downtime" msgstr "Activer les éléments %s de l'arrêt" -#: ../../include/functions_planned_downtimes.php:792 +#: ../../include/functions_planned_downtimes.php:793 msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" msgstr "" "Le temps d'arrêt doit être silencieux, disable_agents ou disable_agents_alerts" -#: ../../include/functions_planned_downtimes.php:797 +#: ../../include/functions_planned_downtimes.php:798 msgid "The execution must be once or periodically" msgstr "L'exécution doit être une fois ou périodiquement" -#: ../../include/functions_planned_downtimes.php:802 +#: ../../include/functions_planned_downtimes.php:803 msgid "The periodicity must be weekly or monthly" msgstr "La périodicité doit être hebdomadaire ou mensuelle" -#: ../../include/functions_planned_downtimes.php:807 +#: ../../include/functions_planned_downtimes.php:808 msgid "There is no user with such id" msgstr "Il n'y a pas d'utilisateur avec un tel ID" -#: ../../include/functions_planned_downtimes.php:812 +#: ../../include/functions_planned_downtimes.php:813 msgid "There is no group with such id" msgstr "Il n'y a pas de groupe avec un tel ID" -#: ../../include/functions_planned_downtimes.php:817 +#: ../../include/functions_planned_downtimes.php:818 msgid "Date is wrong formatted" msgstr "La date est mal formatée" -#: ../../include/functions_planned_downtimes.php:924 +#: ../../include/functions_planned_downtimes.php:925 msgid "This scheduled downtime are executed now. Can't delete in this moment." msgstr "" "Ce temps d'arrêt programmé est exécuté maintenant. Impossible de supprimer " "pour le moment." -#: ../../include/functions_planned_downtimes.php:931 +#: ../../include/functions_planned_downtimes.php:932 msgid "Deleted this scheduled downtime successfully." msgstr "Ce temps d'arrêt planifié a été supprimé correctement." -#: ../../include/functions_planned_downtimes.php:933 +#: ../../include/functions_planned_downtimes.php:934 msgid "Problems for deleted this scheduled downtime." msgstr "Problèmes pour supprimer ce temps d'arrêt programmé." -#: ../../include/functions_planned_downtimes.php:993 +#: ../../include/functions_planned_downtimes.php:994 msgid "Error adding agents to copied downtime" msgstr "Erreur lors de l’ajout d’agents aux temps d’arrêt copiés" -#: ../../include/functions_planned_downtimes.php:1016 +#: ../../include/functions_planned_downtimes.php:1017 msgid "Error adding module to copied downtime" msgstr "Erreur lors de l’ajout d’un module à un temps d’arrêt copié" -#: ../../index.php:990 +#: ../../index.php:993 msgid "User doesn\\'t exist." msgstr "L'utilisateur n'existe pas" -#: ../../index.php:1012 +#: ../../index.php:1015 msgid "User only can use the API." msgstr "L'utilisateur peut seulement utiliser l'API." -#: ../../index.php:1214 +#: ../../index.php:1217 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "La Métaconsole MR (%d) est différent de celui-ci (%d)" @@ -50632,92 +50695,109 @@ msgstr "Rechercher module" msgid "Tree search" msgstr "Rechercher arborescence" -#: ../../operation/users/user_edit.php:156 +#: ../../operation/users/user_edit.php:31 +msgid "User detail editor" +msgstr "Éditeur d'information sur l'utilisateur" + +#: ../../operation/users/user_edit.php:159 msgid "Current password of user is required to perform password change" msgstr "" "Le mot de passe actuel de l'utilisateur est requis pour effectuer le " "changement de mot de passe" -#: ../../operation/users/user_edit.php:158 +#: ../../operation/users/user_edit.php:161 msgid "Current password of user is not correct" msgstr "Votre mot de passe actuel est incorrect." -#: ../../operation/users/user_edit.php:162 +#: ../../operation/users/user_edit.php:165 msgid "" "Passwords didn't match or other problem encountered while updating passwords" msgstr "" "Les mots de passe ne se correspondent pas ou d'autres problèmes ont surgis " "pendant la mise à jour des mots de passe" -#: ../../operation/users/user_edit.php:175 -#: ../../operation/users/user_edit.php:190 +#: ../../operation/users/user_edit.php:178 +#: ../../operation/users/user_edit.php:197 msgid "Password successfully updated" msgstr "Mot de passe mis à jour correctement" -#: ../../operation/users/user_edit.php:185 -#: ../../operation/users/user_edit.php:233 +#: ../../operation/users/user_edit.php:188 +#: ../../operation/users/user_edit.php:240 msgid "Error updating user info" msgstr "Erreur de mise à jour de l'information de l'utilisateur" -#: ../../operation/users/user_edit.php:192 +#: ../../operation/users/user_edit.php:199 msgid "Skin successfully updated" msgstr "Skin mis à jour correctement" -#: ../../operation/users/user_edit.php:206 +#: ../../operation/users/user_edit.php:213 msgid "Please enter a valid email" msgstr "Veuillez entrer une adresse email valide" -#: ../../operation/users/user_edit.php:208 +#: ../../operation/users/user_edit.php:215 msgid "Please enter a valid phone number" msgstr "Veuillez entrer un numéro de téléphone valide" -#: ../../operation/users/user_edit.php:214 +#: ../../operation/users/user_edit.php:221 msgid "Error updating passwords: " msgstr "Erreur lors de la mise à jour des mots de passe :" -#: ../../operation/users/user_edit.php:238 +#: ../../operation/users/user_edit.php:245 msgid "Edit my User" msgstr "Modifier mon utilisateur" -#: ../../operation/users/user_edit.php:303 +#: ../../operation/users/user_edit.php:328 +msgid "" +"Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/conf." +"d/php.conf" +msgstr "" +"La directive HTTP_AUTHORIZATION=1 $ n’est pas définie. S’il vous plaît, " +"ajoutez-la à /etc/httpd/conf.d/php.conf" + +#: ../../operation/users/user_edit.php:377 msgid "Current password" msgstr "Mot de passe actuel" -#: ../../operation/users/user_edit.php:305 +#: ../../operation/users/user_edit.php:379 msgid "You cannot change your password under the current authentication scheme" msgstr "" "Vous ne pouvez pas changer votre mot de passe sous le schéma " "d'authentification actuel" -#: ../../operation/users/user_edit.php:320 +#: ../../operation/users/user_edit.php:394 msgid "If checkbox is clicked then block size global configuration is used" msgstr "" "Si vous cochez cette case, la taille du bloc de la configuration globale sera " "utilisée" -#: ../../operation/users/user_edit.php:414 +#: ../../operation/users/user_edit.php:478 +#: ../../operation/users/user_edit.php:487 +msgid "Theme" +msgstr "Thème" + +#: ../../operation/users/user_edit.php:488 msgid "This change will only apply to nodes" msgstr "Cette modification ne s’appliquera qu’aux nœuds" -#: ../../operation/users/user_edit.php:710 +#: ../../operation/users/user_edit.php:784 msgid "eHorus user configuration" msgstr "Configuration utilisateur eHorus" -#: ../../operation/users/user_edit.php:715 +#: ../../operation/users/user_edit.php:789 msgid "eHorus user acces enabled" msgstr "Accès utilisateur eHorus activé" -#: ../../operation/users/user_edit.php:762 +#: ../../operation/users/user_edit.php:836 msgid "Integria user configuration" msgstr "Configuration d’utilisateur Integria" -#: ../../operation/users/user_edit.php:799 +#: ../../operation/users/user_edit.php:873 msgid "You can not change your user info under the current authentication scheme" msgstr "" "Vous ne pouvez pas modifier vos informations d'utilisateur sous le schéma " "d'authentification actuel" -#: ../../operation/users/user_edit.php:876 +#: ../../operation/users/user_edit.php:950 msgid "This user doesn't have any assigned profile/group." msgstr "Cet utilisateur n'a aucun profil/groupe assigné." @@ -50728,7 +50808,7 @@ msgstr "Notifications utilisateur" #: ../../operation/users/user_edit_header.php:127 #: ../../operation/messages/message_list.php:86 -#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:481 +#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:485 msgid "Workspace" msgstr "Espace de travail" @@ -50841,7 +50921,7 @@ msgstr "Heure de début" #: ../../operation/agentes/stat_win.php:428 #: ../../operation/agentes/interface_traffic_graph_win.php:215 #: ../../operation/agentes/graphs.php:218 -#: ../../operation/reporting/graph_viewer.php:360 +#: ../../operation/reporting/graph_viewer.php:332 msgid "Time range" msgstr "Intervalle de temps" @@ -50863,26 +50943,26 @@ msgstr "Afficher les séries de données MOY/MAX/MIN dans le graphique" msgid "Graph configuration menu" msgstr "Menu de configuration du graphique" -#: ../../operation/agentes/alerts_status.php:340 +#: ../../operation/agentes/alerts_status.php:347 msgid "No actions" msgstr "Aucune action" -#: ../../operation/agentes/alerts_status.php:373 +#: ../../operation/agentes/alerts_status.php:380 #: ../../operation/agentes/estado_monitores.php:539 #: ../../operation/agentes/alerts_status.functions.php:160 msgid "Free text for search (*):" msgstr "Texte libre pour la recherche (*):" -#: ../../operation/agentes/alerts_status.php:374 +#: ../../operation/agentes/alerts_status.php:381 #: ../../operation/agentes/alerts_status.functions.php:161 msgid "Filter by module name, template name or action name" msgstr "Filtrer par nom de module, nom de modèle ou nom d'action" -#: ../../operation/agentes/alerts_status.php:443 +#: ../../operation/agentes/alerts_status.php:450 msgid "Full list of alerts" msgstr "Liste complète des alertes" -#: ../../operation/agentes/alerts_status.php:534 +#: ../../operation/agentes/alerts_status.php:541 msgid "You must select at least one alert." msgstr "Vous devez sélectionner au moins une alerte." @@ -50998,14 +51078,14 @@ msgid "Latest events for this agent" msgstr "Derniers événements pour cet agent" #: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2310 +#: ../../operation/agentes/pandora_networkmap.view.php:2314 #: ../../operation/snmpconsole/snmp_statistics.php:45 #: ../../operation/snmpconsole/snmp_browser.php:56 msgid "Normal screen" msgstr "Écran normal" #: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2338 +#: ../../operation/agentes/pandora_networkmap.view.php:2342 msgid "List of networkmap" msgstr "Liste de cartes de réseau" @@ -51334,7 +51414,7 @@ msgstr "%s Vue de données d'instantané pour le module (%s)" msgid "Current data at %s" msgstr "Données actuelles chez %s" -#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:544 +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:548 msgid "Export data" msgstr "Exporter les données" @@ -51403,17 +51483,17 @@ msgid "Data Type" msgstr "Type de données" #: ../../operation/agentes/status_monitor.php:1444 -#: ../../operation/agentes/pandora_networkmap.view.php:1782 +#: ../../operation/agentes/pandora_networkmap.view.php:1786 msgid "(Adopt) " msgstr "(Adopter) " #: ../../operation/agentes/status_monitor.php:1452 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/agentes/pandora_networkmap.view.php:1794 msgid "(Unlinked) (Adopt) " msgstr "(Dissocié) (Adopter) " #: ../../operation/agentes/status_monitor.php:1455 -#: ../../operation/agentes/pandora_networkmap.view.php:1793 +#: ../../operation/agentes/pandora_networkmap.view.php:1797 msgid "(Unlinked) " msgstr "(Dissocié) " @@ -51462,43 +51542,43 @@ msgid "Not Normal" msgstr "Pas normal" #: ../../operation/agentes/estado_monitores.php:540 -msgid "Search by module name, list matches." -msgstr "Rechercher par nom de module, concordances de listes" +msgid "Search by module name or alert name, list matches." +msgstr "Rechercher par nom de module ou nom d’alerte, lister les concordances." -#: ../../operation/agentes/pandora_networkmap.view.php:1650 +#: ../../operation/agentes/pandora_networkmap.view.php:1654 msgid "Success be updated." msgstr "Mis à jour correctement" -#: ../../operation/agentes/pandora_networkmap.view.php:1747 +#: ../../operation/agentes/pandora_networkmap.view.php:1751 msgid "Name: " msgstr "Nom : " -#: ../../operation/agentes/pandora_networkmap.view.php:1797 +#: ../../operation/agentes/pandora_networkmap.view.php:1801 msgid "Policy: " msgstr "Politique : " -#: ../../operation/agentes/pandora_networkmap.view.php:1894 +#: ../../operation/agentes/pandora_networkmap.view.php:1898 msgid "Data: " msgstr "Données : " -#: ../../operation/agentes/pandora_networkmap.view.php:1896 +#: ../../operation/agentes/pandora_networkmap.view.php:1900 #: ../../operation/agentes/estado_generalagente.php:832 msgid "Last contact: " msgstr "Dernier contact : " -#: ../../operation/agentes/ver_agente.php:1244 +#: ../../operation/agentes/ver_agente.php:1250 msgid "Sons" msgstr "Fils" -#: ../../operation/agentes/ver_agente.php:1594 +#: ../../operation/agentes/ver_agente.php:1612 msgid "Log Viewer" msgstr "Visionneur de journaux" -#: ../../operation/agentes/ver_agente.php:1633 +#: ../../operation/agentes/ver_agente.php:1651 msgid "Terminal" msgstr "Terminal" -#: ../../operation/agentes/ver_agente.php:1655 +#: ../../operation/agentes/ver_agente.php:1673 msgid "Processes" msgstr "Processus" @@ -51547,6 +51627,15 @@ msgstr "Information des événements (24h)" msgid "Interface information (SNMP)" msgstr "Information de l'interface (SNMP)" +#: ../../operation/agentes/agent_inventory.php:73 +msgid "This agent has not modules inventory" +msgstr "Cet agent n'a pas de modules d'inventaire." + +#: ../../operation/agentes/agent_inventory.php:193 +#: ../../operation/agentes/agent_inventory.php:194 +msgid "Diff view" +msgstr "Affichage des différence" + #: ../../operation/agentes/alerts_status.functions.php:48 msgid "Alert(s) validated" msgstr "Alertes validées" @@ -51559,10 +51648,18 @@ msgstr "Erreur de traitement des alertes" msgid "Filter by agent name, module name, template name or action name" msgstr "Filtrer par nom d'agent, de module, de modèle ou d'action" -#: ../../operation/agentes/tactical.php:201 +#: ../../operation/agentes/tactical.php:202 msgid "Report of State" msgstr "Rapport d'état" +#: ../../operation/agentes/tactical.php:246 +msgid "Event graph" +msgstr "Graphique de commandes" + +#: ../../operation/agentes/tactical.php:251 +msgid "Event graph by agent" +msgstr "Graphique d'événements par l'agent" + #: ../../operation/messages/message_list.php:46 #: ../../operation/messages/message_list.php:55 #: ../../operation/messages/message_edit.php:66 @@ -51720,7 +51817,7 @@ msgstr "Filtré par port %s. Cliquez ici pour supprimer le filtre." msgid "Filtered by IP %s. Click here to remove the filter." msgstr "Filtré par IP %s. Cliquez ici pour supprimer le filtre." -#: ../../operation/network/network_usage_map.php:29 ../../operation/menu.php:108 +#: ../../operation/network/network_usage_map.php:29 ../../operation/menu.php:112 msgid "Network usage map" msgstr "Carte d’utilisation du réseau" @@ -51806,7 +51903,7 @@ msgstr "Mise à jour de ce filtre" msgid "No filter selected" msgstr "Aucun filtre sélectionné" -#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:94 +#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:98 msgid "Netflow explorer" msgstr "Explorateur Netflow" @@ -51823,15 +51920,15 @@ msgid "Traps received by source" msgstr "Déroutements reçus par la source" #: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../operation/snmpconsole/snmp_statistics.php:251 +#: ../../operation/snmpconsole/snmp_statistics.php:256 msgid "Number" msgstr "Nombre" -#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_statistics.php:242 msgid "Traps received by Enterprise String" msgstr "Déroutements reçus par la chaîne d'Enterprise" -#: ../../operation/snmpconsole/snmp_statistics.php:250 +#: ../../operation/snmpconsole/snmp_statistics.php:255 msgid "Trap Enterprise String" msgstr "Déroutement Enterprise de chaîne" @@ -51843,16 +51940,16 @@ msgstr "Explorateur SNMP" msgid "Adding modules in progress" msgstr "Ajout de modules en cours" -#: ../../operation/snmpconsole/snmp_browser.php:552 +#: ../../operation/snmpconsole/snmp_browser.php:550 msgid "Create policy" msgstr "Créer une politique" -#: ../../operation/snmpconsole/snmp_browser.php:644 +#: ../../operation/snmpconsole/snmp_browser.php:642 msgid "Are you sure you want add module?" msgstr "Êtes-vous sûr de vouloir ajouter un module ?" #: ../../operation/snmpconsole/snmp_mib_uploader.php:47 -#: ../../operation/menu.php:133 +#: ../../operation/menu.php:137 msgid "MIB uploader" msgstr "Téléverseur MIB" @@ -51865,59 +51962,59 @@ msgstr "" "peut dépendre d'un autre MIB. Pour personnaliser les définitions de " "déroutement, utilisez l'éditeur de trap SNMP." -#: ../../operation/menu.php:98 +#: ../../operation/menu.php:102 msgid "Netflow Live View" msgstr "Netflow en temps réel" -#: ../../operation/menu.php:128 +#: ../../operation/menu.php:132 msgid "SNMP browser" msgstr "Navigateur SNMP" -#: ../../operation/menu.php:137 +#: ../../operation/menu.php:141 msgid "SNMP filters" msgstr "Filtres SNMP" -#: ../../operation/menu.php:270 ../../operation/gis_maps/gis_map.php:35 +#: ../../operation/menu.php:274 ../../operation/gis_maps/gis_map.php:35 msgid "GIS Maps" msgstr "Cartes GIS" -#: ../../operation/menu.php:275 +#: ../../operation/menu.php:279 msgid "List of Gis maps" msgstr "Liste de cartes GIS" -#: ../../operation/menu.php:426 +#: ../../operation/menu.php:430 msgid "RSS" msgstr "RSS" -#: ../../operation/menu.php:470 ../../operation/events/events.php:1583 +#: ../../operation/menu.php:474 ../../operation/events/events.php:1583 msgid "Sound Alerts" msgstr "Alertes sonores" -#: ../../operation/menu.php:493 +#: ../../operation/menu.php:497 msgid "Configure user notifications" msgstr "Configurer les notifications utilisateur" -#: ../../operation/menu.php:513 +#: ../../operation/menu.php:517 msgid "Integria IMS statistics" msgstr "Statistiques Integria IMS" -#: ../../operation/menu.php:514 +#: ../../operation/menu.php:518 msgid "Integria IMS ticket list" msgstr "Liste des tickets Integria IMS" -#: ../../operation/menu.php:527 +#: ../../operation/menu.php:531 msgid "Messages List" msgstr "Liste de messages" -#: ../../operation/menu.php:528 +#: ../../operation/menu.php:532 msgid "New message" msgstr "Nouveau message" -#: ../../operation/menu.php:550 +#: ../../operation/menu.php:554 msgid "Scheduled downtime" msgstr "Temps d'arrêt planifié" -#: ../../operation/menu.php:624 +#: ../../operation/menu.php:628 msgid "Tools" msgstr "Outils" @@ -52141,6 +52238,18 @@ msgstr "Mis à jour/Démarré" msgid "No tickets to show" msgstr "Aucun ticket à afficher" +#: ../../operation/inventory/inventory.php:292 +msgid "You must select at least one filter." +msgstr "Vous devez sélectionner au moins un filtre." + +#: ../../operation/inventory/inventory.php:441 +msgid "Order by agent" +msgstr "Ordonner par agent" + +#: ../../operation/inventory/inventory.php:485 +msgid "Export this list to CSV" +msgstr "Exporter cette liste au format CSV" + #: ../../operation/search_main.php:55 ../../operation/search_main.php:57 #: ../../operation/search_main.php:65 ../../operation/search_main.php:67 #: ../../operation/search_main.php:69 ../../operation/search_main.php:71 @@ -52181,29 +52290,25 @@ msgstr "" "de fin." #: ../../operation/reporting/reporting_viewer.php:426 -#: ../../operation/reporting/graph_viewer.php:505 +#: ../../operation/reporting/graph_viewer.php:502 msgid "Invalid date selected" msgstr "Date sélectionnée non valide" #: ../../operation/reporting/custom_reporting.php:28 -#: ../../operation/reporting/graph_viewer.php:539 +#: ../../operation/reporting/graph_viewer.php:536 msgid "There are no defined reportings" msgstr "Aucun rapport défini" -#: ../../operation/reporting/graph_viewer.php:335 -msgid "No data." -msgstr "Aucune donnée" - -#: ../../operation/reporting/graph_viewer.php:369 -#: ../../operation/reporting/graph_viewer.php:391 +#: ../../operation/reporting/graph_viewer.php:341 +#: ../../operation/reporting/graph_viewer.php:363 msgid "Graph defined" msgstr "Graphique défini" -#: ../../operation/reporting/graph_viewer.php:383 +#: ../../operation/reporting/graph_viewer.php:355 msgid "Equalize maxiddmum thresholds" msgstr "Egaliser les seuils maximaux" -#: ../../operation/reporting/graph_viewer.php:383 +#: ../../operation/reporting/graph_viewer.php:355 msgid "" "If an option is selected, all graphs will have the highest value from all " "modules included in the graph as a maximum threshold" @@ -52211,19 +52316,23 @@ msgstr "" "Si une option est sélectionnée, tous les graphiques auront la valeur la plus " "haute de tous les modules comme seuil maximum, y compris dans le graphique." -#: ../../operation/reporting/graph_viewer.php:392 +#: ../../operation/reporting/graph_viewer.php:364 msgid "Zoom x1" msgstr "Zoom x1" -#: ../../operation/reporting/graph_viewer.php:393 +#: ../../operation/reporting/graph_viewer.php:365 msgid "Zoom x2" msgstr "Zoom x2" -#: ../../operation/reporting/graph_viewer.php:394 +#: ../../operation/reporting/graph_viewer.php:366 msgid "Zoom x3" msgstr "Zoom x3" -#: ../../operation/reporting/graph_viewer.php:513 +#: ../../operation/reporting/graph_viewer.php:400 +msgid "No data." +msgstr "Aucune donnée" + +#: ../../operation/reporting/graph_viewer.php:510 msgid "Custom graph viewer" msgstr "Affichage personnalisé du tableau" @@ -52251,10 +52360,6 @@ msgstr "Votre adresse IP n'est pas dans la liste IP avec accès à l'API" msgid "The URL of your feed has bad hash." msgstr "L'URL de votre flux a un mauvais hachage." -#: ../../operation/events/events.php:256 -msgid "Metaconsola" -msgstr "Métaconsole" - #: ../../operation/events/events.php:854 msgid "Validate events" msgstr "Valider les événements" @@ -53595,6 +53700,39 @@ msgstr "" "Le système d'aide de %s a été appelé avec une référence d'aide qui n'existe " "pas actuellement. Il n'y a pas de contenu d'aide à montrer." +#~ msgid "Phantomjs bin directory" +#~ msgstr "Répertoire phantomjs bin" + +#~ msgid "PhantomJS cache cleanup " +#~ msgstr "Nettoyage du cache PhantomJS " + +#~ msgid "No scheduled" +#~ msgstr "Non planifié" + +#~ msgid "Each week" +#~ msgstr "Chaque semaine" + +#~ msgid "Each day" +#~ msgstr "Tous les jours" + +#~ msgid "PhantomJS cache interval" +#~ msgstr "Intervalle de cache PhantomJS" + +#~ msgid "

Type

" +#~ msgstr "

Type

" + +#~ msgid "Circular porgress bar" +#~ msgstr "Barre de progression circulaire" + +#~ msgid "other" +#~ msgstr "autre" + +#~ msgid "Edit cluster" +#~ msgstr "Modifier le cluster" + +#~ msgid "Events -by module-" +#~ msgstr "Événements par module" + #~ msgid "Synchronization queue items warn detection" #~ msgstr "" #~ "Détection d’avertissement des éléments de file d’attente de synchronisation" @@ -54069,9 +54207,6 @@ msgstr "" #~ msgid "Update manager » Online" #~ msgstr "Gestionnaire de mises à jour » en ligne" -#~ msgid "Update manager" -#~ msgstr "Gestionnaire de mises à jour" - #~ msgid "Update Manager offline" #~ msgstr "Mettre à jour le gestionnaire hors ligne" diff --git a/pandora_console/include/languages/index.pot b/pandora_console/include/languages/index.pot index 945295f6d0..c887d43a07 100644 --- a/pandora_console/include/languages/index.pot +++ b/pandora_console/include/languages/index.pot @@ -6,10 +6,10 @@ #: ../../enterprise/meta/monitoring/custom_fields_view.php:1023 #: ../../enterprise/meta/monitoring/group_view.php:214 #: ../../enterprise/meta/monitoring/group_view.php:231 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:130 -#: ../../enterprise/godmode/policies/policy_agents.php:716 -#: ../../enterprise/godmode/policies/policy_agents.php:744 +#: ../../enterprise/godmode/policies/policy_agents.php:752 +#: ../../enterprise/godmode/policies/policy_agents.php:780 #: ../../enterprise/include/functions_reporting_csv.php:2304 +#: ../../godmode/modules/manage_inventory_modules_form.php:130 #: ../../include/functions_reporting_html.php:4062 #: ../../include/functions_reporting_html.php:4068 #: ../../include/functions_reporting_html.php:4074 @@ -27,7 +27,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2022-12-21 10:53+0100\n" +"POT-Creation-Date: 2023-01-17 10:25+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -44,7 +44,6 @@ msgstr "" #: ../../views/calendar/special_days_edit.php:58 #: ../../views/calendar/edit.php:58 ../../views/calendar/special_days.php:59 #: ../../enterprise/extensions/csv_import_group.php:43 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:56 #: ../../enterprise/godmode/modules/local_components.php:257 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:343 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 @@ -58,7 +57,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_queue.php:211 #: ../../enterprise/godmode/policies/policies.php:265 #: ../../enterprise/godmode/policies/policy_linking.php:110 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:311 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:313 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 #: ../../enterprise/godmode/policies/policy_collections.php:43 #: ../../enterprise/godmode/policies/policy_agents.php:319 @@ -76,8 +75,9 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:51 #: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:286 +#: ../../godmode/modules/manage_inventory_modules.php:56 #: ../../godmode/modules/manage_network_components.php:307 -#: ../../godmode/groups/group_list.php:396 +#: ../../godmode/groups/group_list.php:401 #: ../../godmode/groups/modu_group_list.php:85 #: ../../godmode/users/profile_list.php:108 #: ../../godmode/users/user_list.php:485 @@ -88,14 +88,14 @@ msgstr "" #: ../../godmode/massive/massive_add_profiles.php:45 #: ../../godmode/alerts/configure_alert_command.php:189 #: ../../godmode/alerts/alert_actions.php:215 -#: ../../godmode/alerts/alert_commands.php:722 +#: ../../godmode/alerts/alert_commands.php:723 #: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/configure_alert_action.php:113 #: ../../godmode/alerts/configure_alert_template.php:412 #: ../../godmode/setup/os.list.php:49 #: ../../godmode/servers/plugin_registration.php:79 #: ../../godmode/tag/tag.php:188 ../../godmode/category/category.php:101 -#: ../../operation/users/user_edit.php:247 +#: ../../operation/users/user_edit.php:254 msgid "metaconsole" msgstr "" @@ -103,7 +103,6 @@ msgstr "" #: ../../views/calendar/special_days_edit.php:61 #: ../../views/calendar/edit.php:61 ../../views/calendar/special_days.php:62 #: ../../enterprise/extensions/csv_import_group.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:58 #: ../../enterprise/godmode/modules/local_components.php:259 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:345 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 @@ -114,7 +113,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_queue.php:213 #: ../../enterprise/godmode/policies/policies.php:267 #: ../../enterprise/godmode/policies/policy_linking.php:112 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:313 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:315 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 #: ../../enterprise/godmode/policies/policy_collections.php:45 #: ../../enterprise/godmode/policies/policy_agents.php:321 @@ -128,8 +127,9 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:53 #: ../../extensions/resource_registration.php:1109 #: ../../godmode/modules/manage_nc_groups.php:288 +#: ../../godmode/modules/manage_inventory_modules.php:58 #: ../../godmode/modules/manage_network_components.php:309 -#: ../../godmode/groups/group_list.php:398 +#: ../../godmode/groups/group_list.php:403 #: ../../godmode/groups/modu_group_list.php:87 #: ../../godmode/users/profile_list.php:110 #: ../../godmode/users/user_list.php:487 @@ -140,13 +140,13 @@ msgstr "" #: ../../godmode/massive/massive_add_profiles.php:47 #: ../../godmode/alerts/configure_alert_command.php:191 #: ../../godmode/alerts/alert_actions.php:217 -#: ../../godmode/alerts/alert_commands.php:724 +#: ../../godmode/alerts/alert_commands.php:725 #: ../../godmode/alerts/alert_templates.php:263 #: ../../godmode/alerts/configure_alert_action.php:115 #: ../../godmode/alerts/configure_alert_template.php:414 #: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:190 #: ../../godmode/category/category.php:103 -#: ../../operation/users/user_edit.php:249 +#: ../../operation/users/user_edit.php:256 msgid "any node" msgstr "" @@ -165,15 +165,15 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:136 #: ../../enterprise/tools/ipam/ipam_excel.php:207 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:660 -#: ../../extensions/api_checker.php:161 +#: ../../extensions/api_checker.php:245 #: ../../godmode/modules/module_list.php:61 -#: ../../godmode/groups/group_list.php:840 +#: ../../godmode/groups/group_list.php:845 #: ../../godmode/groups/modu_group_list.php:251 #: ../../godmode/agentes/fields_manager.php:121 #: ../../godmode/agentes/agent_manager.php:219 #: ../../godmode/agentes/agent_incidents.php:88 #: ../../godmode/agentes/module_manager_editor_common.php:230 -#: ../../godmode/alerts/alert_commands.php:742 +#: ../../godmode/alerts/alert_commands.php:743 #: ../../godmode/setup/os.list.php:68 #: ../../operation/incidents/list_integriaims_incidents.php:515 msgid "ID" @@ -205,15 +205,12 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1682 #: ../../enterprise/meta/agentsearch.php:335 #: ../../enterprise/godmode/modules/configure_local_component.php:158 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278 #: ../../enterprise/godmode/modules/local_components.php:624 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:371 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:751 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:136 #: ../../enterprise/godmode/agentes/collection_manager.php:109 #: ../../enterprise/godmode/agentes/collection_manager.php:206 -#: ../../enterprise/godmode/agentes/inventory_manager.php:221 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:579 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 @@ -223,8 +220,8 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_inventory_modules.php:302 #: ../../enterprise/godmode/policies/policy_collections.php:169 #: ../../enterprise/godmode/policies/policy_collections.php:263 -#: ../../enterprise/godmode/policies/policy_agents.php:847 -#: ../../enterprise/godmode/policies/policy_agents.php:1367 +#: ../../enterprise/godmode/policies/policy_agents.php:883 +#: ../../enterprise/godmode/policies/policy_agents.php:1403 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 #: ../../enterprise/godmode/services/services.service.php:579 #: ../../enterprise/godmode/setup/setup_skins.php:87 @@ -256,7 +253,7 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 #: ../../enterprise/include/functions_services.php:1603 #: ../../enterprise/include/functions_ipam.php:1348 -#: ../../enterprise/include/functions_ipam.php:1987 +#: ../../enterprise/include/functions_ipam.php:1995 #: ../../enterprise/operation/agentes/policy_view.php:163 #: ../../enterprise/operation/agentes/policy_view.php:395 #: ../../enterprise/operation/agentes/tag_view.php:677 @@ -276,26 +273,29 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups_form.php:68 #: ../../godmode/modules/manage_network_templates_form.php:168 #: ../../godmode/modules/manage_nc_groups.php:241 +#: ../../godmode/modules/manage_inventory_modules.php:278 #: ../../godmode/modules/manage_network_components_form_common.php:46 +#: ../../godmode/modules/manage_inventory_modules_form.php:103 #: ../../godmode/modules/module_list.php:62 #: ../../godmode/modules/manage_network_templates.php:248 #: ../../godmode/groups/configure_group.php:150 -#: ../../godmode/groups/group_list.php:842 +#: ../../godmode/groups/group_list.php:847 #: ../../godmode/groups/configure_modu_group.php:67 #: ../../godmode/groups/modu_group_list.php:252 #: ../../godmode/users/user_list.php:540 +#: ../../godmode/agentes/inventory_manager.php:221 #: ../../godmode/agentes/planned_downtime.editor.php:820 #: ../../godmode/agentes/planned_downtime.editor.php:1206 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132 #: ../../godmode/agentes/configure_field.php:77 #: ../../godmode/agentes/module_manager_editor_common.php:215 #: ../../godmode/agentes/module_manager_editor_common.php:1226 -#: ../../godmode/agentes/module_manager.php:869 +#: ../../godmode/agentes/module_manager.php:870 #: ../../godmode/netflow/nf_edit.php:159 #: ../../godmode/netflow/nf_edit_form.php:199 #: ../../godmode/alerts/configure_alert_command.php:224 #: ../../godmode/alerts/alert_actions.php:326 -#: ../../godmode/alerts/alert_commands.php:741 +#: ../../godmode/alerts/alert_commands.php:742 #: ../../godmode/alerts/alert_templates.php:384 #: ../../godmode/alerts/configure_alert_action.php:181 #: ../../godmode/alerts/configure_alert_template.php:1052 @@ -322,7 +322,7 @@ msgstr "" #: ../../include/functions_reporting_html.php:2551 #: ../../include/functions_reporting_html.php:2910 #: ../../include/functions_reporting_html.php:3613 -#: ../../include/functions_reporting_html.php:6301 +#: ../../include/functions_reporting_html.php:6320 #: ../../include/functions_treeview.php:78 #: ../../include/class/NetworkMap.class.php:3039 #: ../../include/class/NetworkMap.class.php:3080 @@ -336,8 +336,8 @@ msgstr "" #: ../../include/class/SatelliteCollection.class.php:128 #: ../../include/functions_filemanager.php:604 #: ../../include/functions_snmp_browser.php:1670 -#: ../../include/functions_events.php:4207 -#: ../../include/functions_events.php:4296 ../../operation/search_users.php:44 +#: ../../include/functions_events.php:4186 +#: ../../include/functions_events.php:4275 ../../operation/search_users.php:44 #: ../../operation/search_helps.php:31 #: ../../operation/agentes/pandora_networkmap.editor.php:291 #: ../../operation/agentes/pandora_networkmap.php:714 @@ -374,12 +374,12 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:196 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:139 -#: ../../enterprise/godmode/agentes/collections.php:430 +#: ../../enterprise/godmode/agentes/collections.php:444 #: ../../enterprise/godmode/policies/configure_policy.php:105 #: ../../enterprise/godmode/policies/policies.php:312 #: ../../enterprise/godmode/policies/policies.php:412 -#: ../../enterprise/godmode/policies/policy_agents.php:798 -#: ../../enterprise/godmode/policies/policy_agents.php:855 +#: ../../enterprise/godmode/policies/policy_agents.php:834 +#: ../../enterprise/godmode/policies/policy_agents.php:891 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 #: ../../enterprise/godmode/services/services.service.php:602 @@ -395,7 +395,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2051 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:673 #: ../../enterprise/include/functions_tasklist.php:177 #: ../../enterprise/include/ajax/ipam.ajax.php:487 #: ../../enterprise/include/functions_reporting_csv.php:725 @@ -409,8 +409,8 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:469 #: ../../enterprise/include/class/Aws.S3.php:434 #: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Aws.cloud.php:579 -#: ../../enterprise/include/class/Aws.cloud.php:1234 +#: ../../enterprise/include/class/Aws.cloud.php:578 +#: ../../enterprise/include/class/Aws.cloud.php:1233 #: ../../enterprise/include/class/MySQL.app.php:474 #: ../../enterprise/include/class/Google.cloud.php:785 #: ../../enterprise/include/class/Oracle.app.php:476 @@ -425,7 +425,6 @@ msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:52 #: ../../enterprise/operation/agentes/ver_agente.php:73 #: ../../enterprise/operation/log/log_viewer.php:534 -#: ../../enterprise/operation/inventory/inventory.php:336 #: ../../enterprise/operation/services/services.service.php:121 #: ../../enterprise/operation/services/massive/services.create.php:682 #: ../../enterprise/operation/services/services.list.php:260 @@ -440,7 +439,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components.php:621 #: ../../godmode/modules/manage_network_components.php:755 #: ../../godmode/users/user_list.php:450 -#: ../../godmode/agentes/configurar_agente.php:506 +#: ../../godmode/agentes/configurar_agente.php:519 #: ../../godmode/agentes/modificar_agente.php:289 #: ../../godmode/agentes/modificar_agente.php:651 #: ../../godmode/agentes/planned_downtime.list.php:658 @@ -468,7 +467,7 @@ msgstr "" #: ../../godmode/alerts/alert_actions.php:260 #: ../../godmode/alerts/alert_actions.php:328 #: ../../godmode/alerts/alert_list.list.php:157 -#: ../../godmode/alerts/alert_commands.php:743 +#: ../../godmode/alerts/alert_commands.php:744 #: ../../godmode/alerts/alert_templates.php:385 #: ../../godmode/alerts/configure_alert_action.php:212 #: ../../godmode/alerts/configure_alert_template.php:1074 @@ -499,7 +498,7 @@ msgstr "" #: ../../godmode/reporting/graph_builder.main.php:143 #: ../../godmode/events/event_filter.php:137 #: ../../godmode/events/event_responses.editor.php:105 -#: ../../godmode/events/event_edit_filter.php:316 +#: ../../godmode/events/event_edit_filter.php:326 #: ../../godmode/events/event_responses.list.php:52 #: ../../godmode/events/custom_events.php:100 #: ../../godmode/wizards/HostDevices.class.php:934 @@ -523,16 +522,16 @@ msgstr "" #: ../../include/functions_reporting_html.php:2266 #: ../../include/functions_reporting_html.php:3564 #: ../../include/functions_reporting_html.php:3617 -#: ../../include/functions_reporting_html.php:6389 +#: ../../include/functions_reporting_html.php:6408 #: ../../include/functions_cron.php:505 ../../include/ajax/heatmap.ajax.php:111 #: ../../include/ajax/heatmap.ajax.php:350 #: ../../include/ajax/custom_fields.php:630 #: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:5163 ../../include/functions_gis.php:228 +#: ../../include/functions_graph.php:4951 ../../include/functions_gis.php:228 #: ../../include/functions_profile.php:214 -#: ../../include/functions_visual_map.php:4264 +#: ../../include/functions_visual_map.php:4215 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 -#: ../../include/rest-api/models/VisualConsole/Item.php:2139 +#: ../../include/rest-api/models/VisualConsole/Item.php:2140 #: ../../include/functions_html.php:1531 #: ../../include/functions_massive_operations.php:126 #: ../../include/class/NetworkMap.class.php:2974 @@ -551,9 +550,9 @@ msgstr "" #: ../../include/functions_snmp_browser.php:1673 #: ../../include/functions_events.php:203 #: ../../include/functions_events.php:256 -#: ../../include/functions_events.php:4859 ../../operation/heatmap.php:119 +#: ../../include/functions_events.php:4838 ../../operation/heatmap.php:119 #: ../../operation/heatmap.php:121 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:839 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:913 #: ../../operation/visual_console/view.php:353 #: ../../operation/agentes/estado_agente.php:254 #: ../../operation/agentes/estado_agente.php:754 @@ -565,7 +564,7 @@ msgstr "" #: ../../operation/agentes/group_view.php:222 #: ../../operation/agentes/pandora_networkmap.view.php:140 #: ../../operation/agentes/pandora_networkmap.view.php:174 -#: ../../operation/agentes/ver_agente.php:1030 +#: ../../operation/agentes/ver_agente.php:1036 #: ../../operation/agentes/estado_generalagente.php:403 #: ../../operation/agentes/alerts_status.functions.php:91 #: ../../operation/netflow/nf_live_view.php:380 @@ -574,6 +573,7 @@ msgstr "" #: ../../operation/incidents/configure_integriaims_incident.php:266 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 #: ../../operation/incidents/list_integriaims_incidents.php:331 +#: ../../operation/inventory/inventory.php:339 #: ../../operation/events/events.php:1658 ../../operation/search_maps.php:29 #: ../../general/ui/agents_list.php:76 msgid "Group" @@ -582,7 +582,7 @@ msgstr "" #: ../../views/calendar/list.php:95 #: ../../views/calendar/special_days_edit.php:138 #: ../../views/calendar/edit.php:109 ../../views/cluster/list.php:59 -#: ../../views/cluster/view.php:284 +#: ../../views/cluster/view.php:285 #: ../../enterprise/views/ncm/devices/list.php:115 #: ../../enterprise/views/ipam/sites/list.php:47 #: ../../enterprise/views/ipam/sites/edit.php:51 @@ -601,21 +601,18 @@ msgstr "" #: ../../enterprise/meta/agentsearch.php:336 #: ../../enterprise/godmode/modules/configure_local_component.php:489 #: ../../enterprise/godmode/modules/configure_local_component.php:648 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:279 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:105 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:374 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:137 #: ../../enterprise/godmode/agentes/collection_manager.php:111 #: ../../enterprise/godmode/agentes/collection_manager.php:208 -#: ../../enterprise/godmode/agentes/inventory_manager.php:222 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 -#: ../../enterprise/godmode/agentes/collections.php:431 +#: ../../enterprise/godmode/agentes/collections.php:445 #: ../../enterprise/godmode/policies/configure_policy.php:121 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 #: ../../enterprise/godmode/policies/policy_collections.php:171 #: ../../enterprise/godmode/policies/policy_collections.php:265 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:94 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:97 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 @@ -635,7 +632,7 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:282 #: ../../enterprise/include/ajax/ipam.ajax.php:371 #: ../../enterprise/include/ajax/ipam.ajax.php:615 -#: ../../enterprise/include/functions_reporting_pdf.php:1842 +#: ../../enterprise/include/functions_reporting_pdf.php:1843 #: ../../enterprise/include/functions_reporting_csv.php:489 #: ../../enterprise/include/functions_reporting_csv.php:492 #: ../../enterprise/include/functions_reporting_csv.php:712 @@ -722,7 +719,7 @@ msgstr "" #: ../../enterprise/include/class/ManageBackups.class.php:162 #: ../../enterprise/include/functions_services.php:1604 #: ../../enterprise/include/functions_ipam.php:1374 -#: ../../enterprise/include/functions_ipam.php:1988 +#: ../../enterprise/include/functions_ipam.php:1996 #: ../../enterprise/operation/agentes/policy_view.php:68 #: ../../enterprise/operation/agentes/tag_view.php:600 #: ../../enterprise/operation/agentes/ver_agente.php:60 @@ -745,22 +742,25 @@ msgstr "" #: ../../extensions/files_repo/files_repo_list.php:56 #: ../../godmode/modules/manage_network_templates_form.php:172 #: ../../godmode/modules/manage_network_templates_form.php:234 +#: ../../godmode/modules/manage_inventory_modules.php:279 #: ../../godmode/modules/manage_network_components_form_common.php:346 #: ../../godmode/modules/manage_network_components.php:754 #: ../../godmode/modules/manage_network_components_form_wizard.php:457 +#: ../../godmode/modules/manage_inventory_modules_form.php:105 #: ../../godmode/modules/module_list.php:63 #: ../../godmode/modules/manage_network_templates.php:249 #: ../../godmode/groups/configure_group.php:242 -#: ../../godmode/groups/group_list.php:850 +#: ../../godmode/groups/group_list.php:855 #: ../../godmode/users/user_list.php:545 -#: ../../godmode/agentes/agent_template.php:237 +#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/inventory_manager.php:222 #: ../../godmode/agentes/modificar_agente.php:652 #: ../../godmode/agentes/planned_downtime.list.php:657 #: ../../godmode/agentes/planned_downtime.editor.php:846 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 #: ../../godmode/agentes/agent_manager.php:479 #: ../../godmode/agentes/module_manager_editor_common.php:1095 -#: ../../godmode/agentes/module_manager.php:904 +#: ../../godmode/agentes/module_manager.php:905 #: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:766 #: ../../godmode/snmpconsole/snmp_alert.php:1269 @@ -770,7 +770,7 @@ msgstr "" #: ../../godmode/massive/massive_edit_agents.php:774 #: ../../godmode/massive/massive_edit_modules.php:743 #: ../../godmode/alerts/configure_alert_command.php:283 -#: ../../godmode/alerts/alert_commands.php:744 +#: ../../godmode/alerts/alert_commands.php:745 #: ../../godmode/alerts/alert_templates.php:46 #: ../../godmode/alerts/configure_alert_template.php:1106 #: ../../godmode/setup/os.builder.php:37 ../../godmode/setup/os.list.php:70 @@ -789,18 +789,18 @@ msgstr "" #: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:478 #: ../../godmode/tag/tag.php:228 ../../godmode/tag/tag.php:278 #: ../../godmode/tag/edit_tag.php:219 ../../mobile/operation/tactical.php:352 -#: ../../include/functions_reporting_html.php:155 +#: ../../include/functions_reporting_html.php:156 #: ../../include/functions_reporting_html.php:1573 #: ../../include/functions_reporting_html.php:1716 #: ../../include/functions_reporting_html.php:3567 #: ../../include/functions_reporting_html.php:3618 -#: ../../include/functions_reporting_html.php:5385 -#: ../../include/functions_reporting_html.php:6302 +#: ../../include/functions_reporting_html.php:5404 +#: ../../include/functions_reporting_html.php:6321 #: ../../include/ajax/events_extended.php:91 #: ../../include/ajax/heatmap.ajax.php:238 #: ../../include/ajax/heatmap.ajax.php:277 #: ../../include/ajax/heatmap.ajax.php:337 ../../include/ajax/module.php:992 -#: ../../include/ajax/events.php:2521 ../../include/functions_treeview.php:127 +#: ../../include/ajax/events.php:2532 ../../include/functions_treeview.php:127 #: ../../include/functions_treeview.php:652 #: ../../include/class/ConfigPEN.class.php:448 #: ../../include/class/ConfigPEN.class.php:599 @@ -834,7 +834,7 @@ msgstr "" #: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 #: ../../operation/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 -#: ../../operation/reporting/graph_viewer.php:525 +#: ../../operation/reporting/graph_viewer.php:522 #: ../../operation/search_policies.php:36 msgid "Description" msgstr "" @@ -857,14 +857,14 @@ msgstr "" #: ../../enterprise/include/class/LogSource.class.php:630 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2343 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2952 -#: ../../godmode/menu.php:555 +#: ../../godmode/menu.php:558 #: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../include/ajax/events.php:2212 +#: ../../include/ajax/events.php:2223 #: ../../include/class/ConfigPEN.class.php:601 #: ../../include/class/CredentialStore.class.php:845 #: ../../include/class/ExternalTools.class.php:383 #: ../../include/functions_events.php:310 -#: ../../operation/agentes/pandora_networkmap.view.php:2349 +#: ../../operation/agentes/pandora_networkmap.view.php:2353 msgid "Options" msgstr "" @@ -884,10 +884,10 @@ msgstr "" #: ../../enterprise/include/class/LogSource.class.php:656 #: ../../enterprise/include/lib/Metaconsole/Node.php:571 #: ../../enterprise/include/functions_events.php:50 -#: ../../enterprise/include/functions_ipam.php:1663 +#: ../../enterprise/include/functions_ipam.php:1671 #: ../../godmode/update_manager/update_manager.history.php:67 #: ../../godmode/snmpconsole/snmp_alert.php:1161 -#: ../../godmode/events/event_edit_filter.php:378 +#: ../../godmode/events/event_edit_filter.php:388 #: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 #: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 #: ../../include/ajax/module.php:299 @@ -933,9 +933,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_autoprovision.php:588 #: ../../enterprise/meta/include/functions_autoprovision.php:789 #: ../../enterprise/godmode/modules/configure_local_component.php:692 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:349 #: ../../enterprise/godmode/modules/local_components.php:719 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:171 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:791 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 #: ../../enterprise/godmode/agentes/collections.agents.php:38 @@ -946,12 +944,12 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.data.php:240 #: ../../enterprise/godmode/agentes/collections.data.php:296 #: ../../enterprise/godmode/agentes/collections.editor.php:169 -#: ../../enterprise/godmode/agentes/collections.php:515 +#: ../../enterprise/godmode/agentes/collections.php:531 #: ../../enterprise/godmode/policies/configure_policy.php:144 #: ../../enterprise/godmode/policies/policy_modules.php:433 #: ../../enterprise/godmode/policies/policies.php:649 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:41 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:105 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:108 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 #: ../../enterprise/godmode/services/services.service.php:973 @@ -970,19 +968,21 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups_form.php:93 #: ../../godmode/modules/manage_network_templates_form.php:180 #: ../../godmode/modules/manage_nc_groups.php:318 +#: ../../godmode/modules/manage_inventory_modules.php:349 #: ../../godmode/modules/manage_network_components_form.php:379 #: ../../godmode/modules/manage_network_components.php:937 +#: ../../godmode/modules/manage_inventory_modules_form.php:171 #: ../../godmode/modules/manage_network_templates.php:311 #: ../../godmode/groups/configure_group.php:279 #: ../../godmode/groups/configure_modu_group.php:86 #: ../../godmode/users/profile_list.php:463 -#: ../../godmode/users/configure_user.php:1660 +#: ../../godmode/users/configure_user.php:1723 #: ../../godmode/agentes/module_manager_editor.php:790 #: ../../godmode/agentes/planned_downtime.list.php:628 #: ../../godmode/agentes/planned_downtime.list.php:920 #: ../../godmode/agentes/agent_manager.php:1010 #: ../../godmode/agentes/configure_field.php:155 -#: ../../godmode/agentes/module_manager.php:220 +#: ../../godmode/agentes/module_manager.php:219 #: ../../godmode/netflow/nf_edit_form.php:272 #: ../../godmode/snmpconsole/snmp_alert.php:1142 #: ../../godmode/snmpconsole/snmp_alert.php:1514 @@ -991,10 +991,10 @@ msgstr "" #: ../../godmode/alerts/configure_alert_command.php:387 #: ../../godmode/alerts/alert_actions.php:471 #: ../../godmode/alerts/alert_list.list.php:975 -#: ../../godmode/alerts/alert_commands.php:831 +#: ../../godmode/alerts/alert_commands.php:832 #: ../../godmode/alerts/alert_templates.php:482 #: ../../godmode/alerts/configure_alert_action.php:402 -#: ../../godmode/alerts/alert_list.php:503 ../../godmode/setup/news.php:231 +#: ../../godmode/alerts/alert_list.php:521 ../../godmode/setup/news.php:231 #: ../../godmode/setup/gis.php:98 ../../godmode/setup/os.php:95 #: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:127 #: ../../godmode/reporting/create_container.php:333 @@ -1002,7 +1002,7 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:2285 #: ../../godmode/reporting/graph_builder.main.php:294 #: ../../godmode/events/event_responses.editor.php:219 -#: ../../godmode/events/event_edit_filter.php:722 +#: ../../godmode/events/event_edit_filter.php:781 #: ../../godmode/servers/plugin.php:575 ../../godmode/tag/edit_tag.php:281 #: ../../godmode/category/edit_category.php:205 #: ../../include/functions_visual_map_editor.php:884 @@ -1036,14 +1036,14 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:608 #: ../../enterprise/operation/services/massive/services.create.php:901 #: ../../godmode/groups/configure_group.php:230 -#: ../../godmode/groups/group_list.php:846 +#: ../../godmode/groups/group_list.php:851 #: ../../godmode/agentes/configurar_agente.php:433 #: ../../godmode/agentes/modificar_agente.php:820 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:259 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:262 #: ../../godmode/massive/massive_copy_modules.php:216 #: ../../godmode/alerts/configure_alert_command.php:60 #: ../../godmode/alerts/alert_actions.php:74 -#: ../../godmode/alerts/alert_commands.php:580 +#: ../../godmode/alerts/alert_commands.php:581 #: ../../godmode/alerts/alert_templates.php:131 #: ../../godmode/alerts/alert_templates.php:183 #: ../../godmode/alerts/alert_templates.php:206 @@ -1053,14 +1053,14 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:99 #: ../../godmode/alerts/configure_alert_template.php:123 #: ../../godmode/alerts/configure_alert_template.php:155 -#: ../../godmode/alerts/alert_list.php:501 -#: ../../godmode/alerts/alert_list.php:503 +#: ../../godmode/alerts/alert_list.php:519 +#: ../../godmode/alerts/alert_list.php:521 #: ../../mobile/include/functions_web.php:26 #: ../../mobile/operation/agents.php:98 ../../mobile/operation/agents.php:407 #: ../../mobile/operation/home.php:74 ../../mobile/operation/agent.php:355 #: ../../mobile/operation/alerts.php:194 #: ../../include/functions_reporting_html.php:2504 -#: ../../include/functions_reporting_html.php:5565 +#: ../../include/functions_reporting_html.php:5584 #: ../../include/functions_treeview.php:405 #: ../../include/functions_reports.php:843 #: ../../include/functions_reports.php:847 @@ -1069,7 +1069,7 @@ msgstr "" #: ../../include/class/AgentsAlerts.class.php:542 #: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 #: ../../operation/agentes/estado_agente.php:766 -#: ../../operation/agentes/ver_agente.php:1439 +#: ../../operation/agentes/ver_agente.php:1445 msgid "Alerts" msgstr "" @@ -1080,7 +1080,6 @@ msgstr "" #: ../../views/calendar/special_days_edit.php:80 #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_inventory.php:882 #: ../../enterprise/include/functions_reporting_pdf.php:718 #: ../../enterprise/include/functions_reporting_csv.php:826 #: ../../enterprise/include/functions_reporting_csv.php:882 @@ -1091,8 +1090,6 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:2182 #: ../../enterprise/include/functions_reporting.php:2217 #: ../../enterprise/include/functions_reporting.php:2235 -#: ../../enterprise/operation/agentes/agent_inventory.php:127 -#: ../../enterprise/operation/inventory/inventory.php:432 #: ../../extensions/insert_data.php:196 #: ../../godmode/reporting/reporting_builder.item_editor.php:2172 #: ../../mobile/operation/tactical.php:350 @@ -1105,13 +1102,16 @@ msgstr "" #: ../../include/functions_reporting_html.php:2789 #: ../../include/functions_reporting_html.php:2838 #: ../../include/functions_reporting_html.php:2911 -#: ../../include/functions_reporting_html.php:5907 -#: ../../include/functions.php:3073 ../../include/class/AuditLog.class.php:109 -#: ../../include/functions_reporting.php:4361 -#: ../../include/functions_reporting.php:4402 +#: ../../include/functions_reporting_html.php:5926 +#: ../../include/functions.php:3099 ../../include/functions_inventory.php:882 +#: ../../include/class/AuditLog.class.php:109 +#: ../../include/functions_reporting.php:4624 +#: ../../include/functions_reporting.php:4665 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:623 +#: ../../operation/agentes/agent_inventory.php:127 #: ../../operation/incidents/list_integriaims_incidents.php:371 -#: ../../operation/reporting/graph_viewer.php:348 +#: ../../operation/inventory/inventory.php:435 +#: ../../operation/reporting/graph_viewer.php:320 #: ../../general/logon_ok.php:251 msgid "Date" msgstr "" @@ -1262,7 +1262,7 @@ msgstr "" #: ../../enterprise/meta/advanced/collections.editor.php:223 #: ../../enterprise/meta/advanced/cron_main.php:469 #: ../../enterprise/meta/advanced/metasetup.setup.php:401 -#: ../../enterprise/meta/advanced/metasetup.performance.php:182 +#: ../../enterprise/meta/advanced/metasetup.performance.php:159 #: ../../enterprise/meta/event/custom_events.php:213 #: ../../enterprise/meta/include/functions_autoprovision.php:590 #: ../../enterprise/meta/include/functions_autoprovision.php:791 @@ -1270,16 +1270,12 @@ msgstr "" #: ../../enterprise/extensions/vmware/vmware_view.php:1257 #: ../../enterprise/extensions/vmware/vmware_view.php:1762 #: ../../enterprise/godmode/modules/configure_local_component.php:689 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:319 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:169 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:475 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:793 #: ../../enterprise/godmode/agentes/collection_manager.php:153 #: ../../enterprise/godmode/agentes/collection_manager.php:154 #: ../../enterprise/godmode/agentes/collection_manager.php:268 #: ../../enterprise/godmode/agentes/collection_manager.php:269 -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/agentes/inventory_manager.php:254 #: ../../enterprise/godmode/agentes/collections.data.php:107 #: ../../enterprise/godmode/agentes/collections.data.php:264 #: ../../enterprise/godmode/agentes/collections.data.php:342 @@ -1296,12 +1292,12 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_plugins.php:228 #: ../../enterprise/godmode/policies/configure_policy.php:141 #: ../../enterprise/godmode/policies/policy_modules.php:429 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:373 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:375 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:261 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:338 #: ../../enterprise/godmode/policies/policy_collections.php:222 #: ../../enterprise/godmode/policies/policy_collections.php:294 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:102 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:105 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 @@ -1309,8 +1305,8 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 #: ../../enterprise/godmode/services/services.service.php:980 #: ../../enterprise/godmode/setup/setup_history.php:669 -#: ../../enterprise/godmode/setup/setup.php:354 -#: ../../enterprise/godmode/setup/setup.php:555 +#: ../../enterprise/godmode/setup/setup.php:270 +#: ../../enterprise/godmode/setup/setup.php:478 #: ../../enterprise/godmode/setup/setup_module_library.php:62 #: ../../enterprise/godmode/setup/setup_metaconsole.php:245 #: ../../enterprise/godmode/setup/setup_log_collector.php:74 @@ -1326,8 +1322,8 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:177 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1359 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1425 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1385 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1451 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 #: ../../enterprise/godmode/servers/manage_export_form.php:136 #: ../../enterprise/include/ajax/log_viewer.ajax.php:99 @@ -1352,15 +1348,19 @@ msgstr "" #: ../../extensions/files_repo/files_repo_form.php:99 #: ../../godmode/modules/manage_nc_groups_form.php:90 #: ../../godmode/modules/manage_network_templates_form.php:178 +#: ../../godmode/modules/manage_inventory_modules.php:319 #: ../../godmode/modules/manage_network_components_form.php:375 +#: ../../godmode/modules/manage_inventory_modules_form.php:169 #: ../../godmode/groups/configure_group.php:276 #: ../../godmode/groups/configure_modu_group.php:83 #: ../../godmode/update_manager/update_manager.setup.php:382 -#: ../../godmode/users/configure_profile.php:408 -#: ../../godmode/users/configure_user.php:1667 -#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/users/configure_profile.php:409 +#: ../../godmode/users/configure_user.php:1730 +#: ../../godmode/agentes/agent_template.php:261 #: ../../godmode/agentes/status_monitor_custom_fields.php:206 #: ../../godmode/agentes/module_manager_editor.php:772 +#: ../../godmode/agentes/inventory_manager.php:183 +#: ../../godmode/agentes/inventory_manager.php:254 #: ../../godmode/agentes/agent_conf_gis.php:135 #: ../../godmode/agentes/planned_downtime.list.php:808 #: ../../godmode/agentes/planned_downtime.list.php:853 @@ -1386,15 +1386,15 @@ msgstr "" #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/setup/setup_netflow.php:81 #: ../../godmode/setup/setup_visuals.php:1604 -#: ../../godmode/setup/setup_general.php:638 -#: ../../godmode/setup/performance.php:758 +#: ../../godmode/setup/setup_general.php:719 +#: ../../godmode/setup/performance.php:741 #: ../../godmode/reporting/visual_console_builder.data.php:232 #: ../../godmode/reporting/create_container.php:330 #: ../../godmode/reporting/visual_console_builder.elements.php:761 #: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:294 #: ../../godmode/events/event_responses.editor.php:227 -#: ../../godmode/events/event_edit_filter.php:719 +#: ../../godmode/events/event_edit_filter.php:778 #: ../../godmode/events/custom_events.php:188 #: ../../godmode/servers/modificar_server.php:100 #: ../../godmode/servers/plugin.php:198 ../../godmode/servers/plugin.php:577 @@ -1408,9 +1408,9 @@ msgstr "" #: ../../include/class/CredentialStore.class.php:1673 #: ../../include/class/ModuleTemplates.class.php:1013 #: ../../include/class/ExternalTools.class.php:392 -#: ../../include/functions_events.php:3392 -#: ../../include/functions_events.php:3471 -#: ../../operation/users/user_edit.php:802 +#: ../../include/functions_events.php:3371 +#: ../../include/functions_events.php:3450 +#: ../../operation/users/user_edit.php:876 #: ../../operation/agentes/datos_agente.php:218 #: ../../operation/network/network_report.php:132 #: ../../operation/incidents/configure_integriaims_incident.php:378 @@ -1429,6 +1429,7 @@ msgstr "" #: ../../enterprise/godmode/services/services.service.php:1038 #: ../../enterprise/godmode/services/services.elements.php:887 #: ../../enterprise/godmode/services/services.elements.php:898 +#: ../../enterprise/godmode/setup/setup.php:543 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 #: ../../enterprise/include/functions_HA_cluster.php:492 @@ -1474,9 +1475,9 @@ msgstr "" #: ../../include/class/AgentWizard.class.php:6216 #: ../../operation/agentes/pandora_networkmap.editor.php:634 #: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:551 -#: ../../operation/snmpconsole/snmp_browser.php:631 -#: ../../operation/snmpconsole/snmp_browser.php:646 +#: ../../operation/snmpconsole/snmp_browser.php:549 +#: ../../operation/snmpconsole/snmp_browser.php:629 +#: ../../operation/snmpconsole/snmp_browser.php:644 #: ../../general/header.php:827 msgid "Cancel" msgstr "" @@ -1537,15 +1538,15 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:141 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:487 #: ../../enterprise/godmode/policies/policy_alerts.php:406 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:445 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:136 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:105 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:135 #: ../../enterprise/operation/agentes/policy_view.php:332 -#: ../../godmode/users/configure_user.php:1086 -#: ../../godmode/users/configure_user.php:1289 +#: ../../godmode/users/configure_user.php:1145 +#: ../../godmode/users/configure_user.php:1348 #: ../../godmode/agentes/module_manager_editor_common.php:650 #: ../../godmode/massive/massive_edit_users.php:243 #: ../../godmode/massive/massive_edit_users.php:274 @@ -1559,14 +1560,14 @@ msgstr "" #: ../../godmode/setup/setup_visuals.php:439 #: ../../godmode/setup/setup_visuals.php:458 #: ../../godmode/setup/setup_visuals.php:1204 -#: ../../godmode/events/event_edit_filter.php:425 +#: ../../godmode/events/event_edit_filter.php:435 #: ../../include/functions_ui.php:1240 #: ../../include/class/AgentsAlerts.class.php:928 #: ../../include/class/SnmpConsole.class.php:362 -#: ../../operation/users/user_edit.php:320 -#: ../../operation/users/user_edit.php:323 -#: ../../operation/users/user_edit.php:334 -#: ../../operation/users/user_edit.php:359 +#: ../../operation/users/user_edit.php:394 +#: ../../operation/users/user_edit.php:397 +#: ../../operation/users/user_edit.php:408 +#: ../../operation/users/user_edit.php:433 #: ../../operation/gis_maps/gis_map.php:106 msgid "Default" msgstr "" @@ -1574,63 +1575,63 @@ msgstr "" #: ../../views/calendar/special_days.php:224 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 #: ../../godmode/agentes/planned_downtime.editor.php:944 -#: ../../include/functions.php:1121 +#: ../../include/functions.php:1147 #: ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14437 +#: ../../include/functions_reporting.php:14723 msgid "Sun" msgstr "" #: ../../views/calendar/special_days.php:225 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:938 -#: ../../include/functions.php:1097 +#: ../../include/functions.php:1123 #: ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14407 +#: ../../include/functions_reporting.php:14693 msgid "Mon" msgstr "" #: ../../views/calendar/special_days.php:226 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:426 #: ../../godmode/agentes/planned_downtime.editor.php:939 -#: ../../include/functions.php:1101 +#: ../../include/functions.php:1127 #: ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14412 +#: ../../include/functions_reporting.php:14698 msgid "Tue" msgstr "" #: ../../views/calendar/special_days.php:227 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:427 #: ../../godmode/agentes/planned_downtime.editor.php:940 -#: ../../include/functions.php:1105 +#: ../../include/functions.php:1131 #: ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14417 +#: ../../include/functions_reporting.php:14703 msgid "Wed" msgstr "" #: ../../views/calendar/special_days.php:228 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:428 #: ../../godmode/agentes/planned_downtime.editor.php:941 -#: ../../include/functions.php:1109 +#: ../../include/functions.php:1135 #: ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14422 +#: ../../include/functions_reporting.php:14708 msgid "Thu" msgstr "" #: ../../views/calendar/special_days.php:229 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 #: ../../godmode/agentes/planned_downtime.editor.php:942 -#: ../../include/functions.php:1113 +#: ../../include/functions.php:1139 #: ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14427 +#: ../../include/functions_reporting.php:14713 msgid "Fri" msgstr "" #: ../../views/calendar/special_days.php:230 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 #: ../../godmode/agentes/planned_downtime.editor.php:943 -#: ../../include/functions.php:1117 +#: ../../include/functions.php:1143 #: ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14432 +#: ../../include/functions_reporting.php:14718 msgid "Sat" msgstr "" @@ -1761,8 +1762,8 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:527 #: ../../extensions/files_repo/files_repo_list.php:138 -#: ../../godmode/groups/group_list.php:917 -#: ../../godmode/groups/group_list.php:918 +#: ../../godmode/groups/group_list.php:922 +#: ../../godmode/groups/group_list.php:923 #: ../../godmode/users/profile_list.php:434 #: ../../godmode/users/user_list.php:856 #: ../../godmode/agentes/modificar_agente.php:801 @@ -1780,7 +1781,7 @@ msgstr "" #: ../../include/ajax/module.php:1123 #: ../../include/class/NetworkMap.class.php:3146 #: ../../include/class/CalendarManager.class.php:703 -#: ../../include/lib/ClusterViewer/ClusterManager.php:621 +#: ../../include/lib/ClusterViewer/ClusterManager.php:618 #: ../../operation/visual_console/view.php:447 #: ../../operation/agentes/estado_agente.php:874 #: ../../operation/agentes/estado_agente.php:876 @@ -1799,9 +1800,7 @@ msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:349 #: ../../enterprise/meta/monitoring/custom_fields_view.php:1155 #: ../../enterprise/meta/monitoring/wizard/wizard.php:143 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:322 #: ../../enterprise/godmode/modules/local_components.php:697 -#: ../../enterprise/godmode/agentes/inventory_manager.php:249 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 #: ../../enterprise/godmode/policies/policy_alerts.php:518 @@ -1814,15 +1813,15 @@ msgstr "" #: ../../enterprise/godmode/policies/policies.php:564 #: ../../enterprise/godmode/policies/policies.php:585 #: ../../enterprise/godmode/policies/policies.php:620 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:522 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:524 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:328 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:333 #: ../../enterprise/godmode/policies/policy_agents.php:401 -#: ../../enterprise/godmode/policies/policy_agents.php:724 -#: ../../enterprise/godmode/policies/policy_agents.php:1040 -#: ../../enterprise/godmode/policies/policy_agents.php:1155 -#: ../../enterprise/godmode/policies/policy_agents.php:1304 -#: ../../enterprise/godmode/policies/policy_agents.php:1519 +#: ../../enterprise/godmode/policies/policy_agents.php:760 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/godmode/policies/policy_agents.php:1191 +#: ../../enterprise/godmode/policies/policy_agents.php:1340 +#: ../../enterprise/godmode/policies/policy_agents.php:1555 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 #: ../../enterprise/godmode/setup/setup_skins.php:147 @@ -1835,7 +1834,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 #: ../../enterprise/godmode/reporting/mysql_builder.php:105 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1351 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 #: ../../enterprise/include/functions_tasklist.php:638 #: ../../enterprise/include/functions_tasklist.php:673 #: ../../enterprise/include/ajax/ipam.ajax.php:755 @@ -1862,30 +1861,32 @@ msgstr "" #: ../../update_manager_client/views/online.php:164 #: ../../extensions/files_repo/files_repo_list.php:146 #: ../../godmode/modules/manage_nc_groups.php:275 +#: ../../godmode/modules/manage_inventory_modules.php:322 #: ../../godmode/modules/manage_network_components.php:867 #: ../../godmode/modules/manage_network_templates.php:274 #: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/groups/group_list.php:926 +#: ../../godmode/groups/group_list.php:931 #: ../../godmode/groups/modu_group_list.php:273 #: ../../godmode/groups/modu_group_list.php:276 #: ../../godmode/users/profile_list.php:439 -#: ../../godmode/users/configure_user.php:1875 -#: ../../godmode/users/configure_user.php:2172 -#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/users/configure_user.php:1940 +#: ../../godmode/users/configure_user.php:2237 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/inventory_manager.php:249 #: ../../godmode/agentes/modificar_agente.php:924 #: ../../godmode/agentes/planned_downtime.editor.php:1301 #: ../../godmode/agentes/fields_manager.php:158 #: ../../godmode/agentes/agent_manager.php:237 #: ../../godmode/agentes/module_manager_editor_common.php:233 -#: ../../godmode/agentes/module_manager.php:1221 -#: ../../godmode/agentes/module_manager.php:1235 -#: ../../godmode/agentes/module_manager.php:1260 -#: ../../godmode/agentes/module_manager.php:1283 -#: ../../godmode/agentes/module_manager.php:1308 +#: ../../godmode/agentes/module_manager.php:1226 +#: ../../godmode/agentes/module_manager.php:1240 +#: ../../godmode/agentes/module_manager.php:1265 +#: ../../godmode/agentes/module_manager.php:1288 +#: ../../godmode/agentes/module_manager.php:1313 #: ../../godmode/netflow/nf_item_list.php:262 #: ../../godmode/netflow/nf_edit.php:195 #: ../../godmode/snmpconsole/snmp_alert.php:1308 -#: ../../godmode/snmpconsole/snmp_alert.php:1641 +#: ../../godmode/snmpconsole/snmp_alert.php:1646 #: ../../godmode/snmpconsole/snmp_filters.php:301 #: ../../godmode/snmpconsole/snmp_filters.php:312 #: ../../godmode/massive/massive_operations.php:374 @@ -1894,8 +1895,8 @@ msgstr "" #: ../../godmode/massive/massive_enable_disable_alerts.php:227 #: ../../godmode/alerts/alert_actions.php:424 #: ../../godmode/alerts/alert_list.list.php:1130 -#: ../../godmode/alerts/alert_commands.php:803 -#: ../../godmode/alerts/alert_commands.php:806 +#: ../../godmode/alerts/alert_commands.php:804 +#: ../../godmode/alerts/alert_commands.php:807 #: ../../godmode/alerts/alert_templates.php:437 #: ../../godmode/setup/news.php:290 ../../godmode/setup/links.php:160 #: ../../godmode/reporting/create_container.php:682 @@ -1914,7 +1915,7 @@ msgstr "" #: ../../godmode/servers/plugin.php:864 ../../godmode/tag/tag.php:395 #: ../../godmode/category/category.php:192 #: ../../godmode/category/category.php:211 -#: ../../include/functions_profile.php:299 +#: ../../include/functions_profile.php:312 #: ../../include/class/ConfigPEN.class.php:666 #: ../../include/class/SatelliteAgent.class.php:1166 #: ../../include/class/SatelliteAgent.class.php:1214 @@ -1922,8 +1923,8 @@ msgstr "" #: ../../include/class/TreeGroupEdition.class.php:166 #: ../../include/class/CredentialStore.class.php:1715 #: ../../include/class/SnmpConsole.class.php:499 -#: ../../include/class/SnmpConsole.class.php:1273 -#: ../../include/class/SnmpConsole.class.php:1300 +#: ../../include/class/SnmpConsole.class.php:1274 +#: ../../include/class/SnmpConsole.class.php:1301 #: ../../include/class/ModuleTemplates.class.php:919 #: ../../include/class/ModuleTemplates.class.php:934 #: ../../include/class/WelcomeWindow.class.php:171 @@ -1933,13 +1934,13 @@ msgstr "" #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3526 -#: ../../operation/users/user_edit.php:1193 +#: ../../include/functions_events.php:3505 +#: ../../operation/users/user_edit.php:1267 #: ../../operation/agentes/pandora_networkmap.editor.php:631 #: ../../operation/agentes/pandora_networkmap.php:811 #: ../../operation/messages/message_list.php:272 #: ../../operation/messages/message_list.php:275 -#: ../../operation/snmpconsole/snmp_browser.php:643 +#: ../../operation/snmpconsole/snmp_browser.php:641 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 #: ../../operation/incidents/list_integriaims_incidents.php:554 msgid "Are you sure?" @@ -1954,8 +1955,9 @@ msgstr "" #: ../../enterprise/include/functions_ui.php:168 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4349 #: ../../godmode/alerts/configure_alert_template.php:1548 -#: ../../godmode/events/event_edit_filter.php:583 -#: ../../godmode/events/event_edit_filter.php:636 +#: ../../godmode/events/event_edit_filter.php:593 +#: ../../godmode/events/event_edit_filter.php:646 +#: ../../include/functions_ui.php:6936 ../../include/functions_ui.php:6984 #: ../../operation/events/events.php:1246 #: ../../operation/events/events.php:1318 msgid "Remove" @@ -1979,7 +1981,6 @@ msgstr "" #: ../../enterprise/include/class/SAPView.class.php:155 #: ../../enterprise/include/class/SAPView.class.php:199 #: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/inventory/inventory.php:146 #: ../../enterprise/operation/services/massive/services.delete.php:42 #: ../../enterprise/operation/services/massive/services.create.php:595 #: ../../enterprise/operation/services/massive/service.delete.elements.php:105 @@ -2002,12 +2003,13 @@ msgstr "" #: ../../operation/agentes/interface_view.php:72 #: ../../operation/agentes/status_monitor.php:104 #: ../../operation/agentes/group_view.php:98 -#: ../../operation/agentes/ver_agente.php:1927 -#: ../../operation/agentes/tactical.php:78 +#: ../../operation/agentes/ver_agente.php:1945 +#: ../../operation/agentes/tactical.php:79 #: ../../operation/snmpconsole/snmp_statistics.php:98 #: ../../operation/snmpconsole/snmp_browser.php:86 #: ../../operation/snmpconsole/snmp_mib_uploader.php:56 -#: ../../operation/menu.php:33 ../../operation/menu.php:160 +#: ../../operation/menu.php:33 ../../operation/menu.php:164 +#: ../../operation/inventory/inventory.php:149 #: ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "" @@ -2045,14 +2047,15 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:64 #: ../../godmode/modules/manage_network_components.php:753 #: ../../godmode/update_manager/update_manager.history.php:41 -#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/agent_template.php:237 #: ../../godmode/agentes/modificar_agente.php:650 #: ../../godmode/agentes/planned_downtime.list.php:659 #: ../../godmode/agentes/planned_downtime.editor.php:856 #: ../../godmode/agentes/module_manager_editor_common.php:288 #: ../../godmode/agentes/module_manager_editor_common.php:401 #: ../../godmode/agentes/module_manager_editor_common.php:1319 -#: ../../godmode/agentes/module_manager.php:892 +#: ../../godmode/agentes/module_manager.php:201 +#: ../../godmode/agentes/module_manager.php:893 #: ../../godmode/alerts/alert_templates.php:37 #: ../../godmode/alerts/alert_templates.php:302 #: ../../godmode/alerts/alert_templates.php:387 @@ -2083,7 +2086,7 @@ msgstr "" #: ../../include/functions_reporting_html.php:1323 #: ../../include/functions_reporting_html.php:2552 #: ../../include/functions_reporting_html.php:3614 -#: ../../include/functions_reporting_html.php:5384 +#: ../../include/functions_reporting_html.php:5403 #: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:990 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 #: ../../include/functions_reports.php:1074 @@ -2098,9 +2101,9 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 #: ../../include/functions_events.php:2524 -#: ../../include/functions_events.php:4777 +#: ../../include/functions_events.php:4756 #: ../../operation/agentes/estado_agente.php:757 -#: ../../operation/agentes/ver_agente.php:1165 +#: ../../operation/agentes/ver_agente.php:1171 #: ../../operation/netflow/nf_live_view.php:319 #: ../../operation/incidents/configure_integriaims_incident.php:234 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 @@ -2109,7 +2112,7 @@ msgid "Type" msgstr "" #: ../../views/cluster/list.php:62 -#: ../../include/functions_reporting_html.php:5819 +#: ../../include/functions_reporting_html.php:5838 #: ../../operation/agentes/pandora_networkmap.php:715 msgid "Nodes" msgstr "" @@ -2132,8 +2135,8 @@ msgstr "" #: ../../enterprise/godmode/policies/policies.php:409 #: ../../enterprise/godmode/policies/policy_collections.php:172 #: ../../enterprise/godmode/policies/policy_collections.php:266 -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 +#: ../../enterprise/godmode/policies/policy_agents.php:888 +#: ../../enterprise/godmode/policies/policy_agents.php:1404 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125 #: ../../enterprise/godmode/admin_access_logs.php:50 #: ../../enterprise/godmode/servers/HA_cluster.php:175 @@ -2163,7 +2166,7 @@ msgstr "" #: ../../godmode/agentes/status_monitor_custom_fields.php:97 #: ../../godmode/agentes/status_monitor_custom_fields.php:148 #: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/agentes/module_manager.php:905 +#: ../../godmode/agentes/module_manager.php:906 #: ../../godmode/massive/massive_copy_modules.php:121 #: ../../godmode/massive/massive_copy_modules.php:281 #: ../../godmode/massive/massive_delete_modules.php:415 @@ -2199,7 +2202,7 @@ msgstr "" #: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650 #: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963 #: ../../mobile/operation/events.php:964 -#: ../../include/functions_reporting_html.php:551 +#: ../../include/functions_reporting_html.php:552 #: ../../include/functions_reporting_html.php:1050 #: ../../include/functions_reporting_html.php:1059 #: ../../include/functions_reporting_html.php:1313 @@ -2210,7 +2213,7 @@ msgstr "" #: ../../include/functions_reporting_html.php:2913 #: ../../include/functions_reporting_html.php:3568 #: ../../include/functions_reporting_html.php:3621 -#: ../../include/functions_reporting_html.php:5197 +#: ../../include/functions_reporting_html.php:5216 #: ../../include/ajax/alert_list.ajax.php:296 #: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:993 #: ../../include/ajax/custom_fields.php:416 @@ -2227,7 +2230,7 @@ msgstr "" #: ../../include/functions_events.php:204 #: ../../include/functions_events.php:259 #: ../../include/functions_events.php:2542 -#: ../../include/functions_events.php:4822 ../../operation/search_agents.php:56 +#: ../../include/functions_events.php:4801 ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:275 #: ../../operation/agentes/estado_agente.php:763 #: ../../operation/agentes/interface_view.functions.php:497 @@ -2261,7 +2264,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 #: ../../enterprise/include/class/Omnishell.class.php:814 #: ../../enterprise/include/class/Omnishell.class.php:893 -#: ../../include/ajax/events.php:786 ../../include/functions_html.php:1244 +#: ../../include/ajax/events.php:787 ../../include/functions_html.php:1244 #: ../../include/functions_html.php:1397 #: ../../include/functions_snmp_browser.php:1486 msgid "Filter group" @@ -2284,7 +2287,7 @@ msgstr "" msgid "Edit this cluster" msgstr "" -#: ../../views/cluster/view.php:160 ../../views/cluster/view.php:162 +#: ../../views/cluster/view.php:161 ../../views/cluster/view.php:163 #: ../../enterprise/meta/include/functions_wizard_meta.php:240 #: ../../enterprise/meta/include/functions_wizard_meta.php:525 #: ../../enterprise/meta/include/functions_wizard_meta.php:597 @@ -2298,8 +2301,8 @@ msgstr "" #: ../../enterprise/meta/agentsearch.php:265 #: ../../enterprise/godmode/modules/configure_local_component.php:471 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 -#: ../../enterprise/godmode/policies/policy_agents.php:1736 -#: ../../enterprise/godmode/policies/policy_agents.php:1751 +#: ../../enterprise/godmode/policies/policy_agents.php:1775 +#: ../../enterprise/godmode/policies/policy_agents.php:1790 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701 #: ../../enterprise/godmode/setup/edit_skin.php:276 #: ../../enterprise/include/class/VMware.app.php:889 @@ -2308,7 +2311,7 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3257 #: ../../enterprise/include/lib/NetworkManager.php:190 #: ../../enterprise/include/functions_policies.php:4783 -#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/groups/group_list.php:913 #: ../../godmode/agentes/modificar_agente.php:760 #: ../../godmode/agentes/module_manager_editor_common.php:257 #: ../../godmode/agentes/module_manager_editor_common.php:911 @@ -2325,7 +2328,7 @@ msgstr "" #: ../../include/functions_treeview.php:72 #: ../../include/functions_treeview.php:613 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6673 +#: ../../include/functions_reporting.php:6888 #: ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:99 #: ../../operation/agentes/estado_generalagente.php:101 @@ -2333,7 +2336,7 @@ msgstr "" msgid "Disabled" msgstr "" -#: ../../views/cluster/view.php:166 ../../views/cluster/view.php:168 +#: ../../views/cluster/view.php:167 ../../views/cluster/view.php:169 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 #: ../../enterprise/godmode/services/services.service.php:779 #: ../../enterprise/operation/services/massive/services.create.php:843 @@ -2342,7 +2345,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:862 #: ../../godmode/agentes/agent_manager.php:692 #: ../../godmode/agentes/module_manager_editor_common.php:1070 -#: ../../godmode/agentes/module_manager.php:1027 +#: ../../godmode/agentes/module_manager.php:1028 #: ../../godmode/massive/massive_edit_agents.php:1108 #: ../../godmode/massive/massive_edit_modules.php:1104 #: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1141 @@ -2353,7 +2356,7 @@ msgstr "" msgid "Quiet" msgstr "" -#: ../../views/cluster/view.php:176 ../../views/cluster/view.php:184 +#: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 #: ../../godmode/agentes/modificar_agente.php:782 #: ../../operation/search_agents.php:111 #: ../../operation/agentes/estado_agente.php:839 @@ -2362,17 +2365,15 @@ msgstr "" msgid "Agent in scheduled downtime" msgstr "" -#: ../../views/cluster/view.php:221 +#: ../../views/cluster/view.php:222 msgid "Force cluster status calculation" msgstr "" -#: ../../views/cluster/view.php:251 ../../enterprise/meta/agentsearch.php:137 +#: ../../views/cluster/view.php:252 ../../enterprise/meta/agentsearch.php:137 #: ../../enterprise/godmode/modules/configure_local_component.php:179 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:280 #: ../../enterprise/godmode/modules/local_components.php:564 #: ../../enterprise/godmode/modules/local_components.php:589 #: ../../enterprise/godmode/modules/local_components.php:625 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:107 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/include/class/DeploymentCenter.class.php:756 @@ -2384,6 +2385,8 @@ msgstr "" #: ../../enterprise/include/class/AgentRepository.class.php:731 #: ../../enterprise/operation/agentes/tag_view.php:602 #: ../../enterprise/tools/ipam/ipam_network.php:399 +#: ../../godmode/modules/manage_inventory_modules.php:280 +#: ../../godmode/modules/manage_inventory_modules_form.php:107 #: ../../godmode/agentes/modificar_agente.php:649 #: ../../godmode/agentes/planned_downtime.editor.php:1208 #: ../../godmode/agentes/agent_manager.php:401 @@ -2396,7 +2399,7 @@ msgstr "" #: ../../include/class/Diagnostics.class.php:749 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 #: ../../include/lib/Dashboard/Widgets/tree_view.php:332 -#: ../../include/functions_events.php:4245 ../../operation/search_agents.php:44 +#: ../../include/functions_events.php:4224 ../../operation/search_agents.php:44 #: ../../operation/search_agents.php:50 ../../operation/tree.php:78 #: ../../operation/tree.php:146 ../../operation/agentes/estado_agente.php:748 #: ../../operation/agentes/estado_generalagente.php:194 @@ -2404,12 +2407,12 @@ msgstr "" msgid "OS" msgstr "" -#: ../../views/cluster/view.php:271 +#: ../../views/cluster/view.php:272 #: ../../operation/agentes/estado_generalagente.php:212 msgid "IP address" msgstr "" -#: ../../views/cluster/view.php:276 ../../views/cluster/view.php:291 +#: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 #: ../../enterprise/meta/advanced/servers.build_table.php:100 #: ../../enterprise/meta/advanced/servers.build_table.php:101 #: ../../enterprise/meta/advanced/servers.build_table.php:107 @@ -2441,58 +2444,58 @@ msgstr "" #: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 #: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 #: ../../include/functions_servers.php:1359 -#: ../../include/functions_reporting_html.php:655 -#: ../../include/functions_reporting_html.php:658 -#: ../../include/functions_reporting_html.php:5458 -#: ../../include/functions_reporting_html.php:5511 -#: ../../include/functions.php:1144 ../../include/functions.php:1150 -#: ../../include/functions.php:1154 ../../include/ajax/module.php:1181 +#: ../../include/functions_reporting_html.php:656 +#: ../../include/functions_reporting_html.php:659 +#: ../../include/functions_reporting_html.php:5477 +#: ../../include/functions_reporting_html.php:5530 +#: ../../include/functions.php:1170 ../../include/functions.php:1176 +#: ../../include/functions.php:1180 ../../include/ajax/module.php:1181 #: ../../include/functions_treeview.php:162 #: ../../include/functions_treeview.php:327 -#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2615 -#: ../../include/functions_ui.php:2623 ../../include/functions_db.php:241 -#: ../../include/class/SnmpConsole.class.php:827 -#: ../../include/class/SnmpConsole.class.php:845 -#: ../../include/functions_events.php:3552 -#: ../../include/functions_events.php:3686 -#: ../../include/functions_events.php:3706 -#: ../../include/functions_events.php:3715 -#: ../../include/functions_events.php:3724 -#: ../../include/functions_events.php:3725 -#: ../../include/functions_events.php:3737 -#: ../../include/functions_events.php:3797 -#: ../../include/functions_events.php:3830 -#: ../../include/functions_events.php:3896 -#: ../../include/functions_events.php:3913 -#: ../../include/functions_events.php:3920 -#: ../../include/functions_events.php:3986 -#: ../../include/functions_events.php:4078 -#: ../../include/functions_events.php:4202 -#: ../../include/functions_events.php:4241 -#: ../../include/functions_events.php:4255 -#: ../../include/functions_events.php:4260 -#: ../../include/functions_events.php:4290 -#: ../../include/functions_events.php:4376 -#: ../../include/functions_events.php:4456 -#: ../../include/functions_events.php:4466 -#: ../../include/functions_events.php:4683 -#: ../../include/functions_events.php:4757 -#: ../../include/functions_events.php:4851 -#: ../../include/functions_events.php:4880 -#: ../../include/functions_events.php:4895 -#: ../../include/functions_events.php:4905 -#: ../../include/functions_events.php:4915 -#: ../../include/functions_events.php:5355 -#: ../../include/functions_events.php:5369 -#: ../../include/functions_events.php:5374 -#: ../../include/functions_events.php:5377 -#: ../../include/functions_events.php:5385 -#: ../../include/functions_events.php:5394 -#: ../../include/functions_events.php:5406 -#: ../../include/functions_events.php:5459 -#: ../../include/functions_events.php:5486 -#: ../../include/functions_events.php:5511 -#: ../../include/functions_events.php:5555 +#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2619 +#: ../../include/functions_ui.php:2627 ../../include/functions_db.php:241 +#: ../../include/class/SnmpConsole.class.php:828 +#: ../../include/class/SnmpConsole.class.php:846 +#: ../../include/functions_events.php:3531 +#: ../../include/functions_events.php:3665 +#: ../../include/functions_events.php:3685 +#: ../../include/functions_events.php:3694 +#: ../../include/functions_events.php:3703 +#: ../../include/functions_events.php:3704 +#: ../../include/functions_events.php:3716 +#: ../../include/functions_events.php:3776 +#: ../../include/functions_events.php:3809 +#: ../../include/functions_events.php:3875 +#: ../../include/functions_events.php:3892 +#: ../../include/functions_events.php:3899 +#: ../../include/functions_events.php:3965 +#: ../../include/functions_events.php:4057 +#: ../../include/functions_events.php:4181 +#: ../../include/functions_events.php:4220 +#: ../../include/functions_events.php:4234 +#: ../../include/functions_events.php:4239 +#: ../../include/functions_events.php:4269 +#: ../../include/functions_events.php:4355 +#: ../../include/functions_events.php:4435 +#: ../../include/functions_events.php:4445 +#: ../../include/functions_events.php:4662 +#: ../../include/functions_events.php:4736 +#: ../../include/functions_events.php:4830 +#: ../../include/functions_events.php:4859 +#: ../../include/functions_events.php:4874 +#: ../../include/functions_events.php:4884 +#: ../../include/functions_events.php:4894 +#: ../../include/functions_events.php:5368 +#: ../../include/functions_events.php:5382 +#: ../../include/functions_events.php:5387 +#: ../../include/functions_events.php:5390 +#: ../../include/functions_events.php:5398 +#: ../../include/functions_events.php:5407 +#: ../../include/functions_events.php:5419 +#: ../../include/functions_events.php:5472 +#: ../../include/functions_events.php:5499 +#: ../../include/functions_events.php:5524 +#: ../../include/functions_events.php:5568 #: ../../operation/agentes/interface_view.functions.php:682 #: ../../operation/agentes/interface_view.functions.php:683 #: ../../operation/agentes/interface_view.functions.php:684 @@ -2508,22 +2511,22 @@ msgstr "" msgid "N/A" msgstr "" -#: ../../views/cluster/view.php:307 ../../include/functions_treeview.php:729 +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:724 #: ../../operation/agentes/estado_generalagente.php:225 #: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" msgstr "" -#: ../../views/cluster/view.php:312 +#: ../../views/cluster/view.php:313 msgid "Cluster agent" msgstr "" -#: ../../views/cluster/view.php:367 +#: ../../views/cluster/view.php:368 #: ../../operation/agentes/estado_generalagente.php:899 msgid "Events (Last 24h)" msgstr "" -#: ../../views/cluster/view.php:439 ../../operation/agentes/stat_win.php:451 +#: ../../views/cluster/view.php:440 ../../operation/agentes/stat_win.php:451 #: ../../operation/agentes/interface_traffic_graph_win.php:278 msgid "Reload" msgstr "" @@ -2576,6 +2579,10 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 #: ../../enterprise/godmode/services/services.elements.php:886 #: ../../enterprise/godmode/services/services.elements.php:897 +#: ../../enterprise/godmode/setup/setup.php:544 +#: ../../enterprise/godmode/setup/setup.php:559 +#: ../../enterprise/godmode/setup/setup.php:566 +#: ../../enterprise/godmode/setup/setup.php:575 #: ../../enterprise/include/class/Omnishell.class.php:1501 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3052 #: ../../enterprise/include/lib/Metaconsole/Node.php:406 @@ -2587,8 +2594,8 @@ msgstr "" #: ../../godmode/snmpconsole/snmp_alert.php:1548 #: ../../godmode/snmpconsole/snmp_alert.php:1563 #: ../../godmode/massive/massive_edit_agents.php:1043 -#: ../../include/functions_config.php:1302 -#: ../../include/functions_config.php:3293 +#: ../../include/functions_config.php:1283 +#: ../../include/functions_config.php:3269 #: ../../include/class/SatelliteAgent.class.php:1290 #: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 #: ../../operation/gis_maps/render_view.php:166 @@ -2630,7 +2637,7 @@ msgstr "" #: ../../operation/visual_console/public_view.php:123 #: ../../operation/agentes/pandora_networkmap.editor.php:455 #: ../../operation/gis_maps/render_view.php:160 -#: ../../operation/reporting/graph_viewer.php:399 +#: ../../operation/reporting/graph_viewer.php:371 #: ../../operation/events/events.php:1384 ../../general/login_page.php:75 #: ../../general/login_page.php:318 msgid "Refresh" @@ -2649,7 +2656,7 @@ msgstr "" #: ../../views/dashboard/header.php:278 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 #: ../../godmode/agentes/planned_downtime.editor.php:60 -#: ../../godmode/alerts/alert_list.php:501 +#: ../../godmode/alerts/alert_list.php:519 #: ../../godmode/category/category.php:89 ../../include/functions_html.php:1901 #: ../../include/functions_html.php:1902 ../../include/functions_html.php:2012 #: ../../include/functions_html.php:2013 ../../include/functions_html.php:2190 @@ -2687,8 +2694,8 @@ msgstr "" #: ../../godmode/modules/manage_network_components.php:555 #: ../../godmode/users/profile_list.php:133 #: ../../godmode/users/user_list.php:344 ../../godmode/users/user_list.php:400 -#: ../../godmode/users/configure_user.php:152 -#: ../../godmode/users/configure_user.php:172 +#: ../../godmode/users/configure_user.php:148 +#: ../../godmode/users/configure_user.php:168 #: ../../godmode/agentes/planned_downtime.list.php:279 #: ../../godmode/netflow/nf_item_list.php:120 #: ../../godmode/netflow/nf_item_list.php:148 @@ -2699,7 +2706,7 @@ msgstr "" #: ../../godmode/massive/massive_delete_modules.php:162 #: ../../godmode/massive/massive_delete_alerts.php:201 #: ../../godmode/alerts/alert_actions.php:205 -#: ../../godmode/alerts/alert_commands.php:690 +#: ../../godmode/alerts/alert_commands.php:691 #: ../../godmode/alerts/alert_templates.php:252 #: ../../godmode/alerts/alert_list.php:239 #: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:120 @@ -2726,8 +2733,8 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:256 #: ../../enterprise/godmode/policies/policy_alerts.php:302 #: ../../enterprise/godmode/policies/policy_modules.php:1318 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:147 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:174 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:149 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:176 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:166 #: ../../enterprise/godmode/policies/policy_collections.php:100 #: ../../enterprise/godmode/policies/policy_agents.php:104 @@ -2743,11 +2750,11 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 #: ../../extensions/files_repo.php:184 #: ../../godmode/modules/manage_network_components.php:556 -#: ../../godmode/users/configure_user.php:153 +#: ../../godmode/users/configure_user.php:149 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:206 -#: ../../godmode/alerts/alert_commands.php:691 +#: ../../godmode/alerts/alert_commands.php:692 #: ../../godmode/alerts/alert_templates.php:253 #: ../../godmode/alerts/alert_list.php:240 #: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:121 @@ -2784,7 +2791,7 @@ msgstr "" #: ../../include/class/AgentsAlerts.class.php:822 #: ../../operation/heatmap.php:87 #: ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2327 +#: ../../operation/agentes/pandora_networkmap.view.php:2331 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 #: ../../operation/events/events.php:1427 @@ -2825,12 +2832,9 @@ msgstr "" #: ../../enterprise/meta/include/functions_autoprovision.php:685 #: ../../enterprise/meta/include/functions_autoprovision.php:686 #: ../../enterprise/meta/include/functions_wizard_meta.php:395 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:323 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:338 #: ../../enterprise/godmode/modules/local_components.php:701 #: ../../enterprise/godmode/modules/local_components.php:718 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 -#: ../../enterprise/godmode/agentes/inventory_manager.php:250 #: ../../enterprise/godmode/agentes/plugins_manager.php:196 #: ../../enterprise/godmode/agentes/plugins_manager.php:281 #: ../../enterprise/godmode/policies/policy_plugins.php:188 @@ -2841,10 +2845,10 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_queue.php:675 #: ../../enterprise/godmode/policies/policy_queue.php:722 #: ../../enterprise/godmode/policies/policies.php:595 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:559 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:561 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 -#: ../../enterprise/godmode/policies/policy_agents.php:1083 -#: ../../enterprise/godmode/policies/policy_agents.php:1545 +#: ../../enterprise/godmode/policies/policy_agents.php:1119 +#: ../../enterprise/godmode/policies/policy_agents.php:1581 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238 #: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148 @@ -2893,18 +2897,21 @@ msgstr "" #: ../../godmode/modules/manage_network_templates_form.php:254 #: ../../godmode/modules/manage_nc_groups.php:276 #: ../../godmode/modules/manage_nc_groups.php:305 +#: ../../godmode/modules/manage_inventory_modules.php:323 +#: ../../godmode/modules/manage_inventory_modules.php:338 #: ../../godmode/modules/manage_network_components.php:871 #: ../../godmode/modules/manage_network_components.php:872 #: ../../godmode/modules/manage_network_components.php:901 #: ../../godmode/modules/manage_network_templates.php:289 #: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:937 -#: ../../godmode/groups/group_list.php:938 +#: ../../godmode/groups/group_list.php:942 +#: ../../godmode/groups/group_list.php:943 #: ../../godmode/groups/modu_group_list.php:254 #: ../../godmode/extensions.php:257 ../../godmode/extensions.php:259 #: ../../godmode/users/profile_list.php:443 #: ../../godmode/users/user_list.php:885 -#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/inventory_manager.php:250 #: ../../godmode/agentes/planned_downtime.list.php:671 #: ../../godmode/agentes/planned_downtime.list.php:821 #: ../../godmode/agentes/planned_downtime.editor.php:1254 @@ -2912,8 +2919,8 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:1307 #: ../../godmode/agentes/fields_manager.php:158 #: ../../godmode/agentes/module_manager_editor_common.php:1321 -#: ../../godmode/agentes/module_manager.php:910 -#: ../../godmode/agentes/module_manager.php:1288 +#: ../../godmode/agentes/module_manager.php:911 +#: ../../godmode/agentes/module_manager.php:1293 #: ../../godmode/netflow/nf_item_list.php:263 #: ../../godmode/netflow/nf_item_list.php:273 #: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208 @@ -2959,14 +2966,14 @@ msgstr "" #: ../../include/class/CredentialStore.class.php:1717 #: ../../include/class/SnmpConsole.class.php:496 #: ../../include/class/SnmpConsole.class.php:547 -#: ../../include/class/SnmpConsole.class.php:900 -#: ../../include/class/SnmpConsole.class.php:912 +#: ../../include/class/SnmpConsole.class.php:901 +#: ../../include/class/SnmpConsole.class.php:913 #: ../../include/class/ModuleTemplates.class.php:934 #: ../../include/class/ModuleTemplates.class.php:1212 #: ../../include/class/CalendarManager.class.php:737 #: ../../include/functions_container.php:191 #: ../../include/functions_container.php:325 -#: ../../include/lib/ClusterViewer/ClusterManager.php:637 +#: ../../include/lib/ClusterViewer/ClusterManager.php:634 #: ../../operation/visual_console/view.php:845 #: ../../operation/agentes/pandora_networkmap.php:721 #: ../../operation/agentes/pandora_networkmap.php:811 @@ -3004,7 +3011,7 @@ msgid "Please select widget" msgstr "" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../include/class/SnmpConsole.class.php:1538 +#: ../../include/class/SnmpConsole.class.php:1539 #: ../../operation/events/events.php:3082 msgid "Until next" msgstr "" @@ -3044,12 +3051,12 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../include/functions.php:3895 +#: ../../include/functions.php:3921 msgid "Previous" msgstr "" #: ../../views/dashboard/slides.php:218 -#: ../../enterprise/meta/general/main_menu.php:277 ../../operation/menu.php:437 +#: ../../enterprise/meta/general/main_menu.php:277 ../../operation/menu.php:441 msgid "Stop" msgstr "" @@ -3069,7 +3076,7 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:645 #: ../../enterprise/include/class/DB2.app.php:567 #: ../../enterprise/include/class/SAP.app.php:442 -#: ../../enterprise/include/class/Aws.cloud.php:1425 +#: ../../enterprise/include/class/Aws.cloud.php:1424 #: ../../enterprise/include/class/MySQL.app.php:589 #: ../../enterprise/include/class/Oracle.app.php:574 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 @@ -3117,7 +3124,7 @@ msgstr "" #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 #: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1258 ../../include/functions_events.php:3058 +#: ../../include/functions.php:1284 ../../include/functions_events.php:3037 msgid "Network configuration manager" msgstr "" @@ -3187,20 +3194,20 @@ msgid "connect using telnet" msgstr "" #: ../../enterprise/views/ncm/agent/manage.php:118 -#: ../../enterprise/meta/include/functions_meta.php:2101 +#: ../../enterprise/meta/include/functions_meta.php:2082 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 #: ../../enterprise/godmode/setup/setup_history.php:192 #: ../../enterprise/godmode/servers/manage_export_form.php:121 #: ../../enterprise/include/class/Azure.cloud.php:813 #: ../../enterprise/include/class/VMware.app.php:632 #: ../../enterprise/include/class/Aws.S3.php:574 -#: ../../enterprise/include/class/Aws.cloud.php:557 +#: ../../enterprise/include/class/Aws.cloud.php:556 #: ../../extensions/quick_shell.php:181 #: ../../godmode/modules/manage_network_components_form_network.php:53 #: ../../godmode/agentes/module_manager_editor_network.php:126 #: ../../godmode/massive/massive_edit_modules.php:1145 #: ../../godmode/servers/modificar_server.php:84 -#: ../../include/functions_config.php:1572 +#: ../../include/functions_config.php:1553 #: ../../include/class/AgentWizard.class.php:647 #: ../../include/functions_snmp_browser.php:714 msgid "Port" @@ -3279,7 +3286,7 @@ msgstr "" #: ../../enterprise/views/ncm/agent/details.php:90 #: ../../enterprise/include/class/CommandCenter.class.php:468 -#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226 +#: ../../extensions/api_checker.php:303 ../../extensions/api_checker.php:310 #: ../../include/functions_reporting_html.php:4225 #: ../../include/functions_reporting_html.php:4372 #: ../../include/functions_reporting_html.php:4714 @@ -3374,7 +3381,7 @@ msgstr "" #: ../../enterprise/operation/services/services.list.php:571 #: ../../enterprise/operation/services/services.table_services.php:162 #: ../../extensions/module_groups.php:52 -#: ../../godmode/groups/group_list.php:1064 +#: ../../godmode/groups/group_list.php:1069 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 @@ -3384,38 +3391,38 @@ msgstr "" #: ../../godmode/alerts/alert_list.builder.php:290 #: ../../godmode/reporting/reporting_builder.item_editor.php:3787 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 -#: ../../include/graphs/functions_flot.php:305 +#: ../../include/graphs/functions_flot.php:310 #: ../../include/functions_reporting_html.php:2473 #: ../../include/functions_reporting_html.php:2486 #: ../../include/functions_reporting_html.php:3468 #: ../../include/functions_reporting_html.php:3882 -#: ../../include/functions.php:1245 ../../include/functions.php:4133 +#: ../../include/functions.php:1271 ../../include/functions.php:4159 #: ../../include/ajax/module.php:1084 ../../include/functions_ui.php:549 #: ../../include/functions_ui.php:550 -#: ../../include/functions_visual_map.php:2455 -#: ../../include/functions_visual_map.php:2483 -#: ../../include/functions_visual_map.php:2501 -#: ../../include/functions_visual_map.php:2519 +#: ../../include/functions_visual_map.php:2457 +#: ../../include/functions_visual_map.php:2485 +#: ../../include/functions_visual_map.php:2503 +#: ../../include/functions_visual_map.php:2521 #: ../../include/functions_alerts.php:702 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:439 #: ../../include/functions_reports.php:557 ../../include/functions_maps.php:54 #: ../../include/functions_massive_operations.php:151 #: ../../include/functions_netflow.php:1865 -#: ../../include/functions_reporting.php:6453 +#: ../../include/functions_reporting.php:6668 #: ../../include/functions_filemanager.php:668 #: ../../include/lib/Dashboard/Widgets/tree_view.php:388 #: ../../include/lib/Dashboard/Widgets/tree_view.php:421 #: ../../include/lib/Dashboard/Widgets/tree_view.php:673 -#: ../../include/lib/ClusterViewer/ClusterManager.php:585 -#: ../../include/functions_events.php:3006 ../../operation/tree.php:215 +#: ../../include/lib/ClusterViewer/ClusterManager.php:582 +#: ../../include/functions_events.php:2985 ../../operation/tree.php:215 #: ../../operation/tree.php:272 ../../operation/tree.php:476 #: ../../operation/agentes/estado_agente.php:271 #: ../../operation/agentes/status_monitor.php:495 #: ../../operation/agentes/group_view.php:224 #: ../../operation/agentes/group_view.php:229 #: ../../operation/agentes/estado_monitores.php:526 -#: ../../operation/agentes/pandora_networkmap.view.php:1767 -#: ../../operation/agentes/tactical.php:181 +#: ../../operation/agentes/pandora_networkmap.view.php:1771 +#: ../../operation/agentes/tactical.php:182 #: ../../operation/events/events.php:785 ../../general/logon_ok.php:145 msgid "Unknown" msgstr "" @@ -3480,12 +3487,11 @@ msgstr "" #: ../../enterprise/meta/include/functions_alerts_meta.php:164 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:499 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:139 -#: ../../enterprise/godmode/agentes/inventory_manager.php:225 -#: ../../enterprise/godmode/agentes/collections.php:433 +#: ../../enterprise/godmode/agentes/collections.php:447 #: ../../enterprise/godmode/policies/policy_alerts.php:353 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:359 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:393 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:691 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:361 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:395 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:693 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:305 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 @@ -3500,13 +3506,14 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072 #: ../../enterprise/tools/ipam/ipam_ajax.php:532 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:689 -#: ../../godmode/groups/group_list.php:853 +#: ../../godmode/groups/group_list.php:858 +#: ../../godmode/agentes/inventory_manager.php:225 #: ../../godmode/agentes/modificar_agente.php:653 #: ../../godmode/agentes/planned_downtime.editor.php:1213 -#: ../../godmode/agentes/fields_manager.php:124 ../../godmode/menu.php:273 +#: ../../godmode/agentes/fields_manager.php:124 ../../godmode/menu.php:276 #: ../../godmode/alerts/alert_list.list.php:130 #: ../../godmode/alerts/alert_list.list.php:498 -#: ../../godmode/alerts/alert_commands.php:745 +#: ../../godmode/alerts/alert_commands.php:746 #: ../../godmode/alerts/alert_view.php:301 #: ../../godmode/alerts/alert_list.builder.php:96 #: ../../godmode/reporting/reporting_builder.item_editor.php:2064 @@ -3520,7 +3527,7 @@ msgstr "" #: ../../include/class/AgentsAlerts.class.php:285 #: ../../include/class/SnmpConsole.class.php:344 #: ../../include/class/SatelliteCollection.class.php:131 -#: ../../include/functions_reporting.php:3011 +#: ../../include/functions_reporting.php:3129 #: ../../include/functions_filemanager.php:607 msgid "Actions" msgstr "" @@ -3567,9 +3574,9 @@ msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251 #: ../../enterprise/godmode/agentes/manage_config_remote.php:65 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1353 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1379 #: ../../godmode/agentes/planned_downtime.list.php:661 -#: ../../godmode/menu.php:249 ../../godmode/setup/setup.php:330 +#: ../../godmode/menu.php:252 ../../godmode/setup/setup.php:330 #: ../../godmode/events/events.php:124 ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 #: ../../include/class/ConfigPEN.class.php:327 @@ -3633,9 +3640,9 @@ msgid "Customize script execution" msgstr "" #: ../../enterprise/views/ncm/agent/details.php:689 -#: ../../include/ajax/events.php:2103 +#: ../../include/ajax/events.php:2114 #: ../../include/class/ExternalTools.class.php:581 -#: ../../include/functions_events.php:3578 +#: ../../include/functions_events.php:3557 msgid "Execute" msgstr "" @@ -3651,8 +3658,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:7974 #: ../../enterprise/include/functions_reporting.php:8002 #: ../../enterprise/include/functions_reporting.php:8073 -#: ../../godmode/agentes/configurar_agente.php:751 ../../godmode/menu.php:168 -#: ../../godmode/menu.php:269 +#: ../../godmode/agentes/configurar_agente.php:764 ../../godmode/menu.php:169 +#: ../../godmode/menu.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1999 #: ../../include/functions_menu.php:510 #: ../../include/class/ConfigPEN.class.php:332 @@ -3785,7 +3792,7 @@ msgstr "" #: ../../enterprise/views/ncm/devices/list.php:117 #: ../../enterprise/godmode/servers/manage_export.php:140 #: ../../enterprise/godmode/servers/manage_export_form.php:99 -#: ../../enterprise/include/functions_ipam.php:2042 +#: ../../enterprise/include/functions_ipam.php:2050 #: ../../enterprise/tools/ipam/ipam_network.php:396 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 @@ -3793,8 +3800,8 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:139 #: ../../enterprise/tools/ipam/ipam_ajax.php:359 #: ../../enterprise/tools/ipam/ipam_calculator.php:62 -#: ../../godmode/setup/setup_general.php:660 -#: ../../operation/agentes/ver_agente.php:1193 +#: ../../godmode/setup/setup_general.php:741 +#: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "" @@ -3819,7 +3826,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_list.php:655 #: ../../extensions/agents_modules.php:317 #: ../../operation/agentes/group_view.php:80 -#: ../../operation/agentes/tactical.php:60 +#: ../../operation/agentes/tactical.php:61 msgid "Last update" msgstr "" @@ -3902,8 +3909,9 @@ msgstr "" #: ../../update_manager_client/views/offline.php:80 #: ../../extensions/dbmanager.php:114 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1059 -#: ../../godmode/users/configure_user.php:1914 +#: ../../godmode/groups/group_list.php:1064 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1979 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 @@ -3915,31 +3923,32 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:3785 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 #: ../../include/functions_reporting_html.php:2485 -#: ../../include/functions.php:1055 ../../include/functions.php:1293 -#: ../../include/functions.php:1296 ../../include/functions.php:1335 -#: ../../include/functions_graph.php:3497 -#: ../../include/functions_graph.php:3498 -#: ../../include/functions_graph.php:5072 ../../include/functions_ui.php:298 -#: ../../include/functions_ui.php:2610 +#: ../../include/functions.php:1081 ../../include/functions.php:1319 +#: ../../include/functions.php:1322 ../../include/functions.php:1361 +#: ../../include/functions_graph.php:3342 +#: ../../include/functions_graph.php:3344 +#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:298 +#: ../../include/functions_ui.php:2614 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 #: ../../include/functions_massive_operations.php:149 #: ../../include/class/SatelliteAgent.class.php:1358 #: ../../include/class/SatelliteAgent.class.php:1383 -#: ../../include/class/Diagnostics.class.php:1812 +#: ../../include/class/Diagnostics.class.php:1817 #: ../../include/class/AgentWizard.class.php:1398 #: ../../include/class/AgentWizard.class.php:4144 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 #: ../../include/lib/Dashboard/Widgets/tree_view.php:386 #: ../../include/lib/Dashboard/Widgets/tree_view.php:419 #: ../../include/lib/Dashboard/Widgets/tree_view.php:668 -#: ../../include/functions_events.php:3102 ../../index.php:1226 +#: ../../include/functions_events.php:3081 ../../index.php:1229 #: ../../operation/tree.php:213 ../../operation/tree.php:270 -#: ../../operation/tree.php:471 ../../operation/agentes/estado_agente.php:269 +#: ../../operation/tree.php:471 ../../operation/users/user_edit.php:277 +#: ../../operation/agentes/estado_agente.php:269 #: ../../operation/agentes/status_monitor.php:493 #: ../../operation/agentes/group_view.php:227 #: ../../operation/agentes/group_view.php:232 #: ../../operation/agentes/estado_monitores.php:525 -#: ../../operation/agentes/tactical.php:179 +#: ../../operation/agentes/tactical.php:180 #: ../../operation/netflow/nf_live_view.php:459 #: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:143 msgid "Warning" @@ -3961,13 +3970,13 @@ msgstr "" #: ../../enterprise/views/ipam/sites/edit.php:64 #: ../../godmode/modules/manage_nc_groups_form.php:71 #: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/group_list.php:848 +#: ../../godmode/groups/group_list.php:853 #: ../../godmode/agentes/agent_manager.php:574 #: ../../godmode/massive/massive_edit_agents.php:655 #: ../../godmode/reporting/visual_console_builder.elements.php:108 #: ../../include/functions_visual_map_editor.php:956 -#: ../../include/rest-api/models/VisualConsole/Item.php:2175 -#: ../../operation/agentes/ver_agente.php:1230 +#: ../../include/rest-api/models/VisualConsole/Item.php:2176 +#: ../../operation/agentes/ver_agente.php:1236 #: ../../operation/agentes/estado_generalagente.php:425 msgid "Parent" msgstr "" @@ -4001,10 +4010,10 @@ msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167 #: ../../enterprise/godmode/policies/policy_alerts.php:583 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:588 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:697 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:590 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:699 #: ../../enterprise/godmode/policies/policy_agents.php:391 -#: ../../enterprise/godmode/policies/policy_agents.php:1694 +#: ../../enterprise/godmode/policies/policy_agents.php:1730 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:211 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 @@ -4033,10 +4042,6 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1126 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1173 -#: ../../enterprise/godmode/setup/setup.php:614 -#: ../../enterprise/godmode/setup/setup.php:631 -#: ../../enterprise/godmode/setup/setup.php:640 -#: ../../enterprise/godmode/setup/setup.php:657 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:262 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:795 @@ -4150,10 +4155,10 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form.php:666 #: ../../godmode/groups/configure_group.php:188 #: ../../godmode/groups/configure_group.php:210 -#: ../../godmode/users/configure_user.php:1253 -#: ../../godmode/users/configure_user.php:1267 -#: ../../godmode/users/configure_user.php:1461 -#: ../../godmode/users/configure_user.php:1473 +#: ../../godmode/users/configure_user.php:1312 +#: ../../godmode/users/configure_user.php:1326 +#: ../../godmode/users/configure_user.php:1519 +#: ../../godmode/users/configure_user.php:1531 #: ../../godmode/agentes/status_monitor_custom_fields.php:218 #: ../../godmode/agentes/status_monitor_custom_fields.php:266 #: ../../godmode/agentes/module_manager_editor_plugin.php:55 @@ -4211,10 +4216,10 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:1829 #: ../../godmode/alerts/alert_actions.php:291 #: ../../godmode/alerts/alert_list.list.php:762 -#: ../../godmode/alerts/alert_commands.php:303 -#: ../../godmode/alerts/alert_commands.php:317 -#: ../../godmode/alerts/alert_commands.php:462 -#: ../../godmode/alerts/alert_commands.php:475 +#: ../../godmode/alerts/alert_commands.php:304 +#: ../../godmode/alerts/alert_commands.php:318 +#: ../../godmode/alerts/alert_commands.php:463 +#: ../../godmode/alerts/alert_commands.php:476 #: ../../godmode/alerts/configure_alert_template.php:650 #: ../../godmode/alerts/configure_alert_template.php:777 #: ../../godmode/alerts/configure_alert_template.php:798 @@ -4222,6 +4227,10 @@ msgstr "" #: ../../godmode/setup/setup_visuals.php:401 #: ../../godmode/setup/setup_visuals.php:420 #: ../../godmode/setup/setup_visuals.php:950 +#: ../../godmode/setup/setup_general.php:903 +#: ../../godmode/setup/setup_general.php:920 +#: ../../godmode/setup/setup_general.php:929 +#: ../../godmode/setup/setup_general.php:946 #: ../../godmode/reporting/create_container.php:489 #: ../../godmode/reporting/graph_builder.graph_editor.php:329 #: ../../godmode/reporting/reporting_builder.item_editor.php:208 @@ -4245,7 +4254,7 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:732 #: ../../godmode/reporting/visual_console_builder.wizard.php:742 #: ../../godmode/reporting/visual_console_builder.wizard.php:774 -#: ../../godmode/events/event_edit_filter.php:740 +#: ../../godmode/events/event_edit_filter.php:799 #: ../../godmode/events/custom_events.php:200 #: ../../godmode/events/custom_events.php:248 #: ../../godmode/wizards/HostDevices.class.php:1102 @@ -4256,23 +4265,23 @@ msgstr "" #: ../../include/functions_visual_map_editor.php:957 #: ../../include/functions_visual_map_editor.php:1010 #: ../../include/functions_visual_map_editor.php:1072 -#: ../../include/functions.php:1093 ../../include/functions_cron.php:682 +#: ../../include/functions.php:1119 ../../include/functions_cron.php:682 #: ../../include/functions_networkmap.php:1519 #: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589 +#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590 #: ../../include/functions_integriaims.php:135 -#: ../../include/functions_profile.php:318 -#: ../../include/functions_profile.php:336 -#: ../../include/functions_profile.php:351 +#: ../../include/functions_profile.php:332 +#: ../../include/functions_profile.php:350 +#: ../../include/functions_profile.php:365 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:632 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644 -#: ../../include/rest-api/models/VisualConsole/Item.php:2087 -#: ../../include/rest-api/models/VisualConsole/Item.php:2206 -#: ../../include/rest-api/models/VisualConsole/Item.php:2324 -#: ../../include/rest-api/models/VisualConsole/Item.php:2446 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634 +#: ../../include/rest-api/models/VisualConsole/Item.php:2088 +#: ../../include/rest-api/models/VisualConsole/Item.php:2207 +#: ../../include/rest-api/models/VisualConsole/Item.php:2325 +#: ../../include/rest-api/models/VisualConsole/Item.php:2447 #: ../../include/functions_html.php:376 ../../include/functions_html.php:816 #: ../../include/functions_html.php:1239 ../../include/functions_html.php:1291 #: ../../include/functions_html.php:1338 ../../include/functions_html.php:1339 @@ -4286,7 +4295,7 @@ msgstr "" #: ../../include/class/NetworkMap.class.php:3347 #: ../../include/class/NetworkMap.class.php:3363 #: ../../include/class/SnmpConsole.class.php:377 -#: ../../include/class/SnmpConsole.class.php:1372 +#: ../../include/class/SnmpConsole.class.php:1373 #: ../../include/class/AgentWizard.class.php:728 #: ../../include/class/AgentWizard.class.php:784 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:365 @@ -4312,25 +4321,25 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3381 -#: ../../operation/users/user_edit.php:405 -#: ../../operation/users/user_edit.php:417 -#: ../../operation/users/user_edit.php:455 +#: ../../include/functions_events.php:3360 +#: ../../operation/users/user_edit.php:479 #: ../../operation/users/user_edit.php:491 -#: ../../operation/users/user_edit.php:506 -#: ../../operation/users/user_edit.php:923 -#: ../../operation/users/user_edit.php:930 -#: ../../operation/users/user_edit.php:939 -#: ../../operation/users/user_edit.php:946 +#: ../../operation/users/user_edit.php:529 +#: ../../operation/users/user_edit.php:565 +#: ../../operation/users/user_edit.php:580 +#: ../../operation/users/user_edit.php:997 +#: ../../operation/users/user_edit.php:1004 +#: ../../operation/users/user_edit.php:1013 +#: ../../operation/users/user_edit.php:1020 #: ../../operation/agentes/pandora_networkmap.editor.php:367 #: ../../operation/agentes/pandora_networkmap.view.php:211 -#: ../../operation/agentes/ver_agente.php:1176 -#: ../../operation/agentes/ver_agente.php:1232 -#: ../../operation/agentes/ver_agente.php:1247 -#: ../../operation/snmpconsole/snmp_browser.php:389 -#: ../../operation/snmpconsole/snmp_browser.php:404 -#: ../../operation/snmpconsole/snmp_browser.php:414 -#: ../../operation/snmpconsole/snmp_browser.php:533 +#: ../../operation/agentes/ver_agente.php:1182 +#: ../../operation/agentes/ver_agente.php:1238 +#: ../../operation/agentes/ver_agente.php:1253 +#: ../../operation/snmpconsole/snmp_browser.php:387 +#: ../../operation/snmpconsole/snmp_browser.php:402 +#: ../../operation/snmpconsole/snmp_browser.php:412 +#: ../../operation/snmpconsole/snmp_browser.php:531 #: ../../operation/gis_maps/render_view.php:163 #: ../../operation/incidents/list_integriaims_incidents.php:530 #: ../../operation/incidents/list_integriaims_incidents.php:534 @@ -4349,7 +4358,7 @@ msgstr "" #: ../../godmode/agentes/configurar_agente.php:384 #: ../../godmode/agentes/modificar_agente.php:82 #: ../../godmode/agentes/modificar_agente.php:832 -#: ../../godmode/agentes/modificar_agente.php:836 ../../godmode/menu.php:571 +#: ../../godmode/agentes/modificar_agente.php:836 ../../godmode/menu.php:574 #: ../../godmode/setup/setup_visuals.php:163 #: ../../godmode/setup/setup_visuals.php:228 #: ../../godmode/setup/setup_visuals.php:282 @@ -4364,13 +4373,13 @@ msgstr "" #: ../../godmode/setup/setup_visuals.php:609 #: ../../godmode/reporting/visual_console_builder.php:851 #: ../../godmode/module_library/module_library_view.php:59 -#: ../../include/lib/ClusterViewer/ClusterManager.php:604 +#: ../../include/lib/ClusterViewer/ClusterManager.php:601 #: ../../operation/tree.php:187 ../../operation/visual_console/view.php:200 #: ../../operation/visual_console/legacy_view.php:193 #: ../../operation/agentes/estado_agente.php:857 #: ../../operation/agentes/estado_agente.php:859 #: ../../operation/agentes/status_monitor.php:75 -#: ../../operation/agentes/ver_agente.php:1928 +#: ../../operation/agentes/ver_agente.php:1946 msgid "View" msgstr "" @@ -4443,7 +4452,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/visual_console_template.php:122 #: ../../enterprise/godmode/reporting/visual_console_template.php:128 #: ../../extensions/resource_exportation.php:436 -#: ../../godmode/users/configure_user.php:1290 +#: ../../godmode/users/configure_user.php:1349 #: ../../godmode/massive/massive_edit_users.php:275 #: ../../godmode/reporting/visual_console_builder.php:882 #: ../../godmode/reporting/map_builder.php:134 @@ -4451,9 +4460,9 @@ msgstr "" #: ../../godmode/reporting/visual_console_favorite.php:131 #: ../../godmode/reporting/visual_console_favorite.php:137 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 -#: ../../operation/users/user_edit.php:360 -#: ../../operation/visual_console/view.php:232 ../../operation/menu.php:182 -#: ../../operation/menu.php:186 +#: ../../operation/users/user_edit.php:434 +#: ../../operation/visual_console/view.php:232 ../../operation/menu.php:186 +#: ../../operation/menu.php:190 msgid "Visual console" msgstr "" @@ -4481,6 +4490,7 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:78 #: ../../godmode/servers/servers.build_table.php:82 #: ../../include/functions_reporting_html.php:1593 +#: ../../include/functions_menu.php:834 #: ../../include/functions_snmp_browser.php:746 #: ../../general/reporting_console_node.php:69 msgid "Version" @@ -4506,7 +4516,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:244 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 -#: ../../enterprise/include/functions_reporting_pdf.php:886 +#: ../../enterprise/include/functions_reporting_pdf.php:887 #: ../../enterprise/include/functions_policies.php:3723 #: ../../enterprise/operation/agentes/tag_view.php:606 #: ../../enterprise/operation/services/massive/services.create.php:989 @@ -4514,7 +4524,7 @@ msgstr "" #: ../../enterprise/operation/services/services.service_map.php:163 #: ../../extensions/agents_modules.php:758 #: ../../godmode/agentes/configurar_agente.php:417 -#: ../../godmode/agentes/configurar_agente.php:735 +#: ../../godmode/agentes/configurar_agente.php:748 #: ../../godmode/agentes/modificar_agente.php:814 #: ../../godmode/agentes/planned_downtime.list.php:85 #: ../../godmode/agentes/planned_downtime.list.php:115 @@ -4534,7 +4544,7 @@ msgstr "" #: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 #: ../../mobile/operation/agent.php:327 #: ../../include/functions_reporting_html.php:2005 -#: ../../include/functions_reporting_html.php:5556 +#: ../../include/functions_reporting_html.php:5575 #: ../../include/functions_reports.php:733 #: ../../include/functions_reports.php:737 #: ../../include/functions_reports.php:741 @@ -4686,7 +4696,7 @@ msgid "Successfully update" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:98 -#: ../../godmode/menu.php:353 ../../godmode/setup/setup.php:137 +#: ../../godmode/menu.php:356 ../../godmode/setup/setup.php:137 #: ../../godmode/setup/setup.php:266 msgid "Visual styles" msgstr "" @@ -4694,7 +4704,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:105 #: ../../enterprise/meta/include/functions_meta.php:1329 #: ../../godmode/setup/setup_visuals.php:1310 -#: ../../include/functions_config.php:962 +#: ../../include/functions_config.php:943 msgid "Date format string" msgstr "" @@ -4725,19 +4735,19 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:166 #: ../../godmode/setup/setup_visuals.php:699 -#: ../../include/functions_config.php:970 +#: ../../include/functions_config.php:951 msgid "Graph color #1" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:176 #: ../../godmode/setup/setup_visuals.php:710 -#: ../../include/functions_config.php:974 +#: ../../include/functions_config.php:955 msgid "Graph color #2" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 #: ../../godmode/setup/setup_visuals.php:721 -#: ../../include/functions_config.php:978 +#: ../../include/functions_config.php:959 msgid "Graph color #3" msgstr "" @@ -4766,18 +4776,18 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:232 #: ../../enterprise/meta/include/functions_meta.php:1464 #: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:1010 +#: ../../include/functions_config.php:991 msgid "Value to interface graphics" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:242 #: ../../enterprise/meta/include/functions_meta.php:1477 -#: ../../godmode/users/configure_user.php:1363 +#: ../../godmode/users/configure_user.php:1422 #: ../../godmode/massive/massive_edit_users.php:264 #: ../../godmode/setup/setup_visuals.php:66 -#: ../../godmode/events/event_edit_filter.php:419 -#: ../../include/functions_config.php:1027 -#: ../../operation/users/user_edit.php:311 +#: ../../godmode/events/event_edit_filter.php:429 +#: ../../include/functions_config.php:1008 +#: ../../operation/users/user_edit.php:385 msgid "Block size for pagination" msgstr "" @@ -4790,20 +4800,20 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:265 #: ../../enterprise/meta/include/functions_meta.php:1487 #: ../../godmode/setup/setup_visuals.php:884 -#: ../../include/functions_config.php:1031 +#: ../../include/functions_config.php:1012 msgid "Use round corners" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:273 #: ../../enterprise/meta/include/functions_meta.php:1498 #: ../../godmode/setup/setup_visuals.php:893 -#: ../../include/functions_config.php:1035 +#: ../../include/functions_config.php:1016 msgid "Chart fit to content" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:281 #: ../../enterprise/meta/include/functions_meta.php:1509 -#: ../../include/functions_config.php:1247 +#: ../../include/functions_config.php:1228 msgid "Disable help" msgstr "" @@ -4835,8 +4845,10 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_queue.php:608 #: ../../enterprise/godmode/policies/policy_queue.php:619 #: ../../enterprise/godmode/policies/policy_queue.php:692 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:367 -#: ../../enterprise/godmode/policies/policy_agents.php:833 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:369 +#: ../../enterprise/godmode/policies/policy_agents.php:506 +#: ../../enterprise/godmode/policies/policy_agents.php:524 +#: ../../enterprise/godmode/policies/policy_agents.php:869 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 #: ../../enterprise/godmode/setup/setup_acl.php:487 @@ -4857,29 +4869,21 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2887 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2914 #: ../../enterprise/include/class/ManageBackups.class.php:191 -#: ../../enterprise/include/functions_metaconsole.php:881 #: ../../enterprise/include/functions_metaconsole.php:882 -#: ../../enterprise/include/functions_metaconsole.php:1239 -#: ../../enterprise/include/functions_ipam.php:1688 -#: ../../enterprise/include/functions_ipam.php:1733 +#: ../../enterprise/include/functions_metaconsole.php:883 +#: ../../enterprise/include/functions_metaconsole.php:1240 +#: ../../enterprise/include/functions_ipam.php:1696 +#: ../../enterprise/include/functions_ipam.php:1741 #: ../../enterprise/operation/agentes/tag_view.php:145 #: ../../enterprise/operation/agentes/tag_view.php:171 #: ../../enterprise/operation/agentes/tag_view.php:237 #: ../../enterprise/operation/agentes/tag_view.php:301 #: ../../enterprise/operation/agentes/tag_view.php:304 #: ../../enterprise/operation/agentes/tag_view.php:390 -#: ../../enterprise/operation/agentes/agent_inventory.php:122 #: ../../enterprise/operation/log/log_viewer.php:621 #: ../../enterprise/operation/log/log_viewer.php:639 #: ../../enterprise/operation/log/log_viewer.php:689 #: ../../enterprise/operation/snmpconsole/snmp_view.php:33 -#: ../../enterprise/operation/inventory/inventory.php:75 -#: ../../enterprise/operation/inventory/inventory.php:76 -#: ../../enterprise/operation/inventory/inventory.php:155 -#: ../../enterprise/operation/inventory/inventory.php:156 -#: ../../enterprise/operation/inventory/inventory.php:332 -#: ../../enterprise/operation/inventory/inventory.php:360 -#: ../../enterprise/operation/inventory/inventory.php:369 #: ../../extensions/agents_modules.php:416 #: ../../extensions/files_repo/files_repo_form.php:46 #: ../../godmode/modules/manage_network_templates_form.php:303 @@ -4899,9 +4903,9 @@ msgstr "" #: ../../godmode/alerts/alert_list.list.php:146 #: ../../godmode/alerts/alert_list.list.php:155 #: ../../godmode/alerts/alert_templates.php:308 -#: ../../godmode/alerts/alert_list.php:467 -#: ../../godmode/alerts/alert_list.php:516 -#: ../../godmode/alerts/alert_list.php:530 +#: ../../godmode/alerts/alert_list.php:485 +#: ../../godmode/alerts/alert_list.php:534 +#: ../../godmode/alerts/alert_list.php:548 #: ../../godmode/setup/gis_step_2.php:218 #: ../../godmode/setup/setup_visuals.php:951 #: ../../godmode/reporting/reporting_builder.list_items.php:209 @@ -4923,16 +4927,16 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:3903 #: ../../godmode/reporting/visual_console_builder.wizard.php:340 #: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../godmode/events/event_edit_filter.php:340 -#: ../../godmode/events/event_edit_filter.php:355 -#: ../../godmode/events/event_edit_filter.php:647 +#: ../../godmode/events/event_edit_filter.php:350 +#: ../../godmode/events/event_edit_filter.php:365 +#: ../../godmode/events/event_edit_filter.php:657 #: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68 #: ../../mobile/operation/modules.php:289 #: ../../mobile/operation/modules.php:304 ../../mobile/operation/alerts.php:65 #: ../../mobile/operation/alerts.php:72 ../../mobile/operation/events.php:974 #: ../../mobile/operation/events.php:984 ../../mobile/operation/events.php:1460 -#: ../../mobile/operation/events.php:1489 ../../include/functions.php:1091 -#: ../../include/functions.php:1351 ../../include/ajax/events.php:518 +#: ../../mobile/operation/events.php:1489 ../../include/functions.php:1117 +#: ../../include/functions.php:1377 ../../include/ajax/events.php:519 #: ../../include/functions_groupview.php:96 #: ../../include/functions_modules.php:3576 #: ../../include/functions_modules.php:3578 @@ -4947,8 +4951,8 @@ msgstr "" #: ../../include/class/SnmpConsole.class.php:371 #: ../../include/class/AuditLog.class.php:202 #: ../../include/class/AuditLog.class.php:212 -#: ../../include/functions_reporting.php:3121 -#: ../../include/functions_reporting.php:3218 +#: ../../include/functions_reporting.php:3239 +#: ../../include/functions_reporting.php:3336 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 #: ../../include/lib/Dashboard/Widgets/tree_view.php:384 @@ -4960,6 +4964,7 @@ msgstr "" #: ../../operation/agentes/status_monitor.php:651 #: ../../operation/agentes/estado_monitores.php:520 #: ../../operation/agentes/estado_monitores.php:565 +#: ../../operation/agentes/agent_inventory.php:122 #: ../../operation/agentes/alerts_status.functions.php:96 #: ../../operation/agentes/alerts_status.functions.php:115 #: ../../operation/agentes/alerts_status.functions.php:125 @@ -4968,6 +4973,13 @@ msgstr "" #: ../../operation/incidents/list_integriaims_incidents.php:337 #: ../../operation/incidents/list_integriaims_incidents.php:354 #: ../../operation/incidents/list_integriaims_incidents.php:365 +#: ../../operation/inventory/inventory.php:75 +#: ../../operation/inventory/inventory.php:76 +#: ../../operation/inventory/inventory.php:158 +#: ../../operation/inventory/inventory.php:159 +#: ../../operation/inventory/inventory.php:335 +#: ../../operation/inventory/inventory.php:363 +#: ../../operation/inventory/inventory.php:372 #: ../../operation/events/events.php:810 ../../operation/events/events.php:1670 #: ../../operation/events/events.php:1759 #: ../../operation/events/events.php:1990 @@ -5020,13 +5032,13 @@ msgstr "" #: ../../godmode/reporting/create_container.php:358 #: ../../godmode/reporting/graph_builder.main.php:214 #: ../../include/functions_visual_map_editor.php:558 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 #: ../../operation/agentes/graphs.php:236 #: ../../operation/agentes/graphs.php:243 #: ../../operation/agentes/graphs.php:408 #: ../../operation/agentes/graphs.php:426 -#: ../../operation/reporting/graph_viewer.php:370 +#: ../../operation/reporting/graph_viewer.php:342 msgid "Area" msgstr "" @@ -5040,14 +5052,14 @@ msgstr "" #: ../../include/functions_visual_map_editor.php:72 #: ../../include/functions_visual_map_editor.php:557 #: ../../include/functions_visual_map_editor.php:1399 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 #: ../../operation/visual_console/view.php:363 #: ../../operation/agentes/graphs.php:238 #: ../../operation/agentes/graphs.php:244 #: ../../operation/agentes/graphs.php:416 #: ../../operation/agentes/graphs.php:430 -#: ../../operation/reporting/graph_viewer.php:372 +#: ../../operation/reporting/graph_viewer.php:344 msgid "Line" msgstr "" @@ -5064,8 +5076,8 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:849 #: ../../enterprise/meta/advanced/metasetup.visual.php:850 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:439 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:453 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:466 #: ../../enterprise/include/ajax/log_viewer.ajax.php:274 #: ../../godmode/snmpconsole/snmp_alert.php:1102 #: ../../godmode/setup/setup_visuals.php:1031 @@ -5073,12 +5085,12 @@ msgstr "" #: ../../godmode/setup/setup_visuals.php:1417 #: ../../include/functions_visual_map_editor.php:1223 #: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/functions.php:495 ../../include/functions.php:626 -#: ../../include/ajax/events.php:2256 ../../include/ajax/events.php:2257 -#: ../../include/ajax/events.php:2258 ../../include/ajax/events.php:2259 -#: ../../include/ajax/events.php:2263 ../../include/ajax/events.php:2264 -#: ../../include/ajax/events.php:2265 ../../include/ajax/events.php:2266 +#: ../../include/functions.php:499 ../../include/functions.php:630 #: ../../include/ajax/events.php:2267 ../../include/ajax/events.php:2268 +#: ../../include/ajax/events.php:2269 ../../include/ajax/events.php:2270 +#: ../../include/ajax/events.php:2274 ../../include/ajax/events.php:2275 +#: ../../include/ajax/events.php:2276 ../../include/ajax/events.php:2277 +#: ../../include/ajax/events.php:2278 ../../include/ajax/events.php:2279 #: ../../include/functions_html.php:2103 #: ../../include/class/AgentsAlerts.class.php:387 #: ../../operation/events/sound_events.php:199 @@ -5109,15 +5121,15 @@ msgstr "" #: ../../include/functions_visual_map_editor.php:1226 #: ../../include/functions_visual_map_editor.php:1227 #: ../../include/functions_visual_map_editor.php:1228 -#: ../../include/functions.php:499 ../../include/functions.php:630 +#: ../../include/functions.php:503 ../../include/functions.php:634 #: ../../include/functions_html.php:2104 msgid "minutes" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:384 #: ../../enterprise/include/ajax/log_viewer.ajax.php:278 -#: ../../godmode/setup/setup_visuals.php:1419 ../../include/functions.php:500 -#: ../../include/functions.php:631 ../../include/functions_snmp.php:402 +#: ../../godmode/setup/setup_visuals.php:1419 ../../include/functions.php:504 +#: ../../include/functions.php:635 ../../include/functions_snmp.php:402 #: ../../include/functions_html.php:2105 msgid "hours" msgstr "" @@ -5125,20 +5137,20 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:385 #: ../../enterprise/include/ajax/log_viewer.ajax.php:280 #: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 -#: ../../godmode/setup/setup_visuals.php:1420 ../../include/functions.php:496 -#: ../../include/functions.php:627 ../../include/functions_html.php:2106 +#: ../../godmode/setup/setup_visuals.php:1420 ../../include/functions.php:500 +#: ../../include/functions.php:631 ../../include/functions_html.php:2106 msgid "days" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:386 -#: ../../godmode/setup/setup_visuals.php:1421 ../../include/functions.php:497 -#: ../../include/functions.php:628 ../../include/functions_html.php:2108 +#: ../../godmode/setup/setup_visuals.php:1421 ../../include/functions.php:501 +#: ../../include/functions.php:632 ../../include/functions_html.php:2108 msgid "months" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:387 -#: ../../godmode/setup/setup_visuals.php:1422 ../../include/functions.php:498 -#: ../../include/functions.php:629 ../../include/functions_html.php:2109 +#: ../../godmode/setup/setup_visuals.php:1422 ../../include/functions.php:502 +#: ../../include/functions.php:633 ../../include/functions_html.php:2109 msgid "years" msgstr "" @@ -5153,14 +5165,13 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1365 #: ../../enterprise/godmode/agentes/collection_manager.php:113 #: ../../enterprise/godmode/agentes/collection_manager.php:142 -#: ../../enterprise/godmode/agentes/inventory_manager.php:185 #: ../../enterprise/godmode/agentes/plugins_manager.php:163 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230 #: ../../enterprise/godmode/policies/policy_plugins.php:162 #: ../../enterprise/godmode/policies/policy_alerts.php:605 #: ../../enterprise/godmode/policies/policy_alerts.php:670 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:616 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:712 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:618 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:714 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 #: ../../enterprise/godmode/policies/policy_collections.php:267 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 @@ -5191,6 +5202,7 @@ msgstr "" #: ../../extensions/files_repo/files_repo_form.php:105 #: ../../godmode/modules/manage_network_templates_form.php:347 #: ../../godmode/users/configure_profile.php:403 +#: ../../godmode/agentes/inventory_manager.php:185 #: ../../godmode/agentes/planned_downtime.editor.php:1168 #: ../../godmode/agentes/planned_downtime.editor.php:1341 #: ../../godmode/snmpconsole/snmp_alert.php:1494 @@ -5202,8 +5214,8 @@ msgstr "" #: ../../godmode/setup/setup_visuals.php:1447 #: ../../godmode/reporting/graph_builder.graph_editor.php:352 #: ../../godmode/reporting/visual_console_builder.wizard.php:531 -#: ../../godmode/events/event_edit_filter.php:555 -#: ../../godmode/events/event_edit_filter.php:608 +#: ../../godmode/events/event_edit_filter.php:565 +#: ../../godmode/events/event_edit_filter.php:618 #: ../../godmode/servers/plugin.php:890 #: ../../include/functions_notifications.php:962 #: ../../include/class/SatelliteAgent.class.php:1168 @@ -5218,7 +5230,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:420 #: ../../enterprise/meta/include/functions_meta.php:1798 #: ../../godmode/setup/setup_visuals.php:1432 -#: ../../include/functions_config.php:1418 +#: ../../include/functions_config.php:1399 msgid "Delete interval" msgstr "" @@ -5229,35 +5241,35 @@ msgid "Show only the group name" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:456 -#: ../../include/functions_config.php:1275 +#: ../../include/functions_config.php:1256 msgid "Show the group name instead the group icon." msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:466 #: ../../enterprise/meta/include/functions_meta.php:1890 #: ../../godmode/setup/setup_visuals.php:88 -#: ../../include/functions_config.php:1299 +#: ../../include/functions_config.php:1280 msgid "Display data of proc modules in other format" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:474 #: ../../enterprise/meta/include/functions_meta.php:1900 #: ../../godmode/setup/setup_visuals.php:97 -#: ../../include/functions_config.php:1303 +#: ../../include/functions_config.php:1284 msgid "Display text proc modules have state is ok" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:484 #: ../../enterprise/meta/include/functions_meta.php:1910 #: ../../godmode/setup/setup_visuals.php:101 -#: ../../include/functions_config.php:1307 +#: ../../include/functions_config.php:1288 msgid "Display text when proc modules have state critical" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:503 #: ../../enterprise/meta/include/functions_meta.php:1629 #: ../../godmode/setup/setup_visuals.php:191 -#: ../../include/functions_config.php:1055 +#: ../../include/functions_config.php:1036 msgid "Custom favicon" msgstr "" @@ -5305,7 +5317,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:795 #: ../../enterprise/meta/include/functions_meta.php:1659 #: ../../godmode/setup/setup_visuals.php:508 -#: ../../include/functions_config.php:1131 +#: ../../include/functions_config.php:1112 msgid "Product name" msgstr "" @@ -5313,7 +5325,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:805 #: ../../enterprise/meta/include/functions_meta.php:1669 #: ../../godmode/setup/setup_visuals.php:514 -#: ../../include/functions_config.php:1135 +#: ../../include/functions_config.php:1116 msgid "Copyright notice" msgstr "" @@ -5388,7 +5400,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:874 #: ../../enterprise/meta/include/functions_meta.php:1937 #: ../../godmode/setup/setup_visuals.php:1056 -#: ../../include/functions_config.php:1179 +#: ../../include/functions_config.php:1160 msgid "Default interval for refresh on Visual Console" msgstr "" @@ -5419,7 +5431,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:923 #: ../../enterprise/meta/include/functions_meta.php:1942 #: ../../godmode/setup/setup_visuals.php:1098 -#: ../../include/functions_config.php:1195 +#: ../../include/functions_config.php:1176 msgid "Mobile view not allow visual console orientation" msgstr "" @@ -5452,14 +5464,14 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:971 #: ../../enterprise/meta/include/functions_meta.php:1424 #: ../../godmode/setup/setup_visuals.php:1151 -#: ../../include/functions_config.php:1449 +#: ../../include/functions_config.php:1430 msgid "PDF font size (px)" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:974 #: ../../enterprise/meta/include/functions_meta.php:1414 #: ../../godmode/setup/setup_visuals.php:1156 -#: ../../include/functions_config.php:1445 +#: ../../include/functions_config.php:1426 msgid "HTML font size for SLA (em)" msgstr "" @@ -5478,14 +5490,14 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:996 #: ../../enterprise/meta/include/functions_meta.php:1444 #: ../../godmode/setup/setup_visuals.php:1475 -#: ../../include/functions_config.php:1477 +#: ../../include/functions_config.php:1458 msgid "CSV divider" msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:1036 #: ../../enterprise/meta/include/functions_meta.php:1454 #: ../../godmode/setup/setup_visuals.php:1521 -#: ../../include/functions_config.php:1481 +#: ../../include/functions_config.php:1462 msgid "CSV decimal separator" msgstr "" @@ -5516,12 +5528,12 @@ msgstr "" #: ../../godmode/setup/setup_visuals.php:1217 #: ../../godmode/setup/setup_visuals.php:1237 #: ../../godmode/setup/setup_visuals.php:1253 -#: ../../include/functions_config.php:1453 -#: ../../include/functions_config.php:1457 -#: ../../include/functions_config.php:1461 -#: ../../include/functions_config.php:1465 -#: ../../include/functions_config.php:1469 -#: ../../include/functions_config.php:1473 +#: ../../include/functions_config.php:1434 +#: ../../include/functions_config.php:1438 +#: ../../include/functions_config.php:1442 +#: ../../include/functions_config.php:1446 +#: ../../include/functions_config.php:1450 +#: ../../include/functions_config.php:1454 msgid "Custom report front" msgstr "" @@ -5531,8 +5543,8 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 #: ../../godmode/setup/setup_visuals.php:1194 -#: ../../include/functions_config.php:1059 -#: ../../include/functions_config.php:1461 +#: ../../include/functions_config.php:1040 +#: ../../include/functions_config.php:1442 msgid "Custom logo" msgstr "" @@ -5550,7 +5562,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:143 #: ../../godmode/setup/setup_visuals.php:1217 -#: ../../include/functions_config.php:1465 +#: ../../include/functions_config.php:1446 msgid "Header" msgstr "" @@ -5559,7 +5571,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:153 #: ../../godmode/setup/setup_visuals.php:1237 -#: ../../include/functions_config.php:1469 +#: ../../include/functions_config.php:1450 msgid "First page" msgstr "" @@ -5630,12 +5642,12 @@ msgid " please remove configuration file from target node." msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:166 -#: ../../enterprise/include/functions_metaconsole.php:2856 +#: ../../enterprise/include/functions_metaconsole.php:2857 msgid "There are differences between MR versions" msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:170 -#: ../../enterprise/include/functions_metaconsole.php:2849 +#: ../../enterprise/include/functions_metaconsole.php:2850 msgid "Target server ip address is set" msgstr "" @@ -5692,8 +5704,8 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:472 #: ../../enterprise/godmode/policies/policy_agents.php:454 #: ../../enterprise/godmode/policies/policy_agents.php:485 -#: ../../enterprise/godmode/policies/policy_agents.php:549 -#: ../../enterprise/godmode/policies/policy_agents.php:814 +#: ../../enterprise/godmode/policies/policy_agents.php:585 +#: ../../enterprise/godmode/policies/policy_agents.php:850 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115 #: ../../godmode/massive/massive_copy_modules.php:112 #: ../../godmode/massive/massive_copy_modules.php:265 @@ -5716,8 +5728,8 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:359 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:475 -#: ../../enterprise/godmode/policies/policy_agents.php:499 -#: ../../enterprise/godmode/policies/policy_agents.php:513 +#: ../../enterprise/godmode/policies/policy_agents.php:535 +#: ../../enterprise/godmode/policies/policy_agents.php:549 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264 @@ -5819,8 +5831,8 @@ msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:578 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 -#: ../../enterprise/include/functions_inventory.php:142 -#: ../../enterprise/include/functions_inventory.php:176 +#: ../../include/functions_inventory.php:142 +#: ../../include/functions_inventory.php:176 #: ../../include/functions_events.php:250 msgid "Agent alias" msgstr "" @@ -5851,8 +5863,8 @@ msgstr "" #: ../../godmode/alerts/alert_view.php:124 #: ../../godmode/setup/setup_integria.php:379 #: ../../godmode/setup/setup_integria.php:501 -#: ../../include/functions_reporting_html.php:5268 -#: ../../include/functions_events.php:4419 +#: ../../include/functions_reporting_html.php:5287 +#: ../../include/functions_events.php:4398 #: ../../operation/agentes/estado_generalagente.php:667 #: ../../operation/incidents/integriaims_export_csv.php:85 #: ../../operation/incidents/configure_integriaims_incident.php:296 @@ -5863,28 +5875,28 @@ msgid "Priority" msgstr "" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 -#: ../../enterprise/meta/include/functions_meta.php:2154 +#: ../../enterprise/meta/include/functions_meta.php:2135 #: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:825 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1130 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1225 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1860 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2185 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2616 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2629 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2957 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3134 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3224 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3263 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3328 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:835 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1141 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1236 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1588 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1885 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2214 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2645 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2658 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2986 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3163 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3253 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3292 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3357 #: ../../godmode/alerts/configure_alert_template.php:228 #: ../../godmode/alerts/configure_alert_template.php:232 #: ../../godmode/alerts/configure_alert_template.php:249 #: ../../godmode/alerts/configure_alert_template.php:253 #: ../../godmode/alerts/configure_alert_template.php:270 #: ../../godmode/alerts/configure_alert_template.php:274 -#: ../../include/functions_config.php:1650 +#: ../../include/functions_config.php:1631 msgid "Step" msgstr "" @@ -5921,10 +5933,10 @@ msgstr "" #: ../../enterprise/include/class/LogSource.class.php:800 #: ../../enterprise/include/class/ManageBackups.class.php:484 #: ../../enterprise/include/class/ManageBackups.class.php:489 -#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/include/functions_ux_console.php:483 #: ../../enterprise/operation/agentes/ux_console_view.php:210 -#: ../../enterprise/operation/agentes/ux_console_view.php:352 -#: ../../enterprise/operation/agentes/wux_console_view.php:452 +#: ../../enterprise/operation/agentes/ux_console_view.php:359 +#: ../../enterprise/operation/agentes/wux_console_view.php:431 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1060 #: ../../include/ajax/snmp_browser.ajax.php:259 #: ../../include/class/ConfigPEN.class.php:744 @@ -5932,7 +5944,7 @@ msgstr "" #: ../../include/class/SatelliteAgent.class.php:1076 #: ../../include/class/SatelliteAgent.class.php:1081 #: ../../include/class/HelpFeedBack.class.php:355 -#: ../../include/class/Diagnostics.class.php:2089 +#: ../../include/class/Diagnostics.class.php:2094 #: ../../include/class/CredentialStore.class.php:1619 #: ../../include/class/CredentialStore.class.php:1624 #: ../../include/class/ModuleTemplates.class.php:1425 @@ -5955,9 +5967,9 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_queue.php:674 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443 #: ../../enterprise/include/class/Omnishell.class.php:362 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4146 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4171 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4290 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4444 msgid "Finished" msgstr "" @@ -6012,9 +6024,9 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 #: ../../enterprise/extensions/translate_string.php:302 -#: ../../godmode/users/configure_user.php:1080 +#: ../../godmode/users/configure_user.php:1139 #: ../../godmode/massive/massive_edit_users.php:249 -#: ../../operation/users/user_edit.php:328 +#: ../../operation/users/user_edit.php:402 msgid "Language" msgstr "" @@ -6036,19 +6048,15 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:576 #: ../../enterprise/godmode/modules/local_components.php:601 #: ../../enterprise/godmode/agentes/collection_manager.php:48 -#: ../../enterprise/godmode/agentes/collections.php:414 +#: ../../enterprise/godmode/agentes/collections.php:426 #: ../../enterprise/godmode/policies/policy_collections.php:254 -#: ../../enterprise/godmode/policies/policy_agents.php:822 -#: ../../enterprise/godmode/policies/policy_agents.php:835 +#: ../../enterprise/godmode/policies/policy_agents.php:858 +#: ../../enterprise/godmode/policies/policy_agents.php:871 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:151 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:162 #: ../../enterprise/operation/agentes/tag_view.php:219 -#: ../../enterprise/operation/agentes/agent_inventory.php:138 -#: ../../enterprise/operation/agentes/agent_inventory.php:140 #: ../../enterprise/operation/log/log_viewer.php:514 #: ../../enterprise/operation/log/log_viewer.php:797 -#: ../../enterprise/operation/inventory/inventory.php:374 -#: ../../enterprise/operation/inventory/inventory.php:427 #: ../../enterprise/operation/services/services.treeview_services.php:134 #: ../../enterprise/operation/services/services.list.php:225 #: ../../enterprise/operation/services/services.list.php:318 @@ -6064,8 +6072,8 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 #: ../../extensions/module_groups.php:283 #: ../../godmode/modules/manage_network_components.php:681 -#: ../../godmode/groups/group_list.php:785 -#: ../../godmode/groups/group_list.php:795 +#: ../../godmode/groups/group_list.php:790 +#: ../../godmode/groups/group_list.php:800 #: ../../godmode/users/user_list.php:462 ../../godmode/users/user_list.php:472 #: ../../godmode/agentes/modificar_agente.php:363 #: ../../godmode/agentes/modificar_agente.php:372 @@ -6098,6 +6106,10 @@ msgstr "" #: ../../operation/agentes/estado_agente.php:280 #: ../../operation/agentes/estado_agente.php:291 #: ../../operation/agentes/status_monitor.php:547 +#: ../../operation/agentes/agent_inventory.php:138 +#: ../../operation/agentes/agent_inventory.php:140 +#: ../../operation/inventory/inventory.php:377 +#: ../../operation/inventory/inventory.php:430 #: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "" @@ -6107,7 +6119,7 @@ msgstr "" #: ../../enterprise/extensions/translate_string.php:313 #: ../../enterprise/extensions/translate_string.php:314 #: ../../enterprise/godmode/agentes/collection_manager.php:42 -#: ../../enterprise/godmode/agentes/collections.php:410 +#: ../../enterprise/godmode/agentes/collections.php:422 #: ../../enterprise/godmode/policies/policies.php:330 #: ../../enterprise/godmode/policies/policy_collections.php:248 msgid "Free text for search (*)" @@ -6219,11 +6231,11 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:2662 #: ../../godmode/reporting/visual_console_builder.wizard.php:319 #: ../../include/functions_visual_map_editor.php:693 -#: ../../include/functions_reporting_html.php:944 +#: ../../include/functions_reporting_html.php:945 #: ../../include/functions_reporting_html.php:2371 #: ../../include/functions_reporting_html.php:4875 -#: ../../include/functions_reporting_html.php:5386 -#: ../../include/ajax/events.php:2077 ../../include/functions_graph.php:5398 +#: ../../include/functions_reporting_html.php:5405 +#: ../../include/ajax/events.php:2088 ../../include/functions_graph.php:5186 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 #: ../../include/functions_reports.php:1075 #: ../../include/functions_netflow.php:212 @@ -6241,7 +6253,6 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 #: ../../enterprise/godmode/policies/policy_alerts.php:575 #: ../../enterprise/godmode/policies/policy_modules.php:1471 #: ../../enterprise/godmode/admin_access_logs.php:54 @@ -6263,11 +6274,12 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_list.php:663 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 #: ../../godmode/modules/manage_nc_groups.php:243 +#: ../../godmode/modules/manage_inventory_modules.php:284 #: ../../godmode/modules/manage_network_components.php:758 #: ../../godmode/modules/manage_network_templates.php:250 -#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/agent_template.php:239 #: ../../godmode/agentes/planned_downtime.editor.php:1294 -#: ../../godmode/agentes/module_manager.php:909 +#: ../../godmode/agentes/module_manager.php:910 #: ../../godmode/netflow/nf_item_list.php:178 #: ../../godmode/netflow/nf_edit.php:161 #: ../../godmode/snmpconsole/snmp_alert.php:1278 @@ -6287,8 +6299,8 @@ msgstr "" #: ../../godmode/events/event_filter.php:141 #: ../../mobile/operation/tactical.php:348 #: ../../include/functions_reporting_html.php:3357 -#: ../../include/functions_reporting_html.php:5906 -#: ../../include/functions.php:3073 ../../include/ajax/alert_list.ajax.php:294 +#: ../../include/functions_reporting_html.php:5925 +#: ../../include/functions.php:3099 ../../include/ajax/alert_list.ajax.php:294 #: ../../include/ajax/alert_list.ajax.php:319 #: ../../include/ajax/alert_list.ajax.php:495 #: ../../include/functions_profile.php:217 @@ -6317,7 +6329,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:93 #: ../../enterprise/meta/include/functions_meta.php:356 -#: ../../enterprise/godmode/setup/setup.php:383 +#: ../../enterprise/godmode/setup/setup.php:299 #: ../../include/functions_config.php:472 msgid "Enable password policy" msgstr "" @@ -6361,7 +6373,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2339 #: ../../godmode/update_manager/update_manager.setup.php:372 -#: ../../godmode/users/configure_user.php:1279 +#: ../../godmode/users/configure_user.php:1338 #: ../../godmode/agentes/agent_conf_gis.php:126 #: ../../godmode/massive/massive_edit_agents.php:671 #: ../../godmode/massive/massive_edit_agents.php:1084 @@ -6385,7 +6397,7 @@ msgstr "" #: ../../include/functions_cron.php:688 ../../include/functions_profile.php:297 #: ../../include/functions_snmp.php:390 #: ../../include/class/SnmpConsole.class.php:463 -#: ../../operation/users/user_edit.php:324 +#: ../../operation/users/user_edit.php:398 #: ../../operation/netflow/nf_live_view.php:460 msgid "Yes" msgstr "" @@ -6430,7 +6442,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2339 #: ../../godmode/update_manager/update_manager.setup.php:373 -#: ../../godmode/users/configure_user.php:1280 +#: ../../godmode/users/configure_user.php:1339 #: ../../godmode/agentes/agent_conf_gis.php:127 #: ../../godmode/massive/massive_edit_agents.php:672 #: ../../godmode/massive/massive_edit_agents.php:1095 @@ -6456,28 +6468,28 @@ msgstr "" #: ../../include/functions_cron.php:688 ../../include/functions_profile.php:297 #: ../../include/functions_snmp.php:382 #: ../../include/class/SnmpConsole.class.php:462 -#: ../../include/functions_events.php:4790 -#: ../../include/functions_events.php:4795 -#: ../../operation/users/user_edit.php:325 +#: ../../include/functions_events.php:4769 +#: ../../include/functions_events.php:4774 +#: ../../operation/users/user_edit.php:399 #: ../../operation/netflow/nf_live_view.php:470 msgid "No" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:115 #: ../../enterprise/meta/include/functions_meta.php:366 -#: ../../enterprise/godmode/setup/setup.php:392 +#: ../../enterprise/godmode/setup/setup.php:308 #: ../../include/functions_config.php:476 msgid "Min. size password" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:116 -#: ../../enterprise/godmode/setup/setup.php:400 +#: ../../enterprise/godmode/setup/setup.php:316 msgid " Caracters" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:119 #: ../../enterprise/meta/include/functions_meta.php:396 -#: ../../enterprise/godmode/setup/setup.php:421 +#: ../../enterprise/godmode/setup/setup.php:337 #: ../../include/functions_config.php:480 msgid "Password expiration" msgstr "" @@ -6487,25 +6499,25 @@ msgid "Set 0 if never expire." msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:120 -#: ../../enterprise/godmode/setup/setup.php:429 +#: ../../enterprise/godmode/setup/setup.php:345 msgid " Days" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:123 #: ../../enterprise/meta/include/functions_meta.php:416 -#: ../../enterprise/godmode/setup/setup.php:441 +#: ../../enterprise/godmode/setup/setup.php:357 #: ../../include/functions_config.php:488 msgid "User blocked if login fails" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:124 -#: ../../enterprise/godmode/setup/setup.php:449 +#: ../../enterprise/godmode/setup/setup.php:365 msgid " Minutes" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:127 #: ../../enterprise/meta/include/functions_meta.php:426 -#: ../../enterprise/godmode/setup/setup.php:452 +#: ../../enterprise/godmode/setup/setup.php:368 #: ../../include/functions_config.php:492 msgid "Number of failed login attempts" msgstr "" @@ -6515,68 +6527,68 @@ msgid "Two attempts minimum" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/godmode/setup/setup.php:460 +#: ../../enterprise/godmode/setup/setup.php:376 msgid " Attempts" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:131 #: ../../enterprise/meta/include/functions_meta.php:448 -#: ../../enterprise/godmode/setup/setup.php:481 +#: ../../enterprise/godmode/setup/setup.php:397 #: ../../include/functions_config.php:512 msgid "Compare previous password" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:135 #: ../../enterprise/meta/include/functions_meta.php:436 -#: ../../enterprise/godmode/setup/setup.php:472 +#: ../../enterprise/godmode/setup/setup.php:388 #: ../../include/functions_config.php:508 msgid "Enable password history" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:140 #: ../../enterprise/meta/include/functions_meta.php:459 -#: ../../enterprise/godmode/setup/setup.php:463 +#: ../../enterprise/godmode/setup/setup.php:379 #: ../../include/functions_config.php:504 msgid "Apply password policy to admin users" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:146 #: ../../enterprise/meta/include/functions_meta.php:406 -#: ../../enterprise/godmode/setup/setup.php:432 +#: ../../enterprise/godmode/setup/setup.php:348 #: ../../include/functions_config.php:484 msgid "Force change password on first login" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:152 #: ../../enterprise/meta/include/functions_meta.php:376 -#: ../../enterprise/godmode/setup/setup.php:403 +#: ../../enterprise/godmode/setup/setup.php:319 #: ../../include/functions_config.php:496 msgid "Password must have numbers" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:156 #: ../../enterprise/meta/include/functions_meta.php:386 -#: ../../enterprise/godmode/setup/setup.php:412 +#: ../../enterprise/godmode/setup/setup.php:328 #: ../../include/functions_config.php:500 msgid "Password must have symbols" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:160 #: ../../enterprise/meta/include/functions_meta.php:470 -#: ../../enterprise/godmode/setup/setup.php:493 +#: ../../enterprise/godmode/setup/setup.php:409 #: ../../include/functions_config.php:516 msgid "Activate reset password" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:165 #: ../../enterprise/meta/include/functions_meta.php:480 -#: ../../enterprise/godmode/setup/setup.php:504 +#: ../../enterprise/godmode/setup/setup.php:420 #: ../../include/functions_config.php:520 msgid "Exclusion word list for passwords" msgstr "" #: ../../enterprise/meta/advanced/metasetup.password.php:193 -#: ../../enterprise/godmode/setup/setup.php:574 +#: ../../enterprise/godmode/setup/setup.php:497 msgid "Enter restricted passwords..." msgstr "" @@ -6594,7 +6606,7 @@ msgstr "" #: ../../godmode/netflow/nf_item_list.php:49 #: ../../godmode/netflow/nf_edit.php:53 #: ../../godmode/netflow/nf_edit_form.php:69 -#: ../../operation/agentes/ver_agente.php:1389 +#: ../../operation/agentes/ver_agente.php:1395 #: ../../operation/netflow/nf_live_view.php:149 msgid "Main" msgstr "" @@ -6657,7 +6669,7 @@ msgid "" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:117 -#: ../../godmode/setup/setup_general.php:529 +#: ../../godmode/setup/setup_general.php:610 msgid "Mail configuration" msgstr "" @@ -6667,7 +6679,7 @@ msgid "From dir" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:125 -#: ../../godmode/setup/setup_general.php:549 +#: ../../godmode/setup/setup_general.php:630 #: ../../include/functions_config.php:380 msgid "From name" msgstr "" @@ -6683,29 +6695,29 @@ msgid "Port SMTP" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:134 -#: ../../godmode/setup/setup_general.php:579 +#: ../../godmode/setup/setup_general.php:660 #: ../../include/functions_config.php:388 msgid "Encryption" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:140 #: ../../godmode/gis_maps/configure_gis_map.php:575 -#: ../../godmode/setup/setup_general.php:585 +#: ../../godmode/setup/setup_general.php:666 #: ../../godmode/reporting/create_container.php:294 #: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/events.php:1042 ../../include/ajax/graph.ajax.php:145 +#: ../../include/ajax/events.php:1043 ../../include/ajax/graph.ajax.php:145 #: ../../include/functions_html.php:4742 msgid "none" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:145 -#: ../../godmode/setup/setup_general.php:590 +#: ../../godmode/setup/setup_general.php:671 #: ../../include/functions_config.php:392 msgid "Email user" msgstr "" #: ../../enterprise/meta/advanced/metasetup.mail.php:148 -#: ../../godmode/setup/setup_general.php:600 +#: ../../godmode/setup/setup_general.php:681 #: ../../include/functions_config.php:396 msgid "Email password" msgstr "" @@ -6732,12 +6744,12 @@ msgstr "" #: ../../enterprise/operation/log/elasticsearch_interface.php:31 #: ../../enterprise/operation/log/log_viewer.php:378 #: ../../enterprise/operation/log/log_viewer.php:418 -#: ../../enterprise/operation/menu.php:164 +#: ../../enterprise/operation/menu.php:151 msgid "Log viewer" msgstr "" #: ../../enterprise/meta/advanced/metasetup.php:91 -#: ../../enterprise/godmode/menu.php:136 +#: ../../enterprise/godmode/menu.php:127 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 #: ../../operation/agentes/datos_agente.php:180 @@ -6745,7 +6757,7 @@ msgid "History database" msgstr "" #: ../../enterprise/meta/advanced/metasetup.php:102 -#: ../../enterprise/meta/advanced/metasetup.php:257 ../../godmode/menu.php:347 +#: ../../enterprise/meta/advanced/metasetup.php:257 ../../godmode/menu.php:350 #: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 msgid "Authentication" msgstr "" @@ -6762,7 +6774,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.php:128 #: ../../enterprise/meta/advanced/metasetup.php:227 -#: ../../enterprise/meta/advanced/metasetup.php:273 ../../godmode/menu.php:418 +#: ../../enterprise/meta/advanced/metasetup.php:273 ../../godmode/menu.php:421 #: ../../godmode/setup/file_manager.php:47 #: ../../godmode/setup/file_manager.php:60 msgid "File manager" @@ -6779,7 +6791,7 @@ msgid "Mail" msgstr "" #: ../../enterprise/meta/advanced/metasetup.php:152 -#: ../../enterprise/meta/advanced/metasetup.php:285 ../../godmode/menu.php:371 +#: ../../enterprise/meta/advanced/metasetup.php:285 ../../godmode/menu.php:374 #: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 msgid "Notifications" msgstr "" @@ -6864,7 +6876,7 @@ msgstr "" #: ../../enterprise/meta/advanced/policymanager.apply.php:198 #: ../../enterprise/include/functions_groups.php:33 -#: ../../enterprise/operation/agentes/ver_agente.php:239 +#: ../../enterprise/operation/agentes/ver_agente.php:216 #: ../../include/functions_networkmap.php:1299 #: ../../include/functions_maps.php:42 #: ../../include/lib/Dashboard/Widgets/tree_view.php:333 @@ -6875,7 +6887,7 @@ msgstr "" #: ../../enterprise/meta/advanced/policymanager.apply.php:200 #: ../../enterprise/godmode/servers/HA_cluster.php:97 -#: ../../godmode/menu.php:294 ../../godmode/setup/os.php:225 +#: ../../godmode/menu.php:297 ../../godmode/setup/os.php:225 #: ../../godmode/reporting/visual_console_builder.wizard.php:333 #: ../../mobile/include/functions_web.php:28 msgid "Servers" @@ -6884,8 +6896,8 @@ msgstr "" #: ../../enterprise/meta/advanced/policymanager.apply.php:213 #: ../../enterprise/meta/advanced/policymanager.queue.php:311 #: ../../enterprise/godmode/policies/policy_queue.php:714 -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/policies/policy_agents.php:890 +#: ../../enterprise/godmode/policies/policy_agents.php:1405 #: ../../include/functions_visual_map_editor.php:641 msgid "Apply" msgstr "" @@ -6981,10 +6993,10 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_modules.php:518 #: ../../enterprise/godmode/setup/setup_metaconsole.php:147 #: ../../godmode/users/user_list.php:432 -#: ../../godmode/agentes/configurar_agente.php:2208 +#: ../../godmode/agentes/configurar_agente.php:2224 #: ../../godmode/agentes/modificar_agente.php:234 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:373 +#: ../../godmode/alerts/alert_list.php:382 #: ../../include/ajax/alert_list.ajax.php:358 msgid "Successfully enabled" msgstr "" @@ -6993,10 +7005,10 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:127 #: ../../enterprise/godmode/policies/policy_modules.php:519 #: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../godmode/agentes/configurar_agente.php:2209 +#: ../../godmode/agentes/configurar_agente.php:2225 #: ../../godmode/agentes/modificar_agente.php:235 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:374 +#: ../../godmode/alerts/alert_list.php:383 #: ../../include/ajax/alert_list.ajax.php:360 msgid "Could not be enabled" msgstr "" @@ -7006,10 +7018,10 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_modules.php:535 #: ../../enterprise/godmode/setup/setup_metaconsole.php:156 #: ../../godmode/users/user_list.php:426 -#: ../../godmode/agentes/configurar_agente.php:2233 +#: ../../godmode/agentes/configurar_agente.php:2249 #: ../../godmode/agentes/modificar_agente.php:277 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/alerts/alert_list.php:400 +#: ../../godmode/alerts/alert_list.php:418 #: ../../include/ajax/alert_list.ajax.php:379 msgid "Successfully disabled" msgstr "" @@ -7077,9 +7089,9 @@ msgstr "" #: ../../include/functions_visual_map_editor.php:193 #: ../../include/functions_visual_map_editor.php:779 #: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/functions_visual_map.php:4259 -#: ../../include/rest-api/models/VisualConsole/Item.php:1941 -#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../include/functions_visual_map.php:4210 +#: ../../include/rest-api/models/VisualConsole/Item.php:1942 +#: ../../include/rest-api/models/VisualConsole/Item.php:2136 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:325 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365 @@ -7171,7 +7183,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.consoles.php:744 #: ../../enterprise/meta/advanced/metasetup.consoles.php:749 #: ../../enterprise/godmode/policies/policy_modules.php:413 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:609 #: ../../enterprise/godmode/setup/setup_history.php:265 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 @@ -7281,7 +7293,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 #: ../../enterprise/tools/ipam/ipam.php:426 #: ../../operation/search_agents.php:132 ../../operation/search_agents.php:133 -#: ../../operation/agentes/ver_agente.php:1369 +#: ../../operation/agentes/ver_agente.php:1375 msgid "Manage" msgstr "" @@ -7324,20 +7336,20 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 #: ../../godmode/modules/manage_nc_groups.php:84 #: ../../godmode/users/profile_list.php:269 -#: ../../godmode/users/configure_user.php:554 -#: ../../godmode/agentes/configurar_agente.php:892 +#: ../../godmode/users/configure_user.php:568 +#: ../../godmode/agentes/configurar_agente.php:905 #: ../../godmode/agentes/planned_downtime.editor.php:652 #: ../../godmode/snmpconsole/snmp_alert.php:302 #: ../../godmode/snmpconsole/snmp_filters.php:164 -#: ../../godmode/alerts/alert_commands.php:658 +#: ../../godmode/alerts/alert_commands.php:659 #: ../../godmode/alerts/configure_alert_template.php:536 #: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:66 #: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:44 -#: ../../include/functions_alerts.php:2750 +#: ../../include/functions_alerts.php:2754 #: ../../include/class/CalendarManager.class.php:537 #: ../../include/class/CalendarManager.class.php:894 -#: ../../include/functions_planned_downtimes.php:114 -#: ../../include/functions_planned_downtimes.php:849 +#: ../../include/functions_planned_downtimes.php:115 +#: ../../include/functions_planned_downtimes.php:850 msgid "Successfully created" msgstr "" @@ -7357,7 +7369,7 @@ msgstr "" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1333 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1359 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 @@ -7369,7 +7381,7 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups.php:118 #: ../../godmode/users/profile_list.php:252 #: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1202 +#: ../../godmode/agentes/configurar_agente.php:1215 #: ../../godmode/agentes/planned_downtime.editor.php:654 #: ../../godmode/netflow/nf_edit_form.php:139 #: ../../godmode/snmpconsole/snmp_alert.php:444 @@ -7381,11 +7393,11 @@ msgstr "" #: ../../godmode/alerts/alert_list.php:94 #: ../../godmode/alerts/alert_list.php:319 ../../godmode/setup/news.php:107 #: ../../godmode/setup/gis.php:39 ../../godmode/setup/links.php:63 -#: ../../godmode/events/event_edit_filter.php:232 -#: ../../include/functions_alerts.php:2750 +#: ../../godmode/events/event_edit_filter.php:242 +#: ../../include/functions_alerts.php:2754 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 -#: ../../include/functions_planned_downtimes.php:124 +#: ../../include/functions_planned_downtimes.php:125 msgid "Successfully updated" msgstr "" @@ -7440,7 +7452,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policies.php:509 #: ../../enterprise/godmode/policies/policy_collections.php:31 #: ../../enterprise/godmode/menu.php:58 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2188 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2217 #: ../../enterprise/include/functions_policies.php:3799 #: ../../godmode/servers/modificar_server.php:146 #: ../../general/first_task/collections.php:22 @@ -7525,11 +7537,10 @@ msgstr "" #: ../../include/functions_reporting_html.php:2839 #: ../../include/functions_reporting_html.php:2912 #: ../../include/ajax/module.php:995 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_graph.php:3713 +#: ../../include/functions_graph.php:3504 #: ../../include/functions_netflow.php:301 -#: ../../include/functions_reporting.php:4362 -#: ../../include/functions_reporting.php:4403 -#: ../../include/functions_reporting.php:5154 +#: ../../include/functions_reporting.php:4625 +#: ../../include/functions_reporting.php:4666 #: ../../include/functions_events.php:218 #: ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 @@ -7601,7 +7612,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/collections.editor.php:424 #: ../../enterprise/godmode/agentes/collections.editor.php:446 #: ../../enterprise/include/functions_collection.php:186 -#: ../../operation/agentes/ver_agente.php:1677 +#: ../../operation/agentes/ver_agente.php:1695 msgid "Files" msgstr "" @@ -7701,7 +7712,7 @@ msgstr "" #: ../../enterprise/meta/advanced/collections.data.php:435 #: ../../enterprise/meta/include/functions_autoprovision.php:569 #: ../../enterprise/godmode/agentes/collections.data.php:523 -#: ../../include/class/SnmpConsole.class.php:1407 +#: ../../include/class/SnmpConsole.class.php:1408 msgid "Description:" msgstr "" @@ -7832,7 +7843,7 @@ msgstr "" #: ../../enterprise/meta/advanced/cron_main.php:450 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 #: ../../godmode/events/event_responses.editor.php:146 -#: ../../include/ajax/events.php:2072 ../../include/ajax/events.php:2537 +#: ../../include/ajax/events.php:2083 ../../include/ajax/events.php:2548 #: ../../include/class/ExternalTools.class.php:354 #: ../../include/lib/Dashboard/Widgets/events_list.php:640 #: ../../operation/events/events.php:2550 @@ -7849,7 +7860,7 @@ msgstr "" #: ../../enterprise/operation/log/log_viewer.php:994 #: ../../enterprise/operation/services/services.treeview_services.php:384 #: ../../extensions/insert_data.php:224 -#: ../../godmode/agentes/planned_downtime.editor.php:1855 +#: ../../godmode/agentes/planned_downtime.editor.php:1859 #: ../../godmode/alerts/configure_alert_template.php:1456 #: ../../godmode/alerts/configure_alert_template.php:1540 #: ../../godmode/setup/news.php:322 @@ -7859,12 +7870,12 @@ msgstr "" #: ../../operation/agentes/interface_traffic_graph_win.php:436 #: ../../operation/agentes/datos_agente.php:312 #: ../../operation/agentes/estado_monitores.php:455 -#: ../../operation/network/network_report.php:338 +#: ../../operation/network/network_report.php:348 #: ../../operation/network/network_usage_map.php:184 #: ../../operation/netflow/nf_live_view.php:753 #: ../../operation/reporting/reporting_viewer.php:367 #: ../../operation/reporting/reporting_viewer.php:387 -#: ../../operation/reporting/graph_viewer.php:423 +#: ../../operation/reporting/graph_viewer.php:420 #: ../../operation/events/events.php:3136 msgid "Choose time" msgstr "" @@ -7881,7 +7892,7 @@ msgstr "" #: ../../enterprise/operation/log/log_viewer.php:995 #: ../../enterprise/operation/services/services.treeview_services.php:385 #: ../../extensions/insert_data.php:225 -#: ../../godmode/agentes/planned_downtime.editor.php:1856 +#: ../../godmode/agentes/planned_downtime.editor.php:1860 #: ../../godmode/alerts/configure_alert_template.php:1457 #: ../../godmode/alerts/configure_alert_template.php:1541 #: ../../godmode/setup/news.php:323 @@ -7891,12 +7902,12 @@ msgstr "" #: ../../operation/agentes/interface_traffic_graph_win.php:437 #: ../../operation/agentes/datos_agente.php:313 #: ../../operation/agentes/estado_monitores.php:456 -#: ../../operation/network/network_report.php:339 +#: ../../operation/network/network_report.php:349 #: ../../operation/network/network_usage_map.php:185 #: ../../operation/netflow/nf_live_view.php:754 #: ../../operation/reporting/reporting_viewer.php:368 #: ../../operation/reporting/reporting_viewer.php:388 -#: ../../operation/reporting/graph_viewer.php:424 +#: ../../operation/reporting/graph_viewer.php:421 #: ../../operation/events/events.php:3137 msgid "Time" msgstr "" @@ -7912,7 +7923,7 @@ msgstr "" #: ../../enterprise/operation/log/log_viewer.php:996 #: ../../enterprise/operation/services/services.treeview_services.php:386 #: ../../extensions/insert_data.php:226 -#: ../../godmode/agentes/planned_downtime.editor.php:1857 +#: ../../godmode/agentes/planned_downtime.editor.php:1861 #: ../../godmode/alerts/configure_alert_template.php:1458 #: ../../godmode/alerts/configure_alert_template.php:1542 #: ../../godmode/setup/news.php:324 @@ -7923,12 +7934,12 @@ msgstr "" #: ../../operation/agentes/interface_traffic_graph_win.php:438 #: ../../operation/agentes/datos_agente.php:314 #: ../../operation/agentes/estado_monitores.php:457 -#: ../../operation/network/network_report.php:340 +#: ../../operation/network/network_report.php:350 #: ../../operation/network/network_usage_map.php:186 #: ../../operation/netflow/nf_live_view.php:755 #: ../../operation/reporting/reporting_viewer.php:369 #: ../../operation/reporting/reporting_viewer.php:389 -#: ../../operation/reporting/graph_viewer.php:425 +#: ../../operation/reporting/graph_viewer.php:422 #: ../../operation/events/events.php:3138 msgid "Hour" msgstr "" @@ -7944,7 +7955,7 @@ msgstr "" #: ../../enterprise/operation/log/log_viewer.php:997 #: ../../enterprise/operation/services/services.treeview_services.php:387 #: ../../extensions/insert_data.php:227 -#: ../../godmode/agentes/planned_downtime.editor.php:1858 +#: ../../godmode/agentes/planned_downtime.editor.php:1862 #: ../../godmode/alerts/configure_alert_template.php:1459 #: ../../godmode/alerts/configure_alert_template.php:1543 #: ../../godmode/setup/news.php:325 @@ -7955,12 +7966,12 @@ msgstr "" #: ../../operation/agentes/interface_traffic_graph_win.php:439 #: ../../operation/agentes/datos_agente.php:315 #: ../../operation/agentes/estado_monitores.php:458 -#: ../../operation/network/network_report.php:341 +#: ../../operation/network/network_report.php:351 #: ../../operation/network/network_usage_map.php:187 #: ../../operation/netflow/nf_live_view.php:756 #: ../../operation/reporting/reporting_viewer.php:370 #: ../../operation/reporting/reporting_viewer.php:390 -#: ../../operation/reporting/graph_viewer.php:426 +#: ../../operation/reporting/graph_viewer.php:423 #: ../../operation/events/events.php:3139 msgid "Minute" msgstr "" @@ -7976,7 +7987,7 @@ msgstr "" #: ../../enterprise/operation/log/log_viewer.php:998 #: ../../enterprise/operation/services/services.treeview_services.php:388 #: ../../extensions/insert_data.php:228 -#: ../../godmode/agentes/planned_downtime.editor.php:1859 +#: ../../godmode/agentes/planned_downtime.editor.php:1863 #: ../../godmode/alerts/configure_alert_template.php:1460 #: ../../godmode/alerts/configure_alert_template.php:1544 #: ../../godmode/setup/news.php:326 @@ -7986,12 +7997,12 @@ msgstr "" #: ../../operation/agentes/interface_traffic_graph_win.php:440 #: ../../operation/agentes/datos_agente.php:316 #: ../../operation/agentes/estado_monitores.php:459 -#: ../../operation/network/network_report.php:342 +#: ../../operation/network/network_report.php:352 #: ../../operation/network/network_usage_map.php:188 #: ../../operation/netflow/nf_live_view.php:757 #: ../../operation/reporting/reporting_viewer.php:371 #: ../../operation/reporting/reporting_viewer.php:391 -#: ../../operation/reporting/graph_viewer.php:427 +#: ../../operation/reporting/graph_viewer.php:424 #: ../../operation/events/events.php:3140 msgid "Second" msgstr "" @@ -8003,28 +8014,28 @@ msgstr "" #: ../../enterprise/godmode/wizards/consoletask_js.php:46 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4036 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4346 -#: ../../enterprise/operation/agentes/agent_inventory.php:133 #: ../../enterprise/operation/log/log_viewer.php:987 #: ../../enterprise/operation/log/log_viewer.php:999 #: ../../enterprise/operation/services/services.treeview_services.php:389 #: ../../extensions/insert_data.php:229 -#: ../../godmode/agentes/planned_downtime.editor.php:1860 +#: ../../godmode/agentes/planned_downtime.editor.php:1864 #: ../../godmode/alerts/configure_alert_template.php:1461 #: ../../godmode/alerts/configure_alert_template.php:1545 #: ../../godmode/setup/news.php:327 #: ../../godmode/reporting/reporting_builder.item_editor.php:5062 -#: ../../include/functions.php:501 ../../include/functions.php:632 +#: ../../include/functions.php:505 ../../include/functions.php:636 #: ../../include/lib/Dashboard/Widgets/tree_view.php:691 #: ../../operation/tree.php:578 ../../operation/agentes/stat_win.php:609 #: ../../operation/agentes/interface_traffic_graph_win.php:441 #: ../../operation/agentes/datos_agente.php:317 #: ../../operation/agentes/estado_monitores.php:460 -#: ../../operation/network/network_report.php:343 +#: ../../operation/agentes/agent_inventory.php:133 +#: ../../operation/network/network_report.php:353 #: ../../operation/network/network_usage_map.php:189 #: ../../operation/netflow/nf_live_view.php:758 #: ../../operation/reporting/reporting_viewer.php:372 #: ../../operation/reporting/reporting_viewer.php:392 -#: ../../operation/reporting/graph_viewer.php:428 +#: ../../operation/reporting/graph_viewer.php:425 #: ../../operation/events/events.php:3141 msgid "Now" msgstr "" @@ -8040,13 +8051,14 @@ msgstr "" #: ../../enterprise/operation/log/log_viewer.php:1000 #: ../../enterprise/operation/services/services.treeview_services.php:390 #: ../../extensions/insert_data.php:230 -#: ../../godmode/agentes/planned_downtime.editor.php:1861 +#: ../../godmode/agentes/planned_downtime.editor.php:1865 #: ../../godmode/alerts/configure_alert_template.php:1462 #: ../../godmode/alerts/configure_alert_template.php:1546 #: ../../godmode/setup/news.php:328 #: ../../godmode/reporting/reporting_builder.item_editor.php:5063 #: ../../godmode/wizards/HostDevices.class.php:798 #: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 +#: ../../include/functions_menu.php:822 #: ../../include/class/WelcomeWindow.class.php:159 #: ../../include/lib/Dashboard/Widgets/tree_view.php:692 #: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:579 @@ -8054,12 +8066,12 @@ msgstr "" #: ../../operation/agentes/interface_traffic_graph_win.php:442 #: ../../operation/agentes/datos_agente.php:318 #: ../../operation/agentes/estado_monitores.php:461 -#: ../../operation/network/network_report.php:344 +#: ../../operation/network/network_report.php:354 #: ../../operation/network/network_usage_map.php:190 #: ../../operation/netflow/nf_live_view.php:759 #: ../../operation/reporting/reporting_viewer.php:373 #: ../../operation/reporting/reporting_viewer.php:393 -#: ../../operation/reporting/graph_viewer.php:429 +#: ../../operation/reporting/graph_viewer.php:426 #: ../../operation/events/events.php:3142 msgid "Close" msgstr "" @@ -8067,9 +8079,9 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:108 #: ../../enterprise/godmode/modules/configure_local_component.php:166 #: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/users/configure_user.php:1390 -#: ../../godmode/alerts/alert_commands.php:142 -#: ../../godmode/alerts/alert_commands.php:183 +#: ../../godmode/users/configure_user.php:1449 +#: ../../godmode/alerts/alert_commands.php:143 +#: ../../godmode/alerts/alert_commands.php:184 #: ../../godmode/alerts/configure_alert_template.php:933 #: ../../godmode/alerts/configure_alert_template.php:974 #: ../../godmode/alerts/configure_alert_template.php:1137 @@ -8101,19 +8113,18 @@ msgstr "" #: ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1151 #: ../../include/functions_reporting_html.php:2621 -#: ../../include/functions.php:1255 ../../include/functions_graph.php:2873 -#: ../../include/functions_graph.php:3574 -#: ../../include/functions_graph.php:3576 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:433 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:429 +#: ../../include/functions.php:1281 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 #: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:3042 +#: ../../include/functions_events.php:3021 #: ../../operation/events/events.php:803 msgid "System" msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:145 #: ../../godmode/setup/setup_general.php:126 +#: ../../include/functions_menu.php:818 msgid "Database" msgstr "" @@ -8152,11 +8163,11 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:158 #: ../../enterprise/meta/include/functions_meta.php:150 #: ../../godmode/setup/setup_general.php:98 -msgid "Phantomjs bin directory" +msgid "Chromium path" msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:158 -msgid "Directory where phantomjs binary file exists and has execution grants." +msgid "Directory where Chromium binary file exists and has execution grants." msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:162 @@ -8301,7 +8312,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:218 #: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:1524 +#: ../../include/functions_config.php:1505 msgid "Disable custom live view filters" msgstr "" @@ -8313,7 +8324,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:222 #: ../../enterprise/meta/include/functions_meta.php:210 -#: ../../godmode/setup/setup_general.php:370 +#: ../../godmode/setup/setup_general.php:451 #: ../../include/functions_config.php:312 msgid "Command Snapshot" msgstr "" @@ -8360,7 +8371,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:288 #: ../../enterprise/meta/include/functions_meta.php:275 #: ../../enterprise/godmode/setup/setup.php:90 -#: ../../include/functions_config.php:415 +#: ../../include/functions_config.php:420 msgid "Size of collection" msgstr "" @@ -8403,7 +8414,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:324 #: ../../enterprise/meta/include/functions_meta.php:305 -#: ../../godmode/setup/setup_general.php:467 +#: ../../godmode/setup/setup_general.php:548 msgid "Enable console log" msgstr "" @@ -8413,7 +8424,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:345 #: ../../enterprise/meta/include/functions_meta.php:315 -#: ../../godmode/setup/setup_general.php:478 +#: ../../godmode/setup/setup_general.php:559 msgid "Enable audit log" msgstr "" @@ -8424,15 +8435,15 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:368 #: ../../enterprise/meta/advanced/metasetup.setup.php:369 #: ../../enterprise/meta/include/functions_meta.php:325 -#: ../../godmode/setup/setup_general.php:500 -#: ../../godmode/setup/setup_general.php:501 +#: ../../godmode/setup/setup_general.php:581 +#: ../../godmode/setup/setup_general.php:582 #: ../../include/functions_config.php:364 msgid "Enable console report" msgstr "" #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:667 +#: ../../godmode/groups/group_list.php:672 #, php-format msgid "Error connecting to %s" msgstr "" @@ -8496,12 +8507,12 @@ msgstr "" #: ../../enterprise/operation/log/log_viewer.php:655 #: ../../godmode/massive/massive_copy_modules.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:1649 -#: ../../godmode/events/event_edit_filter.php:673 +#: ../../godmode/events/event_edit_filter.php:683 #: ../../godmode/events/custom_events.php:109 #: ../../include/functions_events.php:212 #: ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4381 -#: ../../include/functions_events.php:4462 +#: ../../include/functions_events.php:4360 +#: ../../include/functions_events.php:4441 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:354 #: ../../operation/agentes/pandora_networkmap.view.php:173 @@ -8520,7 +8531,6 @@ msgstr "" #: ../../enterprise/meta/advanced/policymanager.queue.php:257 #: ../../enterprise/extensions/resource_exportation/functions.php:18 #: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 #: ../../enterprise/godmode/agentes/plugins_manager.php:193 #: ../../enterprise/godmode/policies/policy_queue.php:593 #: ../../enterprise/godmode/policies/policy_queue.php:647 @@ -8535,7 +8545,8 @@ msgstr "" #: ../../enterprise/operation/agentes/collection_view.php:74 #: ../../godmode/agentes/status_monitor_custom_fields.php:73 #: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../godmode/agentes/module_manager.php:883 +#: ../../godmode/agentes/inventory_manager.php:220 +#: ../../godmode/agentes/module_manager.php:884 #: ../../godmode/alerts/alert_view.php:148 #: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:987 #: ../../operation/agentes/status_monitor.php:1315 @@ -8569,7 +8580,7 @@ msgid "" msgstr "" #: ../../enterprise/meta/advanced/metasetup.performance.php:74 -#: ../../godmode/menu.php:350 ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:353 ../../godmode/setup/setup.php:125 #: ../../godmode/setup/setup.php:260 msgid "Performance" msgstr "" @@ -8634,34 +8645,6 @@ msgstr "" msgid "Max. macro data fields" msgstr "" -#: ../../enterprise/meta/advanced/metasetup.performance.php:154 -#: ../../godmode/setup/performance.php:671 -#, php-format -msgid "" -"%s web2image cache system cleanup. It is always cleaned up after perform an " -"upgrade" -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:159 -#: ../../godmode/setup/performance.php:688 -msgid "PhantomJS cache cleanup " -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:166 -#: ../../godmode/setup/performance.php:695 -msgid "No scheduled" -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:167 -#: ../../godmode/setup/performance.php:696 -msgid "Each week" -msgstr "" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:168 -#: ../../godmode/setup/performance.php:697 -msgid "Each day" -msgstr "" - #: ../../enterprise/meta/advanced/collections.php:111 msgid "Collection has been deleted" msgstr "" @@ -8738,7 +8721,7 @@ msgstr "" #: ../../enterprise/meta/advanced/collections.php:251 #: ../../enterprise/godmode/policies/policy_queue.php:524 #: ../../enterprise/godmode/policies/policy_queue.php:636 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:384 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 #: ../../godmode/users/user_list.php:512 #: ../../godmode/snmpconsole/snmp_alert.php:1180 @@ -8753,67 +8736,67 @@ msgid "Error: The main directory of collections does not exist." msgstr "" #: ../../enterprise/meta/advanced/collections.php:341 -#: ../../enterprise/godmode/agentes/collections.php:428 +#: ../../enterprise/godmode/agentes/collections.php:442 #: ../../enterprise/include/functions_groups.php:81 -#: ../../enterprise/operation/agentes/ver_agente.php:215 -#: ../../godmode/agentes/configurar_agente.php:713 +#: ../../enterprise/operation/agentes/ver_agente.php:192 +#: ../../godmode/agentes/configurar_agente.php:726 msgid "Collection" msgstr "" #: ../../enterprise/meta/advanced/collections.php:364 #: ../../enterprise/godmode/agentes/collection_manager.php:110 -#: ../../enterprise/godmode/agentes/collections.php:429 +#: ../../enterprise/godmode/agentes/collections.php:443 #: ../../enterprise/godmode/policies/policy_collections.php:170 #: ../../enterprise/godmode/policies/policy_collections.php:264 msgid "Short Name" msgstr "" #: ../../enterprise/meta/advanced/collections.php:425 -#: ../../enterprise/godmode/agentes/collections.php:461 +#: ../../enterprise/godmode/agentes/collections.php:475 msgid "Are you sure to delete?" msgstr "" #: ../../enterprise/meta/advanced/collections.php:430 #: ../../enterprise/meta/advanced/collections.php:431 -#: ../../enterprise/godmode/agentes/collections.php:462 +#: ../../enterprise/godmode/agentes/collections.php:476 #: ../../include/class/SatelliteCollection.class.php:590 msgid "Delete collection" msgstr "" #: ../../enterprise/meta/advanced/collections.php:440 -#: ../../enterprise/godmode/agentes/collections.php:469 +#: ../../enterprise/godmode/agentes/collections.php:483 msgid "Are you sure to re-apply?" msgstr "" #: ../../enterprise/meta/advanced/collections.php:441 -#: ../../enterprise/godmode/agentes/collections.php:470 +#: ../../enterprise/godmode/agentes/collections.php:484 msgid "Re-Apply changes" msgstr "" #: ../../enterprise/meta/advanced/collections.php:448 -#: ../../enterprise/godmode/agentes/collections.php:477 +#: ../../enterprise/godmode/agentes/collections.php:491 msgid "Are you sure to apply?" msgstr "" #: ../../enterprise/meta/advanced/collections.php:449 -#: ../../enterprise/godmode/agentes/collections.php:478 +#: ../../enterprise/godmode/agentes/collections.php:492 msgid "Apply changes" msgstr "" #: ../../enterprise/meta/advanced/collections.php:454 -#: ../../enterprise/godmode/agentes/collections.php:483 +#: ../../enterprise/godmode/agentes/collections.php:497 msgid "Are you sure to re-create directory?" msgstr "" #: ../../enterprise/meta/advanced/collections.php:459 #: ../../enterprise/meta/advanced/collections.php:460 -#: ../../enterprise/godmode/agentes/collections.php:488 -#: ../../enterprise/godmode/agentes/collections.php:489 +#: ../../enterprise/godmode/agentes/collections.php:502 +#: ../../enterprise/godmode/agentes/collections.php:503 msgid "The collection directory does not exist. Re-create directory" msgstr "" #: ../../enterprise/meta/advanced/collections.php:492 -#: ../../enterprise/godmode/agentes/collections.php:509 +#: ../../enterprise/godmode/agentes/collections.php:525 msgid "Re-create directories" msgstr "" @@ -8843,7 +8826,7 @@ msgstr "" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 #: ../../enterprise/include/functions_reporting_csv.php:1064 #: ../../enterprise/include/class/CommandCenter.class.php:451 -#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 +#: ../../extensions/api_checker.php:240 ../../godmode/extensions.php:148 #: ../../godmode/reporting/reporting_builder.item_editor.php:4537 #: ../../include/functions_reporting_html.php:2370 #: ../../include/functions_reporting_html.php:4872 @@ -8884,7 +8867,7 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_acl.php:574 #: ../../enterprise/include/class/SAPView.class.php:409 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2870 -#: ../../enterprise/include/functions_ipam.php:1779 +#: ../../enterprise/include/functions_ipam.php:1787 #: ../../enterprise/operation/services/services.treeview_services.php:164 #: ../../enterprise/operation/services/services.treeview_services.php:168 #: ../../enterprise/operation/services/services.list.php:454 @@ -8901,8 +8884,8 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.list_items.php:217 #: ../../godmode/reporting/reporting_builder.list_items.php:261 #: ../../godmode/reporting/reporting_builder.item_editor.php:1123 -#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3386 -#: ../../include/functions_ui.php:3408 ../../include/functions_ui.php:3420 +#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3390 +#: ../../include/functions_ui.php:3412 ../../include/functions_ui.php:3424 #: ../../include/class/ModuleTemplates.class.php:766 #: ../../operation/tree.php:260 ../../operation/agentes/graphs.php:265 #: ../../operation/agentes/estado_monitores.php:594 @@ -8927,17 +8910,18 @@ msgstr "" #: ../../enterprise/include/class/SAPView.class.php:226 #: ../../enterprise/include/functions_events.php:216 #: ../../enterprise/operation/log/log_viewer.php:614 -#: ../../enterprise/operation/inventory/inventory.php:331 #: ../../godmode/modules/manage_network_components.php:752 #: ../../godmode/agentes/agent_manager.php:423 -#: ../../godmode/agentes/module_manager.php:886 +#: ../../godmode/agentes/module_manager.php:887 #: ../../godmode/massive/massive_edit_agents.php:757 #: ../../godmode/reporting/reporting_builder.item_editor.php:1218 #: ../../godmode/reporting/reporting_builder.item_editor.php:1240 #: ../../godmode/reporting/reporting_builder.item_editor.php:3649 +#: ../../godmode/events/event_edit_filter.php:753 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1045 #: ../../include/functions_reporting_html.php:2261 #: ../../include/class/AgentWizard.class.php:1279 +#: ../../operation/inventory/inventory.php:334 #: ../../operation/events/events.php:1914 msgid "Server" msgstr "" @@ -8955,9 +8939,9 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_queue.php:648 #: ../../enterprise/godmode/policies/policies.php:411 #: ../../enterprise/godmode/policies/policies.php:535 -#: ../../enterprise/godmode/policies/policy_agents.php:531 -#: ../../enterprise/godmode/policies/policy_agents.php:664 -#: ../../enterprise/godmode/policies/policy_agents.php:778 +#: ../../enterprise/godmode/policies/policy_agents.php:567 +#: ../../enterprise/godmode/policies/policy_agents.php:700 +#: ../../enterprise/godmode/policies/policy_agents.php:814 #: ../../enterprise/godmode/policies/policy.php:71 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 @@ -8965,7 +8949,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 #: ../../enterprise/include/functions_cron.php:215 #: ../../enterprise/include/functions_tasklist.php:366 -#: ../../enterprise/include/functions_reporting_pdf.php:886 +#: ../../enterprise/include/functions_reporting_pdf.php:887 #: ../../enterprise/include/functions_policies.php:3825 #: ../../enterprise/operation/services/massive/services.create.php:988 #: ../../enterprise/operation/services/massive/service.create.elements.php:383 @@ -9054,9 +9038,8 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:441 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:709 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:788 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3505 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3506 #: ../../enterprise/meta/agentsearch.php:135 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 #: ../../enterprise/godmode/agentes/collections.agents.php:94 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 #: ../../enterprise/godmode/policies/policy_linking.php:150 @@ -9073,9 +9056,6 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_inventory.php:393 -#: ../../enterprise/include/functions_inventory.php:880 -#: ../../enterprise/include/functions_inventory.php:936 #: ../../enterprise/include/functions_reporting_pdf.php:528 #: ../../enterprise/include/functions_reporting_pdf.php:536 #: ../../enterprise/include/functions_reporting_pdf.php:544 @@ -9121,10 +9101,10 @@ msgstr "" #: ../../enterprise/include/functions_events.php:80 #: ../../enterprise/operation/agentes/tag_view.php:599 #: ../../enterprise/operation/log/log_viewer.php:633 -#: ../../enterprise/operation/inventory/inventory.php:401 #: ../../enterprise/tools/ipam/ipam_network.php:398 #: ../../enterprise/tools/ipam/ipam_ajax.php:379 #: ../../extensions/insert_data.php:158 +#: ../../godmode/modules/manage_inventory_modules.php:305 #: ../../godmode/agentes/status_monitor_custom_fields.php:77 #: ../../godmode/agentes/status_monitor_custom_fields.php:143 #: ../../godmode/agentes/module_manager_editor_prediction.php:126 @@ -9164,8 +9144,8 @@ msgstr "" #: ../../mobile/operation/events.php:841 #: ../../include/functions_visual_map_editor.php:422 #: ../../include/functions_visual_map_editor.php:455 -#: ../../include/functions_reporting_html.php:546 -#: ../../include/functions_reporting_html.php:942 +#: ../../include/functions_reporting_html.php:547 +#: ../../include/functions_reporting_html.php:943 #: ../../include/functions_reporting_html.php:1054 #: ../../include/functions_reporting_html.php:1062 #: ../../include/functions_reporting_html.php:1927 @@ -9184,23 +9164,26 @@ msgstr "" #: ../../include/functions_reporting_html.php:4869 #: ../../include/functions_reporting_html.php:4917 #: ../../include/functions_reporting_html.php:4956 -#: ../../include/functions_reporting_html.php:5265 -#: ../../include/functions_reporting_html.php:5305 -#: ../../include/functions_reporting_html.php:5555 +#: ../../include/functions_reporting_html.php:5284 +#: ../../include/functions_reporting_html.php:5324 +#: ../../include/functions_reporting_html.php:5574 #: ../../include/ajax/heatmap.ajax.php:244 #: ../../include/ajax/heatmap.ajax.php:283 #: ../../include/ajax/heatmap.ajax.php:318 #: ../../include/ajax/alert_list.ajax.php:459 -#: ../../include/functions_graph.php:5288 ../../include/functions_gis.php:229 +#: ../../include/functions_inventory.php:393 +#: ../../include/functions_inventory.php:880 +#: ../../include/functions_inventory.php:936 +#: ../../include/functions_graph.php:5076 ../../include/functions_gis.php:229 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:371 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 #: ../../include/functions_reports.php:1320 #: ../../include/class/NetworkMap.class.php:2968 @@ -9208,7 +9191,7 @@ msgstr "" #: ../../include/class/NetworkMap.class.php:3295 #: ../../include/class/AgentsAlerts.class.php:410 #: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/functions_reporting.php:7013 +#: ../../include/functions_reporting.php:7228 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:337 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360 @@ -9231,11 +9214,12 @@ msgstr "" #: ../../operation/agentes/exportdata.php:83 #: ../../operation/agentes/status_monitor.php:1320 #: ../../operation/agentes/estado_monitores.php:123 -#: ../../operation/agentes/ver_agente.php:1181 +#: ../../operation/agentes/ver_agente.php:1187 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 -#: ../../operation/search_alerts.php:34 ../../operation/search_modules.php:33 -#: ../../operation/events/events.php:2611 +#: ../../operation/search_alerts.php:34 +#: ../../operation/inventory/inventory.php:404 +#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2611 msgid "Agent" msgstr "" @@ -9249,11 +9233,11 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1280 #: ../../enterprise/include/class/DeploymentCenter.class.php:1397 #: ../../enterprise/include/class/Aws.S3.php:564 -#: ../../enterprise/include/class/Aws.cloud.php:547 +#: ../../enterprise/include/class/Aws.cloud.php:546 #: ../../enterprise/include/functions_reporting.php:2317 -#: ../../enterprise/include/functions_ipam.php:1646 -#: ../../enterprise/include/functions_ipam.php:1647 -#: ../../extensions/api_checker.php:123 +#: ../../enterprise/include/functions_ipam.php:1654 +#: ../../enterprise/include/functions_ipam.php:1655 +#: ../../extensions/api_checker.php:202 #: ../../extensions/users_connected.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:70 #: ../../godmode/reporting/visual_console_builder.elements.php:790 @@ -9282,7 +9266,7 @@ msgstr "" #: ../../enterprise/include/functions_services.php:1428 #: ../../enterprise/operation/agentes/tag_view.php:131 #: ../../enterprise/operation/services/services.treeview_services.php:295 -#: ../../godmode/groups/group_list.php:1074 +#: ../../godmode/groups/group_list.php:1079 #: ../../godmode/netflow/nf_edit_form.php:236 #: ../../godmode/massive/massive_copy_modules.php:115 #: ../../godmode/massive/massive_copy_modules.php:275 @@ -9293,25 +9277,25 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:3784 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 #: ../../include/functions_reporting_html.php:2483 -#: ../../include/functions.php:1051 ../../include/functions.php:1291 -#: ../../include/functions.php:1298 ../../include/functions.php:1331 -#: ../../include/functions_graph.php:3487 -#: ../../include/functions_graph.php:3488 -#: ../../include/functions_graph.php:5068 +#: ../../include/functions.php:1077 ../../include/functions.php:1317 +#: ../../include/functions.php:1324 ../../include/functions.php:1357 +#: ../../include/functions_graph.php:3330 +#: ../../include/functions_graph.php:3332 +#: ../../include/functions_graph.php:4856 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 #: ../../include/functions_massive_operations.php:148 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 #: ../../include/lib/Dashboard/Widgets/tree_view.php:385 #: ../../include/lib/Dashboard/Widgets/tree_view.php:418 #: ../../include/lib/Dashboard/Widgets/tree_view.php:683 -#: ../../include/functions_events.php:3098 ../../operation/tree.php:212 +#: ../../include/functions_events.php:3077 ../../operation/tree.php:212 #: ../../operation/tree.php:269 ../../operation/tree.php:486 #: ../../operation/agentes/estado_agente.php:268 #: ../../operation/agentes/status_monitor.php:492 #: ../../operation/agentes/group_view.php:226 #: ../../operation/agentes/group_view.php:231 #: ../../operation/agentes/estado_monitores.php:523 -#: ../../operation/agentes/tactical.php:180 +#: ../../operation/agentes/tactical.php:181 #: ../../operation/netflow/nf_live_view.php:392 ../../general/logon_ok.php:144 msgid "Normal" msgstr "" @@ -9349,7 +9333,7 @@ msgstr "" #: ../../enterprise/operation/services/services.table_services.php:161 #: ../../extensions/module_groups.php:50 #: ../../godmode/modules/manage_network_components_form_wizard.php:418 -#: ../../godmode/groups/group_list.php:1054 +#: ../../godmode/groups/group_list.php:1059 #: ../../godmode/massive/massive_copy_modules.php:117 #: ../../godmode/massive/massive_copy_modules.php:277 #: ../../godmode/massive/massive_delete_modules.php:420 @@ -9358,14 +9342,14 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:473 #: ../../godmode/reporting/reporting_builder.item_editor.php:3786 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 -#: ../../include/functions_reporting_html.php:863 +#: ../../include/functions_reporting_html.php:864 #: ../../include/functions_reporting_html.php:2484 #: ../../include/functions_reporting_html.php:4785 -#: ../../include/functions.php:1059 ../../include/functions.php:1295 -#: ../../include/functions.php:1296 ../../include/functions.php:1298 -#: ../../include/functions.php:1339 ../../include/functions_graph.php:3507 -#: ../../include/functions_graph.php:3508 -#: ../../include/functions_graph.php:5076 ../../include/functions_ui.php:2610 +#: ../../include/functions.php:1085 ../../include/functions.php:1321 +#: ../../include/functions.php:1322 ../../include/functions.php:1324 +#: ../../include/functions.php:1365 ../../include/functions_graph.php:3354 +#: ../../include/functions_graph.php:3356 +#: ../../include/functions_graph.php:4864 ../../include/functions_ui.php:2614 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 #: ../../include/functions_massive_operations.php:150 #: ../../include/class/AgentWizard.class.php:1401 @@ -9374,14 +9358,14 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/tree_view.php:387 #: ../../include/lib/Dashboard/Widgets/tree_view.php:420 #: ../../include/lib/Dashboard/Widgets/tree_view.php:663 -#: ../../include/functions_events.php:3106 ../../operation/tree.php:214 +#: ../../include/functions_events.php:3085 ../../operation/tree.php:214 #: ../../operation/tree.php:271 ../../operation/tree.php:466 #: ../../operation/agentes/estado_agente.php:270 #: ../../operation/agentes/status_monitor.php:494 #: ../../operation/agentes/group_view.php:228 #: ../../operation/agentes/group_view.php:233 #: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/tactical.php:178 +#: ../../operation/agentes/tactical.php:179 #: ../../operation/gis_maps/render_view.php:164 ../../general/logon_ok.php:142 msgid "Critical" msgstr "" @@ -9423,11 +9407,11 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:389 #: ../../godmode/massive/massive_edit_modules.php:475 #: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/events/event_edit_filter.php:332 -#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1297 +#: ../../godmode/events/event_edit_filter.php:342 +#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1323 #: ../../include/functions_massive_operations.php:152 #: ../../include/lib/Dashboard/Widgets/events_list.php:319 -#: ../../include/functions_events.php:3054 +#: ../../include/functions_events.php:3033 #: ../../operation/agentes/estado_agente.php:272 #: ../../operation/agentes/status_monitor.php:496 #: ../../operation/events/events.php:1664 @@ -9441,7 +9425,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 #: ../../enterprise/operation/agentes/tag_view.php:137 #: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1069 +#: ../../godmode/groups/group_list.php:1074 #: ../../godmode/massive/massive_copy_modules.php:120 #: ../../godmode/massive/massive_copy_modules.php:280 #: ../../godmode/massive/massive_delete_modules.php:423 @@ -9450,7 +9434,7 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:476 #: ../../godmode/reporting/reporting_builder.item_editor.php:3789 #: ../../mobile/operation/modules.php:75 -#: ../../include/functions_reporting_html.php:656 +#: ../../include/functions_reporting_html.php:657 #: ../../include/functions_reporting_html.php:2487 #: ../../include/functions_reporting_html.php:4593 #: ../../include/functions_massive_operations.php:153 @@ -9462,7 +9446,7 @@ msgstr "" #: ../../operation/agentes/status_monitor.php:498 #: ../../operation/agentes/group_view.php:225 #: ../../operation/agentes/group_view.php:230 -#: ../../operation/agentes/tactical.php:182 ../../general/logon_ok.php:146 +#: ../../operation/agentes/tactical.php:183 ../../general/logon_ok.php:146 msgid "Not init" msgstr "" @@ -9477,15 +9461,15 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:222 #: ../../enterprise/meta/monitoring/custom_fields_view.php:228 #: ../../enterprise/meta/monitoring/custom_fields_view.php:229 -#: ../../include/ajax/events.php:847 ../../operation/events/events.php:1834 +#: ../../include/ajax/events.php:848 ../../operation/events/events.php:1834 msgid "Save filter" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:236 #: ../../enterprise/meta/monitoring/custom_fields_view.php:242 #: ../../enterprise/meta/monitoring/custom_fields_view.php:243 -#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583 -#: ../../include/ajax/events.php:599 +#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 +#: ../../include/ajax/events.php:600 #: ../../operation/netflow/nf_live_view.php:397 #: ../../operation/events/sound_events.php:184 #: ../../operation/events/events.php:1826 @@ -9502,7 +9486,7 @@ msgid "Custom Fields Data" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:293 -#: ../../godmode/events/event_edit_filter.php:660 +#: ../../godmode/events/event_edit_filter.php:670 #: ../../operation/events/events.php:1930 msgid "Module search" msgstr "" @@ -9530,7 +9514,7 @@ msgstr "" #: ../../enterprise/operation/reporting/custom_reporting.php:80 #: ../../godmode/modules/manage_network_templates.php:290 #: ../../godmode/agentes/planned_downtime.list.php:907 -#: ../../include/graphs/functions_flot.php:377 +#: ../../include/graphs/functions_flot.php:382 #: ../../include/class/ModuleTemplates.class.php:935 #: ../../operation/network/network_report.php:140 #: ../../operation/incidents/list_integriaims_incidents.php:428 @@ -9541,25 +9525,25 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:349 #: ../../enterprise/include/class/DatabaseHA.class.php:217 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 -#: ../../include/functions_ui.php:3432 +#: ../../include/functions_ui.php:3436 msgid "Processing" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:374 #: ../../mobile/operation/groups.php:153 -#: ../../include/functions_reporting_html.php:5737 +#: ../../include/functions_reporting_html.php:5756 #: ../../include/functions_agents.php:3881 msgid "Agents critical" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:387 -#: ../../include/functions_reporting_html.php:5740 +#: ../../include/functions_reporting_html.php:5759 #: ../../include/functions_agents.php:3891 msgid "Agents warning" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:400 -#: ../../include/functions_reporting_html.php:5746 +#: ../../include/functions_reporting_html.php:5765 #: ../../include/functions_agents.php:3871 #: ../../include/functions_agents.php:3925 msgid "Agents ok" @@ -9567,58 +9551,58 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:413 #: ../../mobile/operation/groups.php:156 -#: ../../include/functions_reporting_html.php:5749 +#: ../../include/functions_reporting_html.php:5768 #: ../../include/functions_agents.php:3901 msgid "Agents unknown" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:426 #: ../../mobile/operation/groups.php:150 -#: ../../include/functions_reporting_html.php:5755 +#: ../../include/functions_reporting_html.php:5774 #: ../../include/functions_agents.php:3915 msgid "Agents not init" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:452 -#: ../../include/functions_reporting.php:11751 +#: ../../include/functions_reporting.php:12037 msgid "Monitor critical" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:463 -#: ../../include/functions_reporting.php:11755 +#: ../../include/functions_reporting.php:12041 msgid "Monitor warning" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:474 -#: ../../include/functions_reporting.php:11762 +#: ../../include/functions_reporting.php:12048 msgid "Monitor normal" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:485 -#: ../../include/functions_reporting.php:11766 +#: ../../include/functions_reporting.php:12052 msgid "Monitor unknown" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:496 -#: ../../include/functions_reporting.php:11773 +#: ../../include/functions_reporting.php:12059 msgid "Monitor not init" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:511 -#: ../../include/functions_reporting_html.php:5764 -#: ../../include/functions_reporting_html.php:5769 +#: ../../include/functions_reporting_html.php:5783 +#: ../../include/functions_reporting_html.php:5788 msgid "Agents by status" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:519 -#: ../../include/functions_reporting.php:11793 -#: ../../include/functions_reporting.php:11799 +#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12085 msgid "Monitors by status" msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:533 #: ../../enterprise/operation/services/services.treeview_services.php:273 -#: ../../godmode/groups/group_list.php:1052 +#: ../../godmode/groups/group_list.php:1057 #: ../../include/lib/Dashboard/Widgets/tree_view.php:661 #: ../../operation/tree.php:464 msgid "Critical agents" @@ -9626,7 +9610,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:543 #: ../../enterprise/operation/services/services.treeview_services.php:278 -#: ../../godmode/groups/group_list.php:1057 +#: ../../godmode/groups/group_list.php:1062 #: ../../include/lib/Dashboard/Widgets/tree_view.php:666 #: ../../operation/tree.php:469 msgid "Warning agents" @@ -9634,7 +9618,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:553 #: ../../enterprise/operation/services/services.treeview_services.php:293 -#: ../../godmode/groups/group_list.php:1072 +#: ../../godmode/groups/group_list.php:1077 #: ../../include/lib/Dashboard/Widgets/tree_view.php:681 #: ../../operation/tree.php:484 msgid "Normal agents" @@ -9642,7 +9626,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:563 #: ../../enterprise/operation/services/services.treeview_services.php:283 -#: ../../godmode/groups/group_list.php:1062 +#: ../../godmode/groups/group_list.php:1067 #: ../../include/lib/Dashboard/Widgets/tree_view.php:671 #: ../../operation/tree.php:474 msgid "Unknown agents" @@ -9650,7 +9634,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:573 #: ../../enterprise/operation/services/services.treeview_services.php:288 -#: ../../godmode/groups/group_list.php:1067 +#: ../../godmode/groups/group_list.php:1072 #: ../../include/lib/Dashboard/Widgets/tree_view.php:676 #: ../../operation/tree.php:479 msgid "Not init agents" @@ -9659,7 +9643,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:602 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:274 -#: ../../godmode/groups/group_list.php:1053 +#: ../../godmode/groups/group_list.php:1058 #: ../../mobile/operation/groups.php:171 #: ../../include/lib/Dashboard/Widgets/tree_view.php:662 #: ../../operation/tree.php:465 @@ -9669,7 +9653,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:613 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:279 -#: ../../godmode/groups/group_list.php:1058 +#: ../../godmode/groups/group_list.php:1063 #: ../../mobile/operation/groups.php:168 #: ../../include/lib/Dashboard/Widgets/tree_view.php:667 #: ../../operation/tree.php:470 @@ -9679,7 +9663,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:624 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:294 -#: ../../godmode/groups/group_list.php:1073 +#: ../../godmode/groups/group_list.php:1078 #: ../../mobile/operation/groups.php:165 #: ../../include/lib/Dashboard/Widgets/tree_view.php:682 #: ../../operation/tree.php:485 @@ -9689,7 +9673,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:635 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:284 -#: ../../godmode/groups/group_list.php:1063 +#: ../../godmode/groups/group_list.php:1068 #: ../../mobile/operation/groups.php:159 #: ../../include/lib/Dashboard/Widgets/tree_view.php:672 #: ../../operation/tree.php:475 @@ -9699,7 +9683,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/custom_fields_view.php:646 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/groups/group_list.php:1068 +#: ../../godmode/groups/group_list.php:1073 #: ../../mobile/operation/groups.php:162 #: ../../include/lib/Dashboard/Widgets/tree_view.php:677 #: ../../operation/tree.php:480 @@ -9741,9 +9725,9 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:229 -#: ../../godmode/agentes/configurar_agente.php:853 +#: ../../godmode/agentes/configurar_agente.php:866 #: ../../godmode/agentes/modificar_agente.php:947 -#: ../../include/class/SnmpConsole.class.php:814 +#: ../../include/class/SnmpConsole.class.php:815 #: ../../operation/agentes/estado_agente.php:964 #: ../../operation/agentes/estado_agente.php:974 #: ../../operation/snmpconsole/snmp_statistics.php:193 @@ -9776,7 +9760,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3513 #: ../../enterprise/extensions/disabled/check_acls.php:133 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 #: ../../enterprise/godmode/policies/policy_alerts.php:352 @@ -9795,8 +9779,6 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3790 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3808 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/include/functions_inventory.php:881 -#: ../../enterprise/include/functions_inventory.php:937 #: ../../enterprise/include/functions_ui.php:47 #: ../../enterprise/include/functions_reporting_pdf.php:529 #: ../../enterprise/include/functions_reporting_pdf.php:537 @@ -9834,8 +9816,6 @@ msgstr "" #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 #: ../../enterprise/operation/agentes/policy_view.php:258 -#: ../../enterprise/operation/agentes/agent_inventory.php:116 -#: ../../enterprise/operation/inventory/inventory.php:357 #: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175 #: ../../godmode/agentes/module_manager_editor_prediction.php:154 #: ../../godmode/agentes/planned_downtime.list.php:395 @@ -9871,8 +9851,8 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.wizard.php:770 #: ../../godmode/servers/plugin.php:88 ../../mobile/operation/alerts.php:338 #: ../../include/functions_visual_map_editor.php:497 -#: ../../include/functions_reporting_html.php:547 -#: ../../include/functions_reporting_html.php:943 +#: ../../include/functions_reporting_html.php:548 +#: ../../include/functions_reporting_html.php:944 #: ../../include/functions_reporting_html.php:1928 #: ../../include/functions_reporting_html.php:2265 #: ../../include/functions_reporting_html.php:2369 @@ -9889,22 +9869,24 @@ msgstr "" #: ../../include/ajax/alert_list.ajax.php:292 #: ../../include/ajax/alert_list.ajax.php:317 #: ../../include/ajax/alert_list.ajax.php:480 -#: ../../include/functions_graph.php:5395 -#: ../../include/functions_treeview.php:64 +#: ../../include/functions_inventory.php:881 +#: ../../include/functions_inventory.php:937 +#: ../../include/functions_graph.php:5183 +#: ../../include/functions_treeview.php:64 ../../include/functions_ui.php:6863 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:388 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 #: ../../include/functions_reports.php:1351 #: ../../include/class/AgentsAlerts.class.php:412 #: ../../include/class/AgentsAlerts.class.php:891 -#: ../../include/functions_reporting.php:7014 +#: ../../include/functions_reporting.php:7229 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:355 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359 @@ -9921,15 +9903,18 @@ msgstr "" #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:83 #: ../../operation/agentes/estado_monitores.php:125 +#: ../../operation/agentes/agent_inventory.php:116 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_alerts.php:35 ../../operation/search_modules.php:32 +#: ../../operation/search_alerts.php:35 +#: ../../operation/inventory/inventory.php:360 +#: ../../operation/search_modules.php:32 msgid "Module" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224 #: ../../enterprise/godmode/policies/policy_alerts.php:351 #: ../../enterprise/godmode/policies/policy_alerts.php:557 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:340 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1417 #: ../../enterprise/include/functions_tasklist.php:356 @@ -9966,7 +9951,7 @@ msgstr "" #: ../../enterprise/meta/general/header.php:125 #: ../../enterprise/meta/general/main_header.php:558 #: ../../enterprise/godmode/policies/policy_alerts.php:648 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:685 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:687 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 #: ../../enterprise/godmode/services/services.service.php:906 #: ../../enterprise/godmode/services/services.service.php:918 @@ -10031,7 +10016,7 @@ msgstr "" #: ../../godmode/alerts/alert_view.php:361 #: ../../godmode/alerts/alert_list.builder.php:173 #: ../../include/functions_reporting_html.php:3616 -#: ../../include/functions_reporting_html.php:5387 +#: ../../include/functions_reporting_html.php:5406 #: ../../include/ajax/alert_list.ajax.php:540 #: ../../include/ajax/custom_fields.php:413 #: ../../include/class/AgentsAlerts.class.php:385 @@ -10052,7 +10037,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 -#: ../../operation/snmpconsole/snmp_browser.php:639 +#: ../../operation/snmpconsole/snmp_browser.php:637 msgid "Create module" msgstr "" @@ -10083,9 +10068,9 @@ msgid "Invalid characters founded in module name" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:234 -#: ../../godmode/agentes/configurar_agente.php:830 -#: ../../godmode/agentes/configurar_agente.php:852 -#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:93 +#: ../../godmode/agentes/configurar_agente.php:843 +#: ../../godmode/agentes/configurar_agente.php:865 +#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:94 #: ../../godmode/servers/modificar_server.php:140 msgid "Manage agents" msgstr "" @@ -10097,7 +10082,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 #: ../../enterprise/meta/agentsearch.php:52 #: ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:397 +#: ../../godmode/events/event_edit_filter.php:407 #: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1908 msgid "Agent search" msgstr "" @@ -10186,8 +10171,8 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:653 #: ../../godmode/users/configure_profile.php:291 -#: ../../godmode/alerts/alert_list.php:501 -#: ../../godmode/alerts/alert_list.php:503 +#: ../../godmode/alerts/alert_list.php:519 +#: ../../godmode/alerts/alert_list.php:521 msgid "Manage alerts" msgstr "" @@ -10216,8 +10201,8 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5306 -#: ../../include/functions_reporting_html.php:5460 +#: ../../include/functions_reporting_html.php:5325 +#: ../../include/functions_reporting_html.php:5479 msgid "Monitor" msgstr "" @@ -10246,14 +10231,14 @@ msgstr "" #: ../../include/ajax/heatmap.ajax.php:191 #: ../../include/ajax/heatmap.ajax.php:255 #: ../../include/ajax/heatmap.ajax.php:294 -#: ../../include/functions_graph.php:5311 +#: ../../include/functions_graph.php:5099 #: ../../include/functions_treeview.php:122 #: ../../include/functions_html.php:1570 -#: ../../include/functions_events.php:4302 ../../operation/heatmap.php:100 +#: ../../include/functions_events.php:4281 ../../operation/heatmap.php:100 #: ../../operation/heatmap.php:102 #: ../../operation/agentes/status_monitor.php:517 #: ../../operation/agentes/estado_monitores.php:552 -#: ../../operation/agentes/ver_agente.php:1169 +#: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "" @@ -10272,10 +10257,10 @@ msgstr "" #: ../../enterprise/godmode/agentes/plugins_manager.php:126 #: ../../enterprise/godmode/policies/policy_plugins.php:126 #: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/users/configure_user.php:1391 +#: ../../godmode/users/configure_user.php:1450 #: ../../godmode/netflow/nf_edit_form.php:237 -#: ../../godmode/alerts/alert_commands.php:158 -#: ../../godmode/alerts/alert_commands.php:195 +#: ../../godmode/alerts/alert_commands.php:159 +#: ../../godmode/alerts/alert_commands.php:196 #: ../../godmode/alerts/configure_alert_template.php:946 #: ../../godmode/alerts/configure_alert_template.php:987 #: ../../godmode/alerts/configure_alert_template.php:1138 @@ -10300,13 +10285,13 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:854 #: ../../enterprise/include/class/DB2.app.php:841 #: ../../enterprise/include/class/SAP.app.php:803 -#: ../../enterprise/include/class/Aws.cloud.php:1425 +#: ../../enterprise/include/class/Aws.cloud.php:1424 #: ../../enterprise/include/class/MySQL.app.php:909 #: ../../enterprise/include/class/Oracle.app.php:950 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:794 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2182 #: ../../godmode/alerts/configure_alert_template.php:1171 -#: ../../godmode/wizards/HostDevices.class.php:1594 +#: ../../godmode/wizards/HostDevices.class.php:1593 #: ../../include/class/CustomNetScan.class.php:726 #: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 msgid "Finish" @@ -10330,14 +10315,14 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wmi.php:60 #: ../../godmode/alerts/configure_alert_template.php:1288 #: ../../godmode/alerts/alert_list.builder.php:293 -#: ../../include/functions.php:2732 +#: ../../include/functions.php:2758 #: ../../include/class/AgentWizard.class.php:2626 msgid "Empty" msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:139 -#: ../../include/functions_events.php:3148 -#: ../../include/functions_events.php:3419 +#: ../../include/functions_events.php:3127 +#: ../../include/functions_events.php:3398 msgid "New" msgstr "" @@ -10364,9 +10349,9 @@ msgstr "" #: ../../godmode/massive/massive_copy_modules.php:235 #: ../../godmode/massive/massive_operations.php:344 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/functions_events.php:4150 +#: ../../include/functions_events.php:4129 #: ../../operation/reporting/reporting_viewer.php:347 -#: ../../operation/reporting/graph_viewer.php:316 +#: ../../operation/reporting/graph_viewer.php:384 #: ../../general/ui/agents_list.php:146 msgid "Loading" msgstr "" @@ -10374,7 +10359,7 @@ msgstr "" #: ../../enterprise/meta/monitoring/wizard/wizard.php:151 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 #: ../../godmode/tag/edit_tag.php:227 -#: ../../include/functions_reporting.php:7151 +#: ../../include/functions_reporting.php:7366 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "" @@ -10409,10 +10394,10 @@ msgid "Group View" msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:72 -#: ../../godmode/groups/group_list.php:321 -#: ../../godmode/users/configure_user.php:1292 +#: ../../godmode/groups/group_list.php:326 +#: ../../godmode/users/configure_user.php:1351 #: ../../godmode/massive/massive_edit_users.php:277 -#: ../../operation/users/user_edit.php:362 +#: ../../operation/users/user_edit.php:436 #: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:50 msgid "Group view" msgstr "" @@ -10475,16 +10460,16 @@ msgid "Group or Tag" msgstr "" #: ../../enterprise/meta/monitoring/group_view.php:235 -#: ../../enterprise/include/functions_inventory.php:511 -#: ../../enterprise/include/functions_inventory.php:654 -#: ../../enterprise/operation/agentes/agent_inventory.php:266 #: ../../enterprise/operation/services/services.treeview_services.php:265 -#: ../../godmode/groups/group_list.php:1044 +#: ../../godmode/groups/group_list.php:1049 #: ../../include/functions_reporting_html.php:2472 #: ../../include/functions_reporting_html.php:2482 -#: ../../include/functions_alerts.php:3363 +#: ../../include/functions_inventory.php:511 +#: ../../include/functions_inventory.php:654 +#: ../../include/functions_alerts.php:3386 #: ../../include/lib/Dashboard/Widgets/tree_view.php:653 #: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223 +#: ../../operation/agentes/agent_inventory.php:266 msgid "Total" msgstr "" @@ -10492,14 +10477,14 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:345 #: ../../godmode/alerts/alert_list.list.php:573 #: ../../godmode/alerts/alert_view.php:105 -#: ../../mobile/operation/alerts.php:324 ../../include/functions.php:1248 +#: ../../mobile/operation/alerts.php:324 ../../include/functions.php:1274 #: ../../include/functions_agents.php:2942 #: ../../include/functions_agents.php:2953 ../../include/functions_ui.php:1253 #: ../../include/class/AgentsAlerts.class.php:937 -#: ../../include/class/SnmpConsole.class.php:874 -#: ../../include/functions_reporting.php:12667 -#: ../../include/functions_events.php:2822 -#: ../../include/functions_events.php:3022 +#: ../../include/class/SnmpConsole.class.php:875 +#: ../../include/functions_reporting.php:12953 +#: ../../include/functions_events.php:2801 +#: ../../include/functions_events.php:3001 #: ../../operation/agentes/group_view.php:234 msgid "Alert fired" msgstr "" @@ -10520,13 +10505,13 @@ msgstr "" #: ../../enterprise/meta/monitoring/tactical.php:63 #: ../../enterprise/meta/general/main_header.php:103 #: ../../enterprise/meta/general/main_menu.php:202 -#: ../../godmode/users/configure_user.php:1293 +#: ../../godmode/users/configure_user.php:1352 #: ../../godmode/massive/massive_edit_users.php:278 #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 -#: ../../operation/users/user_edit.php:363 -#: ../../operation/agentes/tactical.php:69 ../../operation/menu.php:47 +#: ../../operation/users/user_edit.php:437 +#: ../../operation/agentes/tactical.php:70 ../../operation/menu.php:47 msgid "Tactical view" msgstr "" @@ -10540,13 +10525,13 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:267 #: ../../enterprise/include/class/CommandCenter.class.php:1078 #: ../../enterprise/tools/ipam/ipam_network.php:400 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:240 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:243 #: ../../godmode/events/events.php:128 #: ../../mobile/include/functions_web.php:25 ../../mobile/operation/home.php:51 -#: ../../mobile/operation/events.php:908 ../../include/functions.php:4119 -#: ../../include/ajax/events.php:2123 ../../include/functions_reports.php:864 +#: ../../mobile/operation/events.php:908 ../../include/functions.php:4145 +#: ../../include/ajax/events.php:2134 ../../include/functions_reports.php:864 #: ../../include/functions_reports.php:868 -#: ../../include/functions_reports.php:872 ../../operation/menu.php:383 +#: ../../include/functions_reports.php:872 ../../operation/menu.php:387 #: ../../operation/events/events.php:1558 #: ../../operation/events/events.php:1566 msgid "Events" @@ -10566,7 +10551,7 @@ msgstr "" #: ../../enterprise/meta/event/custom_events.php:38 #: ../../enterprise/godmode/reporting/graph_template_editor.php:255 -#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:389 +#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:393 msgid "View events" msgstr "" @@ -10579,7 +10564,7 @@ msgstr "" msgid "Create filter" msgstr "" -#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:235 +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:238 #: ../../godmode/events/events.php:68 msgid "Event responses" msgstr "" @@ -10589,14 +10574,14 @@ msgstr "" #: ../../enterprise/meta/event/custom_events.php:74 #: ../../enterprise/meta/event/custom_events.php:92 #: ../../godmode/agentes/agent_manager.php:945 -#: ../../godmode/agentes/agent_manager.php:970 ../../godmode/menu.php:99 +#: ../../godmode/agentes/agent_manager.php:970 ../../godmode/menu.php:100 #: ../../godmode/massive/massive_edit_agents.php:1251 #: ../../godmode/reporting/reporting_builder.item_editor.php:76 #: ../../include/functions_reporting_html.php:1585 -#: ../../include/functions_events.php:4264 +#: ../../include/functions_events.php:4243 #: ../../operation/agentes/status_monitor.php:62 #: ../../operation/agentes/status_monitor.php:85 -#: ../../operation/agentes/ver_agente.php:1556 +#: ../../operation/agentes/ver_agente.php:1574 msgid "Custom fields" msgstr "" @@ -10611,7 +10596,7 @@ msgid "Filters" msgstr "" #: ../../enterprise/meta/event/custom_events.php:79 -#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1710 +#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1717 msgid "Responses" msgstr "" @@ -10697,7 +10682,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_autoprovision.php:640 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2946 -#: ../../enterprise/include/functions_ipam.php:1643 +#: ../../enterprise/include/functions_ipam.php:1651 #: ../../godmode/reporting/reporting_builder.list_items.php:440 #: ../../godmode/reporting/reporting_builder.list_items.php:740 #: ../../godmode/reporting/graph_builder.graph_editor.php:217 @@ -10791,7 +10776,7 @@ msgstr "" #: ../../godmode/users/configure_profile.php:76 #: ../../godmode/users/user_list.php:253 ../../godmode/users/user_list.php:278 #: ../../godmode/users/user_list.php:289 -#: ../../godmode/users/configure_user.php:293 +#: ../../godmode/users/configure_user.php:287 #: ../../operation/users/user_edit_header.php:91 msgid "User management" msgstr "" @@ -10801,7 +10786,7 @@ msgstr "" #: ../../godmode/users/profile_list.php:74 #: ../../godmode/users/configure_profile.php:66 #: ../../godmode/users/user_list.php:264 -#: ../../godmode/users/configure_user.php:304 ../../godmode/menu.php:155 +#: ../../godmode/users/configure_user.php:298 ../../godmode/menu.php:156 msgid "Profile management" msgstr "" @@ -10811,7 +10796,7 @@ msgstr "" #: ../../enterprise/meta/general/header.php:221 #: ../../enterprise/meta/general/main_header.php:624 #: ../../enterprise/meta/general/main_header.php:630 -#: ../../operation/menu.php:488 ../../general/header.php:407 +#: ../../operation/menu.php:492 ../../general/header.php:407 #: ../../general/header.php:417 msgid "Edit my user" msgstr "" @@ -10846,7 +10831,7 @@ msgstr "" #: ../../include/functions_reporting_html.php:4054 #: ../../include/functions_reporting_html.php:4148 #: ../../include/functions_treeview.php:640 -#: ../../include/functions_events.php:4240 +#: ../../include/functions_events.php:4219 #: ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "" @@ -10856,13 +10841,13 @@ msgstr "" #: ../../enterprise/godmode/modules/configure_local_component.php:515 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 #: ../../enterprise/godmode/setup/setup_log_collector.php:49 -#: ../../enterprise/include/functions_metaconsole.php:1338 -#: ../../enterprise/include/functions_metaconsole.php:1371 -#: ../../enterprise/include/functions_metaconsole.php:1404 -#: ../../enterprise/include/functions_metaconsole.php:1437 -#: ../../enterprise/include/functions_metaconsole.php:1470 -#: ../../enterprise/include/functions_metaconsole.php:1501 -#: ../../enterprise/include/functions_metaconsole.php:1534 +#: ../../enterprise/include/functions_metaconsole.php:1339 +#: ../../enterprise/include/functions_metaconsole.php:1372 +#: ../../enterprise/include/functions_metaconsole.php:1405 +#: ../../enterprise/include/functions_metaconsole.php:1438 +#: ../../enterprise/include/functions_metaconsole.php:1471 +#: ../../enterprise/include/functions_metaconsole.php:1502 +#: ../../enterprise/include/functions_metaconsole.php:1535 #: ../../godmode/agentes/module_manager_editor_web.php:172 msgid "Check" msgstr "" @@ -10878,8 +10863,8 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:233 #: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249 #: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372 -#: ../../include/ajax/events.php:1660 ../../include/functions_reports.php:771 -#: ../../include/functions_reporting.php:9764 +#: ../../include/ajax/events.php:1667 ../../include/functions_reports.php:771 +#: ../../include/functions_reporting.php:9982 msgid "General" msgstr "" @@ -10936,7 +10921,7 @@ msgstr "" #: ../../enterprise/include/class/MySQL.app.php:523 #: ../../enterprise/include/class/Oracle.app.php:508 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502 -#: ../../extensions/api_checker.php:138 +#: ../../extensions/api_checker.php:222 #: ../../extensions/users_connected.php:143 #: ../../godmode/update_manager/update_manager.history.php:43 #: ../../godmode/setup/setup_ehorus.php:80 @@ -10945,8 +10930,8 @@ msgstr "" #: ../../godmode/events/custom_events.php:99 #: ../../mobile/include/user.class.php:396 #: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:5904 -#: ../../include/functions.php:3073 ../../include/functions_cron.php:500 +#: ../../include/functions_reporting_html.php:5923 +#: ../../include/functions.php:3099 ../../include/functions_cron.php:500 #: ../../include/functions_config.php:705 #: ../../include/functions_config.php:725 #: ../../include/class/CredentialStore.class.php:843 @@ -10955,8 +10940,8 @@ msgstr "" #: ../../include/class/AuditLog.class.php:210 #: ../../include/functions_events.php:202 #: ../../include/functions_events.php:253 ../../operation/search_users.php:71 -#: ../../operation/users/user_edit.php:721 -#: ../../operation/users/user_edit.php:767 +#: ../../operation/users/user_edit.php:795 +#: ../../operation/users/user_edit.php:841 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 #: ../../general/logon_ok.php:249 ../../general/login_page.php:230 @@ -10989,14 +10974,14 @@ msgstr "" #: ../../enterprise/include/class/MySQL.app.php:535 #: ../../enterprise/include/class/Oracle.app.php:520 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514 -#: ../../extensions/api_checker.php:143 +#: ../../extensions/api_checker.php:227 #: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/users/configure_user.php:1110 +#: ../../godmode/users/configure_user.php:1169 #: ../../godmode/agentes/module_manager_editor_wmi.php:116 #: ../../godmode/massive/massive_edit_modules.php:908 #: ../../godmode/setup/setup_ehorus.php:86 #: ../../godmode/setup/setup_integria.php:289 -#: ../../mobile/include/user.class.php:403 +#: ../../mobile/include/user.class.php:403 ../../include/functions_ui.php:6920 #: ../../include/functions_config.php:709 #: ../../include/functions_config.php:729 #: ../../include/class/CredentialStore.class.php:998 @@ -11005,8 +10990,8 @@ msgstr "" #: ../../include/class/CredentialStore.class.php:1346 #: ../../include/class/CredentialStore.class.php:1368 #: ../../include/class/AgentWizard.class.php:689 -#: ../../operation/users/user_edit.php:727 -#: ../../operation/users/user_edit.php:773 ../../general/login_page.php:244 +#: ../../operation/users/user_edit.php:801 +#: ../../operation/users/user_edit.php:847 ../../general/login_page.php:244 #: ../../general/login_page.php:285 msgid "Password" msgstr "" @@ -11099,7 +11084,6 @@ msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1742 #: ../../enterprise/meta/agentsearch.php:138 #: ../../enterprise/godmode/modules/configure_local_component.php:291 -#: ../../enterprise/godmode/agentes/inventory_manager.php:224 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:465 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:507 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:304 @@ -11112,8 +11096,8 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:536 #: ../../enterprise/include/class/Aws.S3.php:506 #: ../../enterprise/include/class/SAP.app.php:513 -#: ../../enterprise/include/class/Aws.cloud.php:592 -#: ../../enterprise/include/class/Aws.cloud.php:1319 +#: ../../enterprise/include/class/Aws.cloud.php:591 +#: ../../enterprise/include/class/Aws.cloud.php:1318 #: ../../enterprise/include/class/MySQL.app.php:558 #: ../../enterprise/include/class/Google.cloud.php:797 #: ../../enterprise/include/class/Oracle.app.php:543 @@ -11125,10 +11109,11 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:143 #: ../../godmode/agentes/status_monitor_custom_fields.php:93 #: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/agentes/inventory_manager.php:224 #: ../../godmode/agentes/agent_manager.php:378 #: ../../godmode/agentes/module_manager_editor_common.php:632 #: ../../godmode/agentes/module_manager_editor_common.php:657 -#: ../../godmode/agentes/module_manager.php:898 +#: ../../godmode/agentes/module_manager.php:899 #: ../../godmode/massive/massive_edit_agents.php:714 #: ../../godmode/massive/massive_edit_modules.php:754 #: ../../godmode/wizards/HostDevices.class.php:800 @@ -11137,8 +11122,8 @@ msgstr "" #: ../../mobile/operation/modules.php:659 #: ../../mobile/operation/modules.php:851 #: ../../include/functions_reporting_html.php:3619 -#: ../../include/ajax/events.php:2276 ../../include/functions_treeview.php:84 -#: ../../include/functions_treeview.php:646 +#: ../../include/ajax/events.php:2287 ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:646 ../../include/functions_ui.php:6900 #: ../../include/class/CustomNetScan.class.php:520 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:372 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 @@ -11190,8 +11175,8 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1189 #: ../../enterprise/include/class/DeploymentCenter.class.php:1316 #: ../../enterprise/include/class/DeploymentCenter.class.php:1326 -#: ../../extensions/api_checker.php:195 -#: ../../godmode/wizards/HostDevices.class.php:1492 +#: ../../extensions/api_checker.php:279 +#: ../../godmode/wizards/HostDevices.class.php:1491 msgid "Credentials" msgstr "" @@ -11218,8 +11203,8 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:1455 #: ../../godmode/reporting/reporting_builder.item_editor.php:2529 #: ../../include/functions_reporting_html.php:4921 -#: ../../include/functions_ui.php:2610 -#: ../../include/functions_reporting.php:1533 +#: ../../include/functions_ui.php:2614 +#: ../../include/functions_reporting.php:1534 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439 @@ -11249,8 +11234,8 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:1457 #: ../../godmode/reporting/reporting_builder.item_editor.php:2522 #: ../../include/functions_reporting_html.php:4920 -#: ../../include/functions_ui.php:2610 -#: ../../include/functions_reporting.php:1529 +#: ../../include/functions_ui.php:2614 +#: ../../include/functions_reporting.php:1530 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448 @@ -11319,7 +11304,7 @@ msgid "Alerts in module" msgstr "" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5266 +#: ../../include/functions_reporting_html.php:5285 msgid "Alert description" msgstr "" @@ -11418,7 +11403,7 @@ msgstr "" msgid "Successfully updated module." msgstr "" -#: ../../enterprise/meta/include/functions_wizard_meta.php:3507 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3508 msgid "Manage agent modules" msgstr "" @@ -11428,11 +11413,11 @@ msgid "Everyday" msgstr "" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../enterprise/meta/include/functions_meta.php:2136 +#: ../../enterprise/meta/include/functions_meta.php:2117 #: ../../enterprise/include/ajax/ipam.ajax.php:521 #: ../../enterprise/tools/ipam/ipam_editor.php:327 #: ../../godmode/alerts/alert_templates.php:73 -#: ../../include/functions_config.php:1605 +#: ../../include/functions_config.php:1586 msgid "Days" msgstr "" @@ -11459,10 +11444,10 @@ msgstr "" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 #: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 -#: ../../enterprise/include/functions_reporting_pdf.php:1819 -#: ../../enterprise/include/functions_reporting_pdf.php:1892 -#: ../../enterprise/include/functions_reporting_pdf.php:2007 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:478 +#: ../../enterprise/include/functions_reporting_pdf.php:1820 +#: ../../enterprise/include/functions_reporting_pdf.php:1893 +#: ../../enterprise/include/functions_reporting_pdf.php:2008 #: ../../enterprise/include/functions_reporting_csv.php:722 #: ../../enterprise/include/functions_reporting_csv.php:1001 #: ../../enterprise/include/functions_reporting_csv.php:1375 @@ -11473,10 +11458,10 @@ msgstr "" #: ../../godmode/alerts/alert_list.list.php:658 #: ../../godmode/alerts/alert_list.list.php:661 #: ../../godmode/alerts/alert_templates.php:96 -#: ../../include/functions_reporting_html.php:147 +#: ../../include/functions_reporting_html.php:148 #: ../../include/functions_reporting_html.php:3118 #: ../../include/functions_reporting_html.php:3929 -#: ../../include/rest-api/index.php:371 +#: ../../include/rest-api/index.php:372 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 #: ../../operation/agentes/gis_view.php:220 @@ -11487,9 +11472,9 @@ msgstr "" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 #: ../../enterprise/godmode/policies/policy_alerts.php:436 #: ../../enterprise/godmode/policies/policy_alerts.php:600 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:611 -#: ../../enterprise/include/functions_reporting_pdf.php:1825 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:478 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:613 +#: ../../enterprise/include/functions_reporting_pdf.php:1826 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1019 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2377 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2381 @@ -11501,11 +11486,11 @@ msgstr "" #: ../../godmode/alerts/alert_list.list.php:778 #: ../../godmode/alerts/alert_templates.php:98 #: ../../godmode/alerts/alert_list.builder.php:129 -#: ../../include/functions_reporting_html.php:148 +#: ../../include/functions_reporting_html.php:149 #: ../../include/functions_reporting_html.php:3123 #: ../../include/ajax/alert_list.ajax.php:527 #: ../../include/class/AgentsAlerts.class.php:316 -#: ../../include/functions_reporting.php:14390 +#: ../../include/functions_reporting.php:14676 #: ../../operation/reporting/reporting_viewer.php:308 msgid "to" msgstr "" @@ -11529,16 +11514,16 @@ msgstr "" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 #: ../../include/functions_reporting_html.php:1314 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:5198 +#: ../../include/functions_reporting_html.php:5217 #: ../../include/functions_events.php:200 #: ../../include/functions_events.php:2528 -#: ../../include/functions_events.php:4727 +#: ../../include/functions_events.php:4706 msgid "Event name" msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:66 #: ../../enterprise/include/functions_reporting_csv.php:921 -#: ../../enterprise/include/functions_ipam.php:2045 +#: ../../enterprise/include/functions_ipam.php:2053 #: ../../godmode/agentes/modificar_agente.php:647 #: ../../godmode/agentes/agent_manager.php:213 #: ../../mobile/operation/modules.php:597 @@ -11554,11 +11539,6 @@ msgid "Agent name" msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:82 -#: ../../enterprise/include/functions_inventory.php:143 -#: ../../enterprise/include/functions_inventory.php:177 -#: ../../enterprise/include/functions_inventory.php:379 -#: ../../enterprise/include/functions_inventory.php:399 -#: ../../enterprise/include/functions_inventory.php:585 #: ../../enterprise/include/functions_reporting_csv.php:852 #: ../../enterprise/include/functions_reporting_csv.php:925 #: ../../enterprise/include/functions_reporting_csv.php:1508 @@ -11579,15 +11559,20 @@ msgstr "" #: ../../include/functions_reporting_html.php:1318 #: ../../include/functions_reporting_html.php:1325 #: ../../include/functions_reporting_html.php:2555 -#: ../../include/functions_reporting_html.php:5200 +#: ../../include/functions_reporting_html.php:5219 #: ../../include/ajax/events_extended.php:90 #: ../../include/ajax/custom_fields.php:415 +#: ../../include/functions_inventory.php:143 +#: ../../include/functions_inventory.php:177 +#: ../../include/functions_inventory.php:379 +#: ../../include/functions_inventory.php:399 +#: ../../include/functions_inventory.php:585 #: ../../include/functions_netflow.php:278 #: ../../include/class/SnmpConsole.class.php:342 #: ../../include/functions_events.php:205 #: ../../include/functions_events.php:262 #: ../../include/functions_events.php:2538 -#: ../../include/functions_events.php:4740 +#: ../../include/functions_events.php:4719 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:83 #: ../../operation/agentes/status_monitor.php:1377 @@ -11604,11 +11589,11 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:658 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2905 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1384 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1123 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1124 #: ../../enterprise/include/functions_events.php:60 #: ../../godmode/reporting/reporting_builder.item_editor.php:2979 #: ../../godmode/events/event_filter.php:138 -#: ../../godmode/events/event_edit_filter.php:334 +#: ../../godmode/events/event_edit_filter.php:344 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 #: ../../include/functions_events.php:206 #: ../../operation/events/events.php:1674 @@ -11616,13 +11601,13 @@ msgid "Event type" msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:90 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:347 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:349 #: ../../enterprise/include/functions_reporting_csv.php:923 #: ../../enterprise/operation/agentes/tag_view.php:205 #: ../../godmode/modules/manage_network_templates_form.php:231 #: ../../godmode/modules/manage_network_components.php:751 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 -#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/agent_template.php:236 #: ../../godmode/agentes/status_monitor_custom_fields.php:85 #: ../../godmode/agentes/status_monitor_custom_fields.php:145 #: ../../godmode/alerts/alert_list.list.php:99 @@ -11637,12 +11622,12 @@ msgid "Module name" msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:391 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:393 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4353 -#: ../../godmode/agentes/configurar_agente.php:745 +#: ../../godmode/agentes/configurar_agente.php:758 #: ../../godmode/alerts/configure_alert_template.php:1552 -#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4126 +#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4152 #: ../../include/functions_snmp.php:324 #: ../../include/class/SnmpConsole.class.php:343 #: ../../include/class/SnmpConsole.class.php:416 @@ -11654,7 +11639,7 @@ msgid "Alert" msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:98 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:90 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:93 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:632 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2878 @@ -11662,7 +11647,7 @@ msgstr "" #: ../../enterprise/include/functions_events.php:70 #: ../../godmode/reporting/reporting_builder.item_editor.php:2952 #: ../../godmode/events/event_filter.php:140 -#: ../../godmode/events/event_edit_filter.php:349 +#: ../../godmode/events/event_edit_filter.php:359 #: ../../godmode/events/custom_events.php:106 #: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 #: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 @@ -11679,19 +11664,19 @@ msgstr "" #: ../../include/functions_events.php:209 #: ../../include/functions_events.php:274 #: ../../include/functions_events.php:2520 -#: ../../include/functions_events.php:4801 +#: ../../include/functions_events.php:4780 #: ../../operation/events/events.php:1770 msgid "Severity" msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:679 +#: ../../godmode/events/event_edit_filter.php:689 #: ../../godmode/events/custom_events.php:107 #: ../../godmode/wizards/HostDevices.class.php:961 #: ../../include/class/CustomNetScan.class.php:468 #: ../../include/functions_events.php:210 #: ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3496 +#: ../../include/functions_events.php:3475 #: ../../operation/events/events.php:1868 msgid "Comment" msgstr "" @@ -11726,8 +11711,8 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/tree_view.php:329 #: ../../include/functions_events.php:211 #: ../../include/functions_events.php:280 -#: ../../include/functions_events.php:4888 ../../operation/tree.php:66 -#: ../../operation/users/user_edit.php:840 +#: ../../include/functions_events.php:4867 ../../operation/tree.php:66 +#: ../../operation/users/user_edit.php:914 #: ../../operation/agentes/status_monitor.php:550 #: ../../operation/agentes/group_view.php:222 #: ../../operation/agentes/alerts_status.functions.php:108 @@ -11737,7 +11722,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:114 #: ../../include/functions_events.php:213 -#: ../../include/functions_events.php:4452 +#: ../../include/functions_events.php:4431 msgid "Extra id" msgstr "" @@ -11747,7 +11732,7 @@ msgstr "" #: ../../godmode/events/custom_events.php:111 #: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 #: ../../include/functions_events.php:289 -#: ../../include/functions_events.php:4755 +#: ../../include/functions_events.php:4734 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:312 #: ../../operation/incidents/list_integriaims_incidents.php:342 @@ -11767,7 +11752,7 @@ msgstr "" #: ../../godmode/events/custom_events.php:113 #: ../../include/functions_events.php:216 #: ../../include/functions_events.php:295 -#: ../../include/functions_events.php:4440 +#: ../../include/functions_events.php:4419 #: ../../operation/events/events.php:3152 msgid "Instructions" msgstr "" @@ -11775,7 +11760,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_events_meta.php:130 #: ../../enterprise/godmode/setup/setup_metaconsole.php:198 #: ../../enterprise/godmode/setup/setup_metaconsole.php:273 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:852 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:878 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 #: ../../godmode/wizards/DiscoveryTaskList.class.php:593 @@ -11841,7 +11826,7 @@ msgstr "" #: ../../enterprise/meta/include/process_reset_pass.php:96 #: ../../enterprise/include/process_reset_pass.php:103 -#: ../../operation/users/user_edit.php:301 +#: ../../operation/users/user_edit.php:375 msgid "New Password" msgstr "" @@ -11857,7 +11842,7 @@ msgstr "" #: ../../enterprise/meta/include/process_reset_pass.php:123 #: ../../enterprise/meta/index.php:668 -#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:843 +#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:846 msgid "Passwords must be the same" msgstr "" @@ -11877,7 +11862,7 @@ msgstr "" #: ../../enterprise/meta/include/process_reset_pass.php:150 #: ../../enterprise/meta/include/reset_pass.php:147 #: ../../enterprise/meta/general/login_page.php:217 -#: ../../include/functions_config.php:2554 +#: ../../include/functions_config.php:2530 msgid "METACONSOLE" msgstr "" @@ -11885,7 +11870,8 @@ msgstr "" #: ../../enterprise/meta/include/reset_pass.php:161 #: ../../enterprise/meta/general/login_page.php:232 #: ../../enterprise/include/process_reset_pass.php:183 -#: ../../enterprise/include/reset_pass.php:170 ../../general/login_page.php:424 +#: ../../enterprise/include/reset_pass.php:170 +#: ../../include/functions_menu.php:836 ../../general/login_page.php:424 msgid "Build" msgstr "" @@ -11948,7 +11934,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_agents_meta.php:630 #: ../../enterprise/extensions/disabled/check_acls.php:53 #: ../../enterprise/extensions/disabled/check_acls.php:140 -#: ../../godmode/menu.php:150 +#: ../../godmode/menu.php:151 msgid "Users management" msgstr "" @@ -11957,7 +11943,7 @@ msgid "No admin user" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:70 -#: ../../include/functions_config.php:411 +#: ../../include/functions_config.php:416 msgid "Activate Metaconsole" msgstr "" @@ -11975,7 +11961,7 @@ msgid "Netflow disable custom live view filters" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:250 -#: ../../enterprise/godmode/setup/setup.php:294 +#: ../../enterprise/godmode/setup/setup.php:210 msgid "Enable update manager" msgstr "" @@ -12005,7 +11991,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:512 #: ../../enterprise/godmode/setup/setup_log_collector.php:41 -#: ../../include/functions_config.php:1546 +#: ../../include/functions_config.php:1527 msgid "Number of logs viewed" msgstr "" @@ -12071,10 +12057,10 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:613 #: ../../enterprise/meta/include/functions_meta.php:915 -#: ../../godmode/users/configure_user.php:1512 +#: ../../godmode/users/configure_user.php:1570 #: ../../godmode/setup/setup_auth.php:369 #: ../../include/functions_config.php:773 -#: ../../operation/users/user_edit.php:429 +#: ../../operation/users/user_edit.php:503 msgid "Double authentication" msgstr "" @@ -12338,13 +12324,13 @@ msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1186 #: ../../enterprise/meta/include/functions_meta.php:1240 #: ../../enterprise/meta/include/functions_meta.php:1294 -#: ../../enterprise/meta/include/functions_meta.php:2106 +#: ../../enterprise/meta/include/functions_meta.php:2087 #: ../../enterprise/godmode/setup/setup_history.php:207 #: ../../enterprise/godmode/setup/setup_auth.php:1031 #: ../../enterprise/godmode/setup/setup_auth.php:1063 #: ../../include/functions_config.php:701 #: ../../include/functions_config.php:721 -#: ../../include/functions_config.php:1576 +#: ../../include/functions_config.php:1557 msgid "Database name" msgstr "" @@ -12359,7 +12345,7 @@ msgid "Integria host" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1339 -#: ../../include/functions_config.php:966 +#: ../../include/functions_config.php:947 msgid "Timestamp or time comparation" msgstr "" @@ -12376,7 +12362,7 @@ msgid "Graph color (max)" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1404 -#: ../../include/functions_config.php:1014 +#: ../../include/functions_config.php:995 msgid "Data precision for reports" msgstr "" @@ -12397,7 +12383,7 @@ msgid "Type of charts" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1609 -#: ../../include/functions_config.php:1063 +#: ../../include/functions_config.php:1044 msgid "Custom logo collapsed" msgstr "" @@ -12406,32 +12392,32 @@ msgid "Custom logo (white background)" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1639 -#: ../../include/functions_config.php:1071 +#: ../../include/functions_config.php:1052 msgid "Custom logo login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1649 -#: ../../include/functions_config.php:1075 +#: ../../include/functions_config.php:1056 msgid "Custom splash login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1679 -#: ../../include/functions_config.php:1111 +#: ../../include/functions_config.php:1092 msgid "Custom title1 login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1689 -#: ../../include/functions_config.php:1115 +#: ../../include/functions_config.php:1096 msgid "Custom title2 login" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1699 -#: ../../include/functions_config.php:1103 +#: ../../include/functions_config.php:1084 msgid "Meta custom title header" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1709 -#: ../../include/functions_config.php:1107 +#: ../../include/functions_config.php:1088 msgid "Meta custom subtitle header" msgstr "" @@ -12448,24 +12434,24 @@ msgid "Custom copyright notice" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1808 -#: ../../include/functions_config.php:1047 +#: ../../include/functions_config.php:1028 msgid "Font path" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1818 -#: ../../include/functions_config.php:1485 +#: ../../include/functions_config.php:1466 msgid "Use data multiplier" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1830 -#: ../../include/functions_config.php:1441 +#: ../../include/functions_config.php:1422 msgid "Custom report info" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1840 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 -#: ../../include/functions_config.php:1457 +#: ../../include/functions_config.php:1438 msgid "Font family" msgstr "" @@ -12473,17 +12459,17 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:163 #: ../../godmode/setup/setup_visuals.php:1253 -#: ../../include/functions_config.php:1473 +#: ../../include/functions_config.php:1454 msgid "Footer" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1915 -#: ../../include/functions_config.php:1171 +#: ../../include/functions_config.php:1152 msgid "Use the legacy Visual Console" msgstr "" #: ../../enterprise/meta/include/functions_meta.php:1926 -#: ../../include/functions_config.php:1175 +#: ../../include/functions_config.php:1156 msgid "Default expiration of the Visual Console item's cache" msgstr "" @@ -12509,87 +12495,82 @@ msgstr "" msgid "Default row limit in csv log" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2063 -#: ../../include/functions_config.php:955 -msgid "PhantomJS cache interval" -msgstr "" - -#: ../../enterprise/meta/include/functions_meta.php:2079 +#: ../../enterprise/meta/include/functions_meta.php:2060 msgid "Node address default" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2092 -#: ../../include/functions_config.php:1563 +#: ../../enterprise/meta/include/functions_meta.php:2073 +#: ../../include/functions_config.php:1544 msgid "Active and historical database cannot be the same." msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2096 +#: ../../enterprise/meta/include/functions_meta.php:2077 #: ../../enterprise/godmode/setup/setup_history.php:177 -#: ../../include/functions_config.php:1568 +#: ../../include/functions_config.php:1549 msgid "Host" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2112 -#: ../../include/functions_config.php:1581 +#: ../../enterprise/meta/include/functions_meta.php:2093 +#: ../../include/functions_config.php:1562 msgid "Enable history database" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2117 -#: ../../include/functions_config.php:1585 +#: ../../enterprise/meta/include/functions_meta.php:2098 +#: ../../include/functions_config.php:1566 msgid "Enable history event" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2122 +#: ../../enterprise/meta/include/functions_meta.php:2103 #: ../../enterprise/godmode/setup/setup_history.php:222 -#: ../../include/functions_config.php:1593 +#: ../../include/functions_config.php:1574 msgid "Database user" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2127 +#: ../../enterprise/meta/include/functions_meta.php:2108 #: ../../enterprise/godmode/setup/setup_history.php:237 -#: ../../include/functions_config.php:1597 +#: ../../include/functions_config.php:1578 msgid "Database password" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2145 -#: ../../include/functions_config.php:1626 +#: ../../enterprise/meta/include/functions_meta.php:2126 +#: ../../include/functions_config.php:1607 msgid "Event Days" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2163 -#: ../../include/functions_config.php:1658 +#: ../../enterprise/meta/include/functions_meta.php:2144 +#: ../../include/functions_config.php:1639 msgid "Delay" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2196 -#: ../../include/functions_config.php:1690 +#: ../../enterprise/meta/include/functions_meta.php:2177 +#: ../../include/functions_config.php:1671 msgid "Historical database purge" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2205 -#: ../../include/functions_config.php:1698 +#: ../../enterprise/meta/include/functions_meta.php:2186 +#: ../../include/functions_config.php:1679 msgid "Historical database partitions" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2214 -#: ../../include/functions_config.php:1706 +#: ../../enterprise/meta/include/functions_meta.php:2195 +#: ../../include/functions_config.php:1687 msgid "Historical database events purge" msgstr "" -#: ../../enterprise/meta/include/functions_meta.php:2223 -#: ../../include/functions_config.php:1722 +#: ../../enterprise/meta/include/functions_meta.php:2204 +#: ../../include/functions_config.php:1703 msgid "Historical database string purge" msgstr "" #: ../../enterprise/meta/include/functions_components_meta.php:80 #: ../../enterprise/meta/include/functions_components_meta.php:135 -#: ../../godmode/menu.php:102 +#: ../../godmode/menu.php:103 msgid "Component groups" msgstr "" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 -#: ../../enterprise/godmode/menu.php:87 ../../godmode/menu.php:177 +#: ../../enterprise/godmode/menu.php:78 ../../godmode/menu.php:178 msgid "Local components" msgstr "" @@ -12605,13 +12586,13 @@ msgstr "" #: ../../enterprise/meta/include/functions_components_meta.php:113 #: ../../enterprise/meta/include/functions_components_meta.php:160 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:70 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:282 -#: ../../enterprise/godmode/menu.php:78 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 #: ../../enterprise/include/functions_policies.php:3756 +#: ../../godmode/modules/manage_inventory_modules.php:45 +#: ../../godmode/modules/manage_inventory_modules_form.php:37 +#: ../../godmode/menu.php:184 msgid "Inventory modules" msgstr "" @@ -12638,33 +12619,35 @@ msgstr "" #: ../../enterprise/meta/include/functions_ui_meta.php:975 #: ../../enterprise/godmode/services/services.elements.php:884 #: ../../enterprise/godmode/services/services.elements.php:895 +#: ../../enterprise/godmode/setup/setup.php:564 #: ../../enterprise/include/class/CommandCenter.class.php:473 #: ../../enterprise/include/functions_login.php:104 -#: ../../enterprise/include/functions_login.php:468 +#: ../../enterprise/include/functions_login.php:505 #: ../../enterprise/include/lib/Metaconsole/Node.php:541 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4117 -#: ../../godmode/users/configure_user.php:2067 -#: ../../godmode/users/configure_user.php:2137 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4142 +#: ../../godmode/users/configure_user.php:2132 +#: ../../godmode/users/configure_user.php:2202 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 -#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1256 +#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1282 #: ../../include/ajax/double_auth.ajax.php:255 #: ../../include/ajax/double_auth.ajax.php:353 #: ../../include/ajax/double_auth.ajax.php:399 #: ../../include/ajax/double_auth.ajax.php:516 -#: ../../include/ajax/events.php:2177 ../../include/functions_ui.php:290 +#: ../../include/ajax/events.php:2188 ../../include/functions_menu.php:808 +#: ../../include/functions_ui.php:290 #: ../../include/class/SatelliteAgent.class.php:839 -#: ../../include/class/Diagnostics.class.php:1830 -#: ../../include/functions_events.php:2846 -#: ../../include/functions_events.php:3046 ../../index.php:1578 -#: ../../operation/users/user_edit.php:1089 -#: ../../operation/users/user_edit.php:1155 ../../general/register.php:157 +#: ../../include/class/Diagnostics.class.php:1835 +#: ../../include/functions_events.php:2825 +#: ../../include/functions_events.php:3025 ../../index.php:1559 +#: ../../operation/users/user_edit.php:1163 +#: ../../operation/users/user_edit.php:1229 ../../general/register.php:157 msgid "Error" msgstr "" #: ../../enterprise/meta/include/functions_alerts_meta.php:137 #: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:276 +#: ../../godmode/menu.php:279 msgid "Commands" msgstr "" @@ -12679,7 +12662,7 @@ msgstr "" #: ../../enterprise/meta/include/reset_pass.php:103 #: ../../enterprise/meta/index.php:734 -#: ../../enterprise/include/reset_pass.php:108 ../../index.php:915 +#: ../../enterprise/include/reset_pass.php:108 ../../index.php:918 msgid "Reset password" msgstr "" @@ -12758,7 +12741,7 @@ msgstr "" msgid "Relation deleted successfully" msgstr "" -#: ../../enterprise/meta/index.php:206 ../../index.php:1461 +#: ../../enterprise/meta/index.php:206 ../../index.php:1468 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 @@ -12767,7 +12750,7 @@ msgstr "" msgid "Connection with server has been lost" msgstr "" -#: ../../enterprise/meta/index.php:207 ../../index.php:1462 +#: ../../enterprise/meta/index.php:207 ../../index.php:1469 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 @@ -12779,68 +12762,68 @@ msgid "" msgstr "" #: ../../enterprise/meta/index.php:330 ../../mobile/include/user.class.php:303 -#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:370 +#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:373 msgid "Invalid code" msgstr "" -#: ../../enterprise/meta/index.php:342 ../../index.php:382 +#: ../../enterprise/meta/index.php:342 ../../index.php:385 msgid "The code shouldn't be empty" msgstr "" -#: ../../enterprise/meta/index.php:355 ../../index.php:395 +#: ../../enterprise/meta/index.php:355 ../../index.php:398 msgid "Expired login" msgstr "" #: ../../enterprise/meta/index.php:362 ../../enterprise/meta/index.php:368 -#: ../../index.php:402 ../../index.php:408 +#: ../../index.php:405 ../../index.php:411 msgid "Login error" msgstr "" -#: ../../enterprise/meta/index.php:659 ../../index.php:832 +#: ../../enterprise/meta/index.php:659 ../../index.php:835 msgid "Password changed successfully" msgstr "" -#: ../../enterprise/meta/index.php:665 ../../index.php:838 +#: ../../enterprise/meta/index.php:665 ../../index.php:841 msgid "Failed to change password" msgstr "" -#: ../../enterprise/meta/index.php:679 ../../index.php:855 +#: ../../enterprise/meta/index.php:679 ../../index.php:858 msgid "Too much time since password change request" msgstr "" -#: ../../enterprise/meta/index.php:686 ../../index.php:862 +#: ../../enterprise/meta/index.php:686 ../../index.php:865 msgid "This user has not requested a password change" msgstr "" -#: ../../enterprise/meta/index.php:702 ../../index.php:889 +#: ../../enterprise/meta/index.php:702 ../../index.php:892 msgid "Id user cannot be empty" msgstr "" -#: ../../enterprise/meta/index.php:710 ../../index.php:897 +#: ../../enterprise/meta/index.php:710 ../../index.php:900 msgid "Error in reset password request" msgstr "" -#: ../../enterprise/meta/index.php:718 ../../index.php:905 +#: ../../enterprise/meta/index.php:718 ../../index.php:908 msgid "This user doesn't have a valid email address" msgstr "" -#: ../../enterprise/meta/index.php:735 ../../index.php:916 +#: ../../enterprise/meta/index.php:735 ../../index.php:919 msgid "This is an automatically sent message for user " msgstr "" -#: ../../enterprise/meta/index.php:738 ../../index.php:919 +#: ../../enterprise/meta/index.php:738 ../../index.php:922 msgid "Please click the link below to reset your password" msgstr "" -#: ../../enterprise/meta/index.php:740 ../../index.php:921 +#: ../../enterprise/meta/index.php:740 ../../index.php:924 msgid "Reset your password" msgstr "" -#: ../../enterprise/meta/index.php:744 ../../index.php:925 +#: ../../enterprise/meta/index.php:744 ../../index.php:928 msgid "Please do not reply to this email." msgstr "" -#: ../../enterprise/meta/index.php:750 ../../index.php:930 +#: ../../enterprise/meta/index.php:750 ../../index.php:933 msgid "Error at sending the email" msgstr "" @@ -12856,12 +12839,12 @@ msgstr "" msgid "There are nodes with different MR than this (%d):" msgstr "" -#: ../../enterprise/meta/index.php:980 ../../index.php:1220 +#: ../../enterprise/meta/index.php:980 ../../index.php:1223 msgid "Please keep all environment updated to same version." msgstr "" #: ../../enterprise/meta/index.php:1049 ../../enterprise/meta/index.php:1136 -#: ../../index.php:1323 +#: ../../index.php:1326 msgid "Sorry! I can't find the page!" msgstr "" @@ -12885,11 +12868,11 @@ msgstr "" #: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 #: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:997 #: ../../include/functions_treeview.php:668 -#: ../../include/functions_events.php:4254 ../../operation/search_users.php:46 +#: ../../include/functions_events.php:4233 ../../operation/search_users.php:46 #: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 #: ../../operation/agentes/estado_agente.php:769 -#: ../../operation/agentes/ver_agente.php:1040 +#: ../../operation/agentes/ver_agente.php:1046 #: ../../operation/agentes/estado_generalagente.php:362 #: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 #: ../../operation/gis_maps/ajax.php:466 @@ -13017,7 +13000,7 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:196 #: ../../enterprise/operation/services/services.treeview_services.php:62 #: ../../enterprise/operation/services/services.treeview_services.php:69 -#: ../../godmode/groups/group_list.php:344 +#: ../../godmode/groups/group_list.php:349 #: ../../include/lib/Dashboard/Widgets/tree_view.php:173 #: ../../include/lib/Dashboard/Widgets/tree_view.php:717 #: ../../operation/tree.php:138 ../../operation/menu.php:53 @@ -13049,7 +13032,7 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:183 #: ../../enterprise/meta/general/main_menu.php:302 #: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_reporting.php:15386 +#: ../../include/functions_reporting.php:15641 #: ../../include/functions_groups.php:139 #: ../../operation/search_results.php:133 msgid "Reports" @@ -13074,7 +13057,7 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:210 #: ../../enterprise/meta/general/main_menu.php:371 -#: ../../enterprise/godmode/menu.php:125 +#: ../../enterprise/godmode/menu.php:116 #: ../../enterprise/godmode/services/services.massive.meta.php:42 #: ../../enterprise/godmode/services/services.service.php:510 #: ../../enterprise/godmode/services/services.service.php:530 @@ -13084,7 +13067,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 #: ../../enterprise/include/functions_groups.php:65 -#: ../../enterprise/operation/menu.php:77 +#: ../../enterprise/operation/menu.php:64 #: ../../enterprise/operation/services/services.service.php:83 #: ../../enterprise/operation/services/massive/services.delete.php:42 #: ../../enterprise/operation/services/massive/services.delete.php:59 @@ -13106,7 +13089,7 @@ msgstr "" #: ../../enterprise/operation/services/services.list.php:75 #: ../../enterprise/operation/services/services.table_services.php:38 #: ../../enterprise/operation/services/services.table_services.php:58 -#: ../../operation/agentes/ver_agente.php:1666 +#: ../../operation/agentes/ver_agente.php:1684 #: ../../general/first_task/service_list.php:23 msgid "Services" msgstr "" @@ -13141,7 +13124,7 @@ msgstr "" #: ../../enterprise/meta/general/logon_ok.php:37 #: ../../enterprise/meta/general/main_menu.php:425 #: ../../enterprise/include/functions_enterprise.php:459 -#: ../../godmode/menu.php:358 ../../godmode/setup/setup.php:151 +#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:151 #: ../../godmode/setup/setup.php:271 ../../include/functions_reports.php:913 #: ../../include/functions_reports.php:917 #: ../../include/functions_reports.php:921 @@ -13165,12 +13148,12 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:423 #: ../../enterprise/meta/general/main_menu.php:485 #: ../../enterprise/meta/general/main_menu.php:612 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 #: ../../enterprise/godmode/modules/local_components.php:157 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 #: ../../godmode/modules/manage_network_templates_form.php:32 #: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_inventory_modules.php:45 #: ../../godmode/modules/manage_network_components.php:291 +#: ../../godmode/modules/manage_inventory_modules_form.php:37 #: ../../godmode/modules/module_list.php:29 #: ../../godmode/modules/manage_network_templates.php:39 msgid "Module management" @@ -13212,7 +13195,7 @@ msgid "Command Center" msgstr "" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:656 ../../godmode/menu.php:385 +#: ../../enterprise/meta/general/main_menu.php:656 ../../godmode/menu.php:388 msgid "License" msgstr "" @@ -13226,8 +13209,8 @@ msgstr "" #: ../../enterprise/meta/general/main_header.php:448 #: ../../enterprise/meta/general/main_menu.php:668 #: ../../enterprise/meta/general/main_menu.php:694 -#: ../../enterprise/meta/general/main_menu.php:715 ../../godmode/menu.php:407 -#: ../../godmode/menu.php:525 ../../general/links_menu.php:17 +#: ../../enterprise/meta/general/main_menu.php:715 ../../godmode/menu.php:410 +#: ../../godmode/menu.php:528 ../../general/links_menu.php:17 msgid "Links" msgstr "" @@ -13269,13 +13252,13 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.php:3677 #: ../../godmode/reporting/reporting_builder.php:3693 #: ../../godmode/reporting/reporting_builder.php:3722 -#: ../../operation/menu.php:321 +#: ../../operation/menu.php:325 #: ../../operation/reporting/reporting_viewer.php:211 #: ../../operation/reporting/reporting_viewer.php:216 #: ../../operation/reporting/reporting_viewer.php:229 #: ../../operation/reporting/custom_reporting.php:23 #: ../../operation/reporting/graph_viewer.php:267 -#: ../../operation/reporting/graph_viewer.php:513 +#: ../../operation/reporting/graph_viewer.php:510 msgid "Reporting" msgstr "" @@ -13289,8 +13272,8 @@ msgstr "" #: ../../godmode/update_manager/update_manager.php:57 #: ../../godmode/update_manager/update_manager.php:87 #: ../../godmode/agentes/configurar_agente.php:402 -#: ../../godmode/agentes/configurar_agente.php:707 ../../godmode/menu.php:325 -#: ../../godmode/menu.php:332 +#: ../../godmode/agentes/configurar_agente.php:720 ../../godmode/menu.php:328 +#: ../../godmode/menu.php:335 #: ../../godmode/module_library/module_library_view.php:48 #: ../../operation/agentes/estado_agente.php:201 #: ../../operation/gis_maps/render_view.php:173 @@ -13329,46 +13312,45 @@ msgid "" msgstr "" #: ../../enterprise/meta/general/main_menu.php:237 -#: ../../enterprise/godmode/agentes/configurar_agente.php:88 #: ../../enterprise/godmode/policies/policies.php:543 #: ../../enterprise/include/functions_reporting_csv.php:804 -#: ../../enterprise/operation/agentes/ver_agente.php:192 #: ../../enterprise/operation/snmpconsole/snmp_view.php:23 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/inventory/inventory.php:137 -#: ../../godmode/agentes/configurar_agente.php:723 +#: ../../godmode/agentes/configurar_agente.php:466 +#: ../../godmode/agentes/configurar_agente.php:736 #: ../../godmode/setup/setup_integria.php:314 #: ../../include/functions_reports.php:878 #: ../../include/functions_reports.php:885 #: ../../include/functions_reports.php:892 #: ../../include/functions_reports.php:893 #: ../../include/functions_reports.php:897 -#: ../../include/functions_reporting.php:2902 +#: ../../include/functions_reporting.php:3020 +#: ../../operation/agentes/ver_agente.php:1463 ../../operation/menu.php:77 +#: ../../operation/inventory/inventory.php:140 msgid "Inventory" msgstr "" -#: ../../enterprise/meta/general/main_menu.php:275 ../../operation/menu.php:435 +#: ../../enterprise/meta/general/main_menu.php:275 ../../operation/menu.php:439 msgid "Sound Console" msgstr "" #: ../../enterprise/meta/general/main_menu.php:276 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:380 -#: ../../godmode/menu.php:50 ../../godmode/setup/setup_ehorus.php:112 +#: ../../godmode/menu.php:51 ../../godmode/setup/setup_ehorus.php:112 #: ../../godmode/setup/setup_integria.php:567 -#: ../../include/ajax/events.php:2380 ../../operation/users/user_edit.php:737 -#: ../../operation/users/user_edit.php:783 ../../operation/menu.php:436 +#: ../../include/ajax/events.php:2391 ../../operation/users/user_edit.php:811 +#: ../../operation/users/user_edit.php:857 ../../operation/menu.php:440 msgid "Start" msgstr "" -#: ../../enterprise/meta/general/main_menu.php:278 ../../operation/menu.php:438 +#: ../../enterprise/meta/general/main_menu.php:278 ../../operation/menu.php:442 msgid "No alert" msgstr "" -#: ../../enterprise/meta/general/main_menu.php:279 ../../operation/menu.php:439 +#: ../../enterprise/meta/general/main_menu.php:279 ../../operation/menu.php:443 msgid "Silence alarm" msgstr "" -#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:448 +#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:452 #: ../../operation/events/sound_events.php:63 msgid "Sound Events" msgstr "" @@ -13376,18 +13358,18 @@ msgstr "" #: ../../enterprise/meta/general/main_menu.php:351 #: ../../enterprise/godmode/reporting/mysql_builder.php:80 #: ../../enterprise/godmode/reporting/mysql_builder.php:207 -#: ../../enterprise/operation/menu.php:143 +#: ../../enterprise/operation/menu.php:130 msgid "Custom SQL" msgstr "" #: ../../enterprise/meta/general/main_menu.php:360 #: ../../operation/messages/message_list.php:90 -#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:521 +#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:525 msgid "Messages" msgstr "" #: ../../enterprise/meta/general/main_menu.php:451 -#: ../../enterprise/godmode/menu.php:245 +#: ../../enterprise/godmode/menu.php:236 msgid "Alert correlation" msgstr "" @@ -13397,12 +13379,12 @@ msgstr "" msgid "Centralised management" msgstr "" -#: ../../enterprise/meta/general/main_menu.php:527 ../../godmode/menu.php:198 +#: ../../enterprise/meta/general/main_menu.php:527 ../../godmode/menu.php:201 #: ../../godmode/massive/massive_operations.php:312 msgid "Bulk operations" msgstr "" -#: ../../enterprise/meta/general/main_menu.php:777 ../../godmode/menu.php:405 +#: ../../enterprise/meta/general/main_menu.php:777 ../../godmode/menu.php:408 msgid "System audit log" msgstr "" @@ -13433,7 +13415,7 @@ msgid "Forgot your password?" msgstr "" #: ../../enterprise/meta/general/login_page.php:209 -#: ../../include/functions_config.php:2550 +#: ../../include/functions_config.php:2526 msgid "PANDORA FMS NEXT GENERATION" msgstr "" @@ -13525,8 +13507,8 @@ msgstr "" #: ../../include/ajax/alert_list.ajax.php:306 #: ../../include/class/SnmpConsole.class.php:493 #: ../../include/class/SnmpConsole.class.php:545 -#: ../../include/class/SnmpConsole.class.php:887 -#: ../../operation/agentes/alerts_status.php:431 +#: ../../include/class/SnmpConsole.class.php:888 +#: ../../operation/agentes/alerts_status.php:438 msgid "Validate" msgstr "" @@ -13687,7 +13669,7 @@ msgid "There are no defined users" msgstr "" #: ../../enterprise/extensions/disabled/check_acls.php:134 -#: ../../godmode/menu.php:142 +#: ../../godmode/menu.php:143 msgid "Module tags" msgstr "" @@ -13920,23 +13902,23 @@ msgstr "" msgid "Error add '%s' inventory module." msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:61 +#: ../../enterprise/extensions/vmware/vmware_view.php:59 msgid "Top 5 VMs CPU Usage" msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:70 +#: ../../enterprise/extensions/vmware/vmware_view.php:66 msgid "Top 5 VMs Memory Usage" msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:82 +#: ../../enterprise/extensions/vmware/vmware_view.php:76 msgid "Top 5 VMs Provisioning Usage" msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:91 +#: ../../enterprise/extensions/vmware/vmware_view.php:83 msgid "Top 5 VMs Network Usage" msgstr "" -#: ../../enterprise/extensions/vmware/vmware_view.php:684 +#: ../../enterprise/extensions/vmware/vmware_view.php:669 msgid "Host ESX" msgstr "" @@ -13951,12 +13933,12 @@ msgstr "" #: ../../mobile/operation/modules.php:548 #: ../../mobile/operation/modules.php:571 #: ../../mobile/operation/modules.php:611 -#: ../../mobile/operation/modules.php:634 ../../include/functions.php:1380 -#: ../../include/functions.php:1419 ../../include/functions_modules.php:2883 +#: ../../mobile/operation/modules.php:634 ../../include/functions.php:1406 +#: ../../include/functions.php:1445 ../../include/functions_modules.php:2883 #: ../../include/functions_modules.php:2889 -#: ../../include/functions_modules.php:4120 -#: ../../include/functions_modules.php:4152 ../../include/functions_ui.php:3846 -#: ../../include/functions_ui.php:3912 ../../include/class/Tree.class.php:655 +#: ../../include/functions_modules.php:4195 +#: ../../include/functions_modules.php:4227 ../../include/functions_ui.php:3850 +#: ../../include/functions_ui.php:3916 ../../include/class/Tree.class.php:655 #: ../../include/lib/Module.php:572 ../../include/functions_events.php:64 #: ../../include/functions_events.php:116 #: ../../include/functions_events.php:179 @@ -13964,8 +13946,8 @@ msgstr "" #: ../../operation/agentes/status_monitor.php:1598 #: ../../operation/agentes/status_monitor.php:1695 #: ../../operation/agentes/status_monitor.php:1701 -#: ../../operation/agentes/pandora_networkmap.view.php:1811 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 +#: ../../operation/agentes/pandora_networkmap.view.php:1815 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 #: ../../operation/search_modules.php:114 #: ../../operation/search_modules.php:141 ../../operation/events/events.php:603 #: ../../operation/events/events.php:680 ../../operation/events/events.php:706 @@ -13983,12 +13965,12 @@ msgstr "" #: ../../mobile/operation/modules.php:554 #: ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:617 -#: ../../mobile/operation/modules.php:642 ../../include/functions.php:1368 -#: ../../include/functions.php:1400 ../../include/functions_modules.php:2877 +#: ../../mobile/operation/modules.php:642 ../../include/functions.php:1394 +#: ../../include/functions.php:1426 ../../include/functions_modules.php:2877 #: ../../include/functions_modules.php:2893 -#: ../../include/functions_modules.php:4124 -#: ../../include/functions_modules.php:4144 ../../include/functions_ui.php:3852 -#: ../../include/functions_ui.php:3922 ../../include/class/Tree.class.php:625 +#: ../../include/functions_modules.php:4199 +#: ../../include/functions_modules.php:4219 ../../include/functions_ui.php:3856 +#: ../../include/functions_ui.php:3926 ../../include/class/Tree.class.php:625 #: ../../include/lib/Module.php:556 ../../include/functions_events.php:67 #: ../../include/functions_events.php:120 #: ../../include/functions_events.php:164 @@ -13996,8 +13978,8 @@ msgstr "" #: ../../operation/agentes/status_monitor.php:1619 #: ../../operation/agentes/status_monitor.php:1711 #: ../../operation/agentes/status_monitor.php:1717 -#: ../../operation/agentes/pandora_networkmap.view.php:1805 -#: ../../operation/agentes/pandora_networkmap.view.php:1824 +#: ../../operation/agentes/pandora_networkmap.view.php:1809 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 #: ../../operation/search_modules.php:120 #: ../../operation/search_modules.php:149 ../../operation/events/events.php:578 #: ../../operation/events/events.php:686 ../../operation/events/events.php:711 @@ -14016,12 +13998,12 @@ msgstr "" #: ../../mobile/operation/modules.php:560 #: ../../mobile/operation/modules.php:587 #: ../../mobile/operation/modules.php:623 -#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1371 -#: ../../include/functions.php:1407 ../../include/functions_modules.php:2880 +#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1397 +#: ../../include/functions.php:1433 ../../include/functions_modules.php:2880 #: ../../include/functions_modules.php:2897 -#: ../../include/functions_modules.php:4128 -#: ../../include/functions_modules.php:4160 ../../include/functions_ui.php:3840 -#: ../../include/functions_ui.php:3917 ../../include/class/Tree.class.php:633 +#: ../../include/functions_modules.php:4203 +#: ../../include/functions_modules.php:4235 ../../include/functions_ui.php:3844 +#: ../../include/functions_ui.php:3921 ../../include/class/Tree.class.php:633 #: ../../include/class/NetworkMap.class.php:2938 #: ../../include/lib/Module.php:560 ../../include/functions_events.php:78 #: ../../include/functions_events.php:112 @@ -14030,8 +14012,8 @@ msgstr "" #: ../../operation/agentes/status_monitor.php:1640 #: ../../operation/agentes/status_monitor.php:1727 #: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1808 -#: ../../operation/agentes/pandora_networkmap.view.php:1829 +#: ../../operation/agentes/pandora_networkmap.view.php:1812 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:126 #: ../../operation/search_modules.php:157 ../../operation/events/events.php:608 #: ../../operation/events/events.php:674 ../../operation/events/events.php:728 @@ -14054,12 +14036,12 @@ msgstr "" #: ../../mobile/operation/modules.php:587 #: ../../mobile/operation/modules.php:634 #: ../../mobile/operation/modules.php:642 -#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1384 -#: ../../include/functions.php:1410 ../../include/functions_modules.php:2889 +#: ../../mobile/operation/modules.php:650 ../../include/functions.php:1410 +#: ../../include/functions.php:1436 ../../include/functions_modules.php:2889 #: ../../include/functions_modules.php:2893 #: ../../include/functions_modules.php:2897 -#: ../../include/functions_modules.php:4132 ../../include/functions_ui.php:3859 -#: ../../include/functions_ui.php:3937 ../../include/class/Tree.class.php:639 +#: ../../include/functions_modules.php:4207 ../../include/functions_ui.php:3863 +#: ../../include/functions_ui.php:3941 ../../include/class/Tree.class.php:639 #: ../../include/lib/Module.php:563 ../../include/functions_events.php:81 #: ../../include/functions_events.php:125 #: ../../include/functions_events.php:185 @@ -14071,9 +14053,9 @@ msgstr "" #: ../../operation/agentes/status_monitor.php:1717 #: ../../operation/agentes/status_monitor.php:1727 #: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 -#: ../../operation/agentes/pandora_networkmap.view.php:1824 -#: ../../operation/agentes/pandora_networkmap.view.php:1829 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:132 #: ../../operation/search_modules.php:141 #: ../../operation/search_modules.php:149 @@ -14198,11 +14180,11 @@ msgstr "" #: ../../enterprise/extensions/vmware/vmware_view.php:1311 #: ../../enterprise/extensions/vmware/vmware_view.php:1348 -#: ../../godmode/users/configure_user.php:1299 +#: ../../godmode/users/configure_user.php:1358 #: ../../godmode/massive/massive_edit_users.php:281 #: ../../mobile/include/functions_web.php:22 #: ../../include/class/OrderInterpreter.class.php:219 -#: ../../operation/users/user_edit.php:366 ../../operation/menu.php:349 +#: ../../operation/users/user_edit.php:440 ../../operation/menu.php:353 msgid "Dashboard" msgstr "" @@ -14308,7 +14290,7 @@ msgid "Power Status: " msgstr "" #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1844 +#: ../../operation/agentes/pandora_networkmap.view.php:1848 msgid "Status: " msgstr "" @@ -14446,7 +14428,7 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:656 #: ../../godmode/massive/massive_edit_modules.php:885 #: ../../godmode/alerts/configure_alert_template.php:850 -#: ../../include/functions_reporting_html.php:5422 +#: ../../include/functions_reporting_html.php:5441 #: ../../include/functions_treeview.php:92 #: ../../include/functions_treeview.php:104 #: ../../include/functions_alerts.php:676 @@ -14471,7 +14453,7 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:671 #: ../../godmode/massive/massive_edit_modules.php:887 #: ../../godmode/alerts/configure_alert_template.php:862 -#: ../../include/functions_reporting_html.php:5423 +#: ../../include/functions_reporting_html.php:5442 #: ../../include/functions_treeview.php:92 #: ../../include/functions_treeview.php:104 #: ../../include/functions_alerts.php:675 @@ -14511,6 +14493,12 @@ msgstr "" msgid "Percentage" msgstr "" +#: ../../enterprise/godmode/modules/configure_local_component.php:346 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:568 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:659 +msgid "Defines threshold as a percentage of value decrease/increment" +msgstr "" + #: ../../enterprise/godmode/modules/configure_local_component.php:350 #: ../../godmode/modules/manage_network_components_form_common.php:201 #: ../../godmode/modules/manage_network_components_form_wizard.php:412 @@ -14609,7 +14597,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:316 #: ../../godmode/agentes/module_manager_editor_common.php:547 #: ../../godmode/massive/massive_edit_modules.php:1042 -#: ../../include/functions_reporting.php:4297 +#: ../../include/functions_reporting.php:4560 msgid "Historical data" msgstr "" @@ -14637,7 +14625,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:319 #: ../../godmode/agentes/module_manager_editor_common.php:679 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:6783 +#: ../../include/functions_reporting.php:6998 msgid "Min. Value" msgstr "" @@ -14651,7 +14639,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_common.php:321 #: ../../godmode/agentes/module_manager_editor_common.php:683 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:6779 +#: ../../include/functions_reporting.php:6994 msgid "Max. Value" msgstr "" @@ -14864,106 +14852,6 @@ msgstr "" msgid "Please introduce a positicve percentage value" msgstr "" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:40 -msgid "To manage inventory plugin you must activate centralized management" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:350 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature " -"from centralized manager console. Go to %s to manage it." -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 -#: ../../enterprise/operation/log/log_viewer.php:459 -#: ../../godmode/netflow/nf_edit.php:47 -#: ../../operation/netflow/nf_live_view.php:141 -msgid "Not supported in Windows systems" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:121 -msgid "Successfully created inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:122 -msgid "Error creating inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:149 -#: ../../enterprise/godmode/agentes/inventory_manager.php:128 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 -msgid "Successfully updated inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:150 -#: ../../enterprise/godmode/agentes/inventory_manager.php:130 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 -msgid "Error updating inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:168 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:189 -#: ../../enterprise/godmode/agentes/inventory_manager.php:100 -msgid "Successfully deleted inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:169 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:190 -#: ../../enterprise/godmode/agentes/inventory_manager.php:102 -msgid "Error deleting inventory module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:223 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:256 -#: ../../enterprise/godmode/modules/local_components.php:446 -#: ../../godmode/modules/manage_nc_groups.php:194 -#: ../../godmode/modules/manage_network_components.php:581 -#: ../../godmode/modules/manage_network_templates.php:114 -msgid "Successfully multiple deleted" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:224 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:257 -#: ../../enterprise/godmode/modules/local_components.php:447 -#: ../../godmode/modules/manage_nc_groups.php:195 -#: ../../godmode/modules/manage_network_components.php:582 -#: ../../godmode/modules/manage_network_templates.php:115 -msgid "Not deleted. Error deleting multiple data" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:281 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 -msgid "Interpreter" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:290 -msgid "No inventory modules defined" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:311 -msgid "Local module" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:313 -msgid "Remote/Local" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:359 -msgid "" -"The configurations of inventory modules from the nodes have been unified.\n" -"\t\tFrom this point on, changes to the inventory scripts must be made " -"through this screen." -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:361 -msgid "You can find more information at:" -msgstr "" - #: ../../enterprise/godmode/modules/local_components.php:141 #: ../../godmode/modules/manage_network_components.php:197 #: ../../godmode/alerts/configure_alert_template.php:191 @@ -14974,8 +14862,8 @@ msgstr "" #: ../../enterprise/godmode/modules/local_components.php:142 #: ../../enterprise/godmode/modules/local_components.php:320 #: ../../enterprise/godmode/policies/policies.php:172 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:126 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:129 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 #: ../../enterprise/godmode/setup/setup_metaconsole.php:126 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 @@ -14988,19 +14876,19 @@ msgstr "" #: ../../godmode/modules/manage_nc_groups.php:85 #: ../../godmode/modules/manage_network_components.php:200 #: ../../godmode/modules/manage_network_components.php:429 -#: ../../godmode/users/configure_user.php:555 +#: ../../godmode/users/configure_user.php:569 #: ../../godmode/agentes/configurar_agente.php:362 -#: ../../godmode/agentes/configurar_agente.php:887 +#: ../../godmode/agentes/configurar_agente.php:900 #: ../../godmode/agentes/planned_downtime.editor.php:642 -#: ../../godmode/alerts/alert_commands.php:645 +#: ../../godmode/alerts/alert_commands.php:646 #: ../../godmode/alerts/configure_alert_template.php:192 #: ../../godmode/alerts/configure_alert_template.php:527 #: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:67 #: ../../godmode/setup/gis.php:49 #: ../../godmode/reporting/reporting_builder.item_editor.php:5920 -#: ../../include/functions_alerts.php:2751 -#: ../../include/functions_planned_downtimes.php:112 -#: ../../include/functions_planned_downtimes.php:844 +#: ../../include/functions_alerts.php:2755 +#: ../../include/functions_planned_downtimes.php:113 +#: ../../include/functions_planned_downtimes.php:845 #: ../../operation/agentes/pandora_networkmap.php:140 #: ../../operation/agentes/pandora_networkmap.php:378 msgid "Could not be created" @@ -15032,7 +14920,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1334 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1360 #: ../../enterprise/include/ajax/servers.ajax.php:331 #: ../../enterprise/tools/ipam/ipam_action.php:277 #: ../../enterprise/tools/ipam/ipam_massive.php:48 @@ -15044,8 +14932,8 @@ msgstr "" #: ../../godmode/alerts/configure_alert_template.php:555 #: ../../godmode/alerts/alert_list.php:95 #: ../../godmode/alerts/alert_list.php:320 ../../godmode/setup/gis.php:41 -#: ../../include/functions_alerts.php:2751 -#: ../../include/functions_planned_downtimes.php:122 +#: ../../include/functions_alerts.php:2755 +#: ../../include/functions_planned_downtimes.php:123 #: ../../operation/agentes/pandora_networkmap.php:216 #: ../../operation/agentes/pandora_networkmap.php:515 msgid "Could not be updated" @@ -15057,6 +14945,24 @@ msgstr "" msgid "Updated successfully" msgstr "" +#: ../../enterprise/godmode/modules/local_components.php:446 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/modules/manage_inventory_modules.php:223 +#: ../../godmode/modules/manage_inventory_modules.php:256 +#: ../../godmode/modules/manage_network_components.php:581 +#: ../../godmode/modules/manage_network_templates.php:114 +msgid "Successfully multiple deleted" +msgstr "" + +#: ../../enterprise/godmode/modules/local_components.php:447 +#: ../../godmode/modules/manage_nc_groups.php:195 +#: ../../godmode/modules/manage_inventory_modules.php:224 +#: ../../godmode/modules/manage_inventory_modules.php:257 +#: ../../godmode/modules/manage_network_components.php:582 +#: ../../godmode/modules/manage_network_templates.php:115 +msgid "Not deleted. Error deleting multiple data" +msgstr "" + #: ../../enterprise/godmode/modules/local_components.php:550 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2854 #: ../../godmode/modules/manage_network_components.php:662 @@ -15073,7 +14979,7 @@ msgstr "" #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 #: ../../godmode/modules/manage_network_components.php:862 #: ../../godmode/modules/manage_network_components.php:863 -#: ../../godmode/agentes/module_manager.php:1226 +#: ../../godmode/agentes/module_manager.php:1231 #: ../../godmode/snmpconsole/snmp_alert.php:1347 #: ../../godmode/snmpconsole/snmp_alert.php:1348 #: ../../godmode/alerts/alert_actions.php:435 @@ -15082,62 +14988,6 @@ msgstr "" msgid "Duplicate" msgstr "" -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:75 -#: ../../enterprise/godmode/agentes/inventory_manager.php:165 -msgid "Inventory module error" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:120 -msgid "Left blank for the LOCAL inventory modules" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 -msgid "Block Mode" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 -#: ../../godmode/massive/massive_standby_alerts.php:224 -#: ../../godmode/massive/massive_standby_alerts.php:259 -#: ../../godmode/massive/massive_enable_disable_alerts.php:196 -#: ../../godmode/massive/massive_enable_disable_alerts.php:231 -#: ../../include/class/ModuleTemplates.class.php:1209 -msgid "Format" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 -msgid "separate fields with " -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:129 -msgid "Script mode" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:131 -msgid "Use script" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:139 -msgid "Use inline code" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:148 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 -msgid "Script path" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:151 -#: ../../include/ajax/double_auth.ajax.php:149 -#: ../../include/ajax/double_auth.ajax.php:292 -msgid "Code" -msgstr "" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:152 -msgid "" -"Here is placed the script for the REMOTE inventory modules Local inventory " -"modules don't use this field" -msgstr "" - #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:83 msgid "Cannot delete rule from autoconfiguration" msgstr "" @@ -15187,6 +15037,16 @@ msgstr "" msgid "Agent autoconfiguration list" msgstr "" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:350 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 +#: ../../godmode/modules/manage_inventory_modules.php:63 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature " +"from centralized manager console. Go to %s to manage it." +msgstr "" + #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 msgid "Autoconfiguration" msgstr "" @@ -15196,7 +15056,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wizard.php:661 #: ../../godmode/agentes/planned_downtime.list.php:660 #: ../../godmode/agentes/planned_downtime.editor.php:878 -#: ../../include/functions_reporting_html.php:6303 +#: ../../include/functions_reporting_html.php:6322 msgid "Execution" msgstr "" @@ -15352,7 +15212,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 #: ../../godmode/agentes/agent_manager.php:505 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:4869 +#: ../../include/functions_events.php:4848 #: ../../operation/agentes/estado_generalagente.php:408 msgid "Secondary groups" msgstr "" @@ -15473,7 +15333,7 @@ msgstr "" #: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:800 #: ../../godmode/massive/massive_edit_users.php:519 #: ../../godmode/alerts/alert_list.list.php:1017 -#: ../../include/functions.php:3377 +#: ../../include/functions.php:3403 #: ../../include/class/SatelliteAgent.class.php:1216 msgid "Disable" msgstr "" @@ -15491,10 +15351,10 @@ msgstr "" msgid "This collection has not been added to any agents" msgstr "" -#: ../../enterprise/godmode/agentes/configurar_agente.php:112 +#: ../../enterprise/godmode/agentes/configurar_agente.php:88 #: ../../enterprise/godmode/policies/policy.php:82 #: ../../enterprise/include/functions_policies.php:3833 -#: ../../godmode/agentes/configurar_agente.php:729 +#: ../../godmode/agentes/configurar_agente.php:742 msgid "Agent plugins" msgstr "" @@ -15521,20 +15381,20 @@ msgid "Show files" msgstr "" #: ../../enterprise/godmode/agentes/collection_manager.php:196 -#: ../../enterprise/operation/agentes/agent_inventory.php:280 #: ../../enterprise/operation/log/log_viewer.php:1257 #: ../../enterprise/operation/log/log_viewer.php:1265 -#: ../../enterprise/operation/inventory/inventory.php:475 -#: ../../enterprise/operation/inventory/inventory.php:518 #: ../../godmode/reporting/reporting_builder.php:1260 -#: ../../include/functions_reporting.php:2977 +#: ../../include/functions_reporting.php:3095 +#: ../../operation/agentes/agent_inventory.php:280 +#: ../../operation/inventory/inventory.php:478 +#: ../../operation/inventory/inventory.php:521 msgid "No data found." msgstr "" #: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 #: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../godmode/agentes/module_manager.php:883 +#: ../../godmode/agentes/inventory_manager.php:220 +#: ../../godmode/agentes/module_manager.php:884 #: ../../godmode/snmpconsole/snmp_alert.php:1254 #: ../../godmode/reporting/reporting_builder.list_items.php:371 #: ../../godmode/reporting/graph_builder.graph_editor.php:211 @@ -15639,46 +15499,6 @@ msgstr "" msgid "Percentual value" msgstr "" -#: ../../enterprise/godmode/agentes/inventory_manager.php:84 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 -msgid "Successfully added inventory module" -msgstr "" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:86 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 -msgid "Error adding inventory module" -msgstr "" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:89 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 -msgid "The inventory of the module already exists" -msgstr "" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:110 -msgid "Successfully forced inventory module" -msgstr "" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:112 -msgid "Error forcing inventory module" -msgstr "" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:223 -#: ../../enterprise/include/functions_ui.php:92 -msgid "Target" -msgstr "" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:258 -#: ../../enterprise/include/functions_ipam.php:1386 -#: ../../enterprise/operation/services/services.list.php:639 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:586 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:676 -#: ../../include/ajax/module.php:1065 ../../include/functions_ui.php:1162 -#: ../../operation/visual_console/view.php:406 -#: ../../operation/agentes/group_view.php:221 -#: ../../operation/agentes/group_view.php:283 -msgid "Force" -msgstr "" - #: ../../enterprise/godmode/agentes/collections.data.php:384 msgid "Collection updated successfully" msgstr "" @@ -15759,7 +15579,7 @@ msgstr "" #: ../../enterprise/godmode/agentes/plugins_manager.php:192 #: ../../enterprise/godmode/policies/policy_plugins.php:185 #: ../../enterprise/godmode/policies/policies.php:539 -#: ../../godmode/menu.php:309 +#: ../../godmode/menu.php:312 msgid "Plugins" msgstr "" @@ -15784,6 +15604,10 @@ msgstr "" msgid "No component was found" msgstr "" +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:114 +msgid "macro_help" +msgstr "" + #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 msgid "Show configuration data" msgstr "" @@ -15818,7 +15642,7 @@ msgid "Delete remote conf agent files" msgstr "" #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1351 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 #: ../../godmode/agentes/agent_manager.php:543 msgid "Delete remote configuration file" msgstr "" @@ -15917,7 +15741,7 @@ msgid "Custom ID" msgstr "" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:498 -#: ../../godmode/agentes/module_manager.php:1165 +#: ../../godmode/agentes/module_manager.php:1166 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." @@ -15983,7 +15807,7 @@ msgstr "" #: ../../operation/visual_console/view.php:228 #: ../../operation/agentes/pandora_networkmap.editor.php:232 #: ../../operation/agentes/pandora_networkmap.php:672 -#: ../../operation/menu.php:310 +#: ../../operation/menu.php:314 msgid "Topology maps" msgstr "" @@ -15991,14 +15815,14 @@ msgstr "" #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 #: ../../operation/agentes/pandora_networkmap.editor.php:236 #: ../../operation/agentes/pandora_networkmap.php:676 -#: ../../operation/agentes/pandora_networkmap.view.php:2274 +#: ../../operation/agentes/pandora_networkmap.view.php:2278 msgid "Networkmap" msgstr "" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 #: ../../operation/agentes/pandora_networkmap.editor.php:274 -#: ../../operation/agentes/pandora_networkmap.view.php:2280 +#: ../../operation/agentes/pandora_networkmap.view.php:2284 msgid "Not found networkmap." msgstr "" @@ -16112,7 +15936,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_queue.php:218 #: ../../enterprise/godmode/policies/policies.php:272 #: ../../enterprise/godmode/policies/policy_linking.php:117 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:318 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:320 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 #: ../../enterprise/godmode/policies/policy_collections.php:50 #: ../../enterprise/godmode/policies/policy_agents.php:326 @@ -16142,7 +15966,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_plugins.php:70 #: ../../enterprise/godmode/policies/policy_alerts.php:259 #: ../../enterprise/godmode/policies/policy_modules.php:1321 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:152 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 #: ../../enterprise/godmode/policies/policy_collections.php:103 #: ../../enterprise/godmode/policies/policy_agents.php:113 @@ -16153,7 +15977,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_plugins.php:71 #: ../../enterprise/godmode/policies/policy_alerts.php:260 #: ../../enterprise/godmode/policies/policy_modules.php:1322 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:153 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 #: ../../enterprise/godmode/policies/policy_collections.php:104 #: ../../enterprise/godmode/policies/policy_agents.php:114 @@ -16188,35 +16012,35 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:153 #: ../../enterprise/godmode/policies/policy_modules.php:536 #: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../godmode/agentes/configurar_agente.php:2234 +#: ../../godmode/agentes/configurar_agente.php:2250 #: ../../godmode/agentes/modificar_agente.php:278 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/alerts/alert_list.php:401 +#: ../../godmode/alerts/alert_list.php:419 #: ../../include/ajax/alert_list.ajax.php:381 msgid "Could not be disabled" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:178 #: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:427 +#: ../../godmode/alerts/alert_list.php:445 msgid "Successfully set standby" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:179 #: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:428 +#: ../../godmode/alerts/alert_list.php:446 msgid "Could not be set standby" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:204 #: ../../godmode/massive/massive_standby_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:454 +#: ../../godmode/alerts/alert_list.php:472 msgid "Successfully set off standby" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:205 #: ../../godmode/massive/massive_standby_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:455 +#: ../../godmode/alerts/alert_list.php:473 msgid "Could not be set off standby" msgstr "" @@ -16229,19 +16053,19 @@ msgid " could not be created" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:255 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:145 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:147 msgid "" "Successfully added to delete pending alerts. Will be deleted in the next " "policy application." msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:202 msgid "Added action successfuly" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:203 #: ../../enterprise/godmode/policies/policy_agents.php:251 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 #: ../../godmode/massive/massive_delete_action_alerts.php:175 @@ -16256,12 +16080,12 @@ msgid "Could not be added" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:302 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:173 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:175 msgid "Deleted action successfuly" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:428 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:468 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:470 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2404 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 #: ../../godmode/alerts/alert_list.list.php:650 @@ -16271,7 +16095,7 @@ msgid "Always" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:430 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:470 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:472 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3374 #: ../../godmode/alerts/alert_list.list.php:652 #: ../../include/class/Diagnostics.class.php:1184 @@ -16280,7 +16104,7 @@ msgid "On" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:434 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:474 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3378 #: ../../godmode/alerts/alert_list.list.php:656 msgid "Until" @@ -16288,15 +16112,15 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:529 #: ../../enterprise/godmode/policies/policy_modules.php:1578 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:542 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:544 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 -#: ../../enterprise/godmode/policies/policy_agents.php:1066 -#: ../../enterprise/godmode/policies/policy_agents.php:1535 +#: ../../enterprise/godmode/policies/policy_agents.php:1102 +#: ../../enterprise/godmode/policies/policy_agents.php:1571 msgid "Undo deletion" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:596 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:609 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:611 #: ../../godmode/massive/massive_add_action_alerts.php:253 #: ../../godmode/alerts/alert_list.list.php:767 #: ../../godmode/alerts/alert_list.builder.php:127 @@ -16334,7 +16158,7 @@ msgid "Set standby" msgstr "" #: ../../enterprise/godmode/policies/policy_alerts.php:754 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:517 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:519 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 @@ -16426,14 +16250,14 @@ msgid "Could not be added to deleted all modules." msgstr "" #: ../../enterprise/godmode/policies/policy_modules.php:1368 -#: ../../godmode/agentes/configurar_agente.php:2147 +#: ../../godmode/agentes/configurar_agente.php:2163 #: ../../include/functions_reports.php:963 #, php-format msgid "copy of %s" msgstr "" #: ../../enterprise/godmode/policies/policy_modules.php:1386 -#: ../../godmode/agentes/configurar_agente.php:2161 +#: ../../godmode/agentes/configurar_agente.php:2177 #, php-format msgid "copy of %s (%d)" msgstr "" @@ -16463,15 +16287,15 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_modules.php:1533 #: ../../enterprise/godmode/policies/policy_modules.php:1534 -#: ../../godmode/agentes/module_manager.php:1203 -#: ../../godmode/agentes/module_manager.php:1204 +#: ../../godmode/agentes/module_manager.php:1208 +#: ../../godmode/agentes/module_manager.php:1209 msgid "Enable module" msgstr "" #: ../../enterprise/godmode/policies/policy_modules.php:1543 #: ../../enterprise/godmode/policies/policy_modules.php:1544 -#: ../../godmode/agentes/module_manager.php:1213 -#: ../../godmode/agentes/module_manager.php:1214 +#: ../../godmode/agentes/module_manager.php:1218 +#: ../../godmode/agentes/module_manager.php:1219 msgid "Disable module" msgstr "" @@ -16549,8 +16373,8 @@ msgid "Update pending agents" msgstr "" #: ../../enterprise/godmode/policies/policy_queue.php:337 -#: ../../enterprise/godmode/policies/policy_agents.php:1012 -#: ../../enterprise/godmode/policies/policy_agents.php:1493 +#: ../../enterprise/godmode/policies/policy_agents.php:1048 +#: ../../enterprise/godmode/policies/policy_agents.php:1529 msgid "Add to apply queue" msgstr "" @@ -16641,7 +16465,7 @@ msgstr "" #: ../../enterprise/godmode/policies/policy_linking.php:153 #: ../../include/functions_massive_operations.php:191 #: ../../include/lib/Dashboard/Widget.php:596 -#: ../../include/functions_events.php:4734 +#: ../../include/functions_events.php:4713 msgid "Node" msgstr "" @@ -16676,21 +16500,21 @@ msgstr "" #: ../../enterprise/godmode/policies/policies.php:239 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 #: ../../godmode/alerts/alert_actions.php:129 -#: ../../godmode/alerts/alert_commands.php:711 +#: ../../godmode/alerts/alert_commands.php:712 #: ../../godmode/reporting/map_builder.php:315 #: ../../godmode/reporting/map_builder.php:322 #: ../../godmode/reporting/reporting_builder.php:737 #: ../../include/functions_agents.php:1022 -#: ../../include/functions_planned_downtimes.php:978 +#: ../../include/functions_planned_downtimes.php:979 msgid "Successfully copied" msgstr "" #: ../../enterprise/godmode/policies/policies.php:240 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 #: ../../godmode/alerts/alert_actions.php:130 -#: ../../godmode/alerts/alert_commands.php:712 +#: ../../godmode/alerts/alert_commands.php:713 #: ../../godmode/reporting/reporting_builder.php:738 -#: ../../include/functions_planned_downtimes.php:975 +#: ../../include/functions_planned_downtimes.php:976 msgid "Could not be copied" msgstr "" @@ -16785,32 +16609,32 @@ msgstr "" msgid "No module specified" msgstr "" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:125 msgid "Created successfuly" msgstr "" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:129 msgid "Duplicated alert" msgstr "" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:381 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 #: ../../godmode/alerts/alert_list.list.php:188 msgid "Alert control filter" msgstr "" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:392 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:394 msgid "Modules in policy per agents" msgstr "" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:575 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:577 msgid "There is not external alerts configured in this policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:629 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:631 msgid "Modules in policy agents" msgstr "" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:657 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:659 msgid "Alert Template" msgstr "" @@ -16818,6 +16642,33 @@ msgstr "" msgid "Module is not selected" msgstr "" +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 +#: ../../godmode/agentes/inventory_manager.php:84 +msgid "Successfully added inventory module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 +#: ../../godmode/agentes/inventory_manager.php:86 +msgid "Error adding inventory module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 +#: ../../godmode/agentes/inventory_manager.php:89 +msgid "The inventory of the module already exists" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 +#: ../../godmode/modules/manage_inventory_modules.php:149 +#: ../../godmode/agentes/inventory_manager.php:128 +msgid "Successfully updated inventory module" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 +#: ../../godmode/modules/manage_inventory_modules.php:150 +#: ../../godmode/agentes/inventory_manager.php:130 +msgid "Error updating inventory module" +msgstr "" + #: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 msgid "There are no defined inventory modules" msgstr "" @@ -16900,13 +16751,18 @@ msgstr "" msgid "Apply to" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:538 -#: ../../enterprise/godmode/policies/policy_agents.php:670 +#: ../../enterprise/godmode/policies/policy_agents.php:499 +#: ../../enterprise/godmode/policies/policy_agents.php:517 +msgid "Filter OS" +msgstr "" + +#: ../../enterprise/godmode/policies/policy_agents.php:574 +#: ../../enterprise/godmode/policies/policy_agents.php:706 msgid "Agents in Policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:566 -#: ../../enterprise/godmode/policies/policy_agents.php:1215 +#: ../../enterprise/godmode/policies/policy_agents.php:602 +#: ../../enterprise/godmode/policies/policy_agents.php:1251 #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:509 #: ../../enterprise/godmode/setup/setup_auth.php:1304 @@ -16931,30 +16787,30 @@ msgstr "" msgid "Groups" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:572 -#: ../../enterprise/godmode/policies/policy_agents.php:1217 +#: ../../enterprise/godmode/policies/policy_agents.php:608 +#: ../../enterprise/godmode/policies/policy_agents.php:1253 msgid "Groups in Policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:707 +#: ../../enterprise/godmode/policies/policy_agents.php:743 msgid "Add agents to policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:734 +#: ../../enterprise/godmode/policies/policy_agents.php:770 msgid "Delete agents from policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:831 +#: ../../enterprise/godmode/policies/policy_agents.php:867 msgid "Applied" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:832 +#: ../../enterprise/godmode/policies/policy_agents.php:868 msgid "Not applied" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:849 -#: ../../godmode/agentes/configurar_agente.php:615 -#: ../../godmode/agentes/configurar_agente.php:765 +#: ../../enterprise/godmode/policies/policy_agents.php:885 +#: ../../godmode/agentes/configurar_agente.php:628 +#: ../../godmode/agentes/configurar_agente.php:778 #: ../../godmode/agentes/agent_manager.php:533 #: ../../godmode/massive/massive_edit_agents.php:966 #: ../../godmode/reporting/reporting_builder.item_editor.php:79 @@ -16962,20 +16818,20 @@ msgstr "" msgid "Remote configuration" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../enterprise/godmode/policies/policy_agents.php:885 #: ../../enterprise/operation/agentes/policy_view.php:394 msgid "R." msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 +#: ../../enterprise/godmode/policies/policy_agents.php:888 +#: ../../enterprise/godmode/policies/policy_agents.php:1404 #: ../../enterprise/godmode/admin_access_logs.php:50 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 #: ../../enterprise/operation/agentes/policy_view.php:66 #: ../../enterprise/operation/agentes/policy_view.php:166 #: ../../enterprise/operation/agentes/policy_view.php:257 #: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../godmode/agentes/module_manager.php:886 +#: ../../godmode/agentes/module_manager.php:887 #: ../../mobile/operation/agents.php:406 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 @@ -16984,16 +16840,16 @@ msgstr "" msgid "S." msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:853 +#: ../../enterprise/godmode/policies/policy_agents.php:889 msgid "Unlinked modules" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:853 +#: ../../enterprise/godmode/policies/policy_agents.php:889 msgid "U." msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/policies/policy_agents.php:890 +#: ../../enterprise/godmode/policies/policy_agents.php:1405 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:118 #: ../../mobile/operation/agents.php:407 @@ -17001,100 +16857,100 @@ msgstr "" msgid "A." msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:856 -#: ../../enterprise/godmode/policies/policy_agents.php:1371 +#: ../../enterprise/godmode/policies/policy_agents.php:892 +#: ../../enterprise/godmode/policies/policy_agents.php:1407 #: ../../enterprise/operation/agentes/policy_view.php:69 msgid "Last application" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 +#: ../../enterprise/godmode/policies/policy_agents.php:893 +#: ../../enterprise/godmode/policies/policy_agents.php:1409 msgid "Add to delete queue" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 +#: ../../enterprise/godmode/policies/policy_agents.php:893 +#: ../../enterprise/godmode/policies/policy_agents.php:1409 msgid "D." msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:946 +#: ../../enterprise/godmode/policies/policy_agents.php:982 #: ../../godmode/agentes/agent_manager.php:263 msgid "This agent can be remotely configured" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:953 +#: ../../enterprise/godmode/policies/policy_agents.php:989 msgid "This agent can not be remotely configured" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:1003 -#: ../../enterprise/godmode/policies/policy_agents.php:1482 +#: ../../enterprise/godmode/policies/policy_agents.php:1039 +#: ../../enterprise/godmode/policies/policy_agents.php:1518 msgid "Process deletion" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:1102 -#: ../../enterprise/godmode/policies/policy_agents.php:1427 +#: ../../enterprise/godmode/policies/policy_agents.php:1138 +#: ../../enterprise/godmode/policies/policy_agents.php:1463 #: ../../enterprise/operation/agentes/policy_view.php:83 msgid "Policy applied" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:1110 -#: ../../enterprise/godmode/policies/policy_agents.php:1435 +#: ../../enterprise/godmode/policies/policy_agents.php:1146 +#: ../../enterprise/godmode/policies/policy_agents.php:1471 msgid "Need apply" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:1122 -#: ../../enterprise/godmode/policies/policy_agents.php:1447 +#: ../../enterprise/godmode/policies/policy_agents.php:1158 +#: ../../enterprise/godmode/policies/policy_agents.php:1483 msgid "Applying policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:1135 -#: ../../enterprise/godmode/policies/policy_agents.php:1458 +#: ../../enterprise/godmode/policies/policy_agents.php:1171 +#: ../../enterprise/godmode/policies/policy_agents.php:1494 msgid "Deleting from policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:1152 +#: ../../enterprise/godmode/policies/policy_agents.php:1188 #: ../../godmode/massive/massive_delete_modules.php:87 #: ../../godmode/massive/massive_add_alerts.php:100 #: ../../godmode/massive/massive_delete_agents.php:61 #: ../../godmode/massive/massive_edit_agents.php:214 #: ../../godmode/massive/massive_delete_alerts.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:75 -#: ../../include/functions_visual_map.php:2566 -#: ../../include/functions_visual_map.php:2963 +#: ../../include/functions_visual_map.php:2568 +#: ../../include/functions_visual_map.php:2914 msgid "No agents selected" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:1295 +#: ../../enterprise/godmode/policies/policy_agents.php:1331 msgid "Add groups to policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:1317 +#: ../../enterprise/godmode/policies/policy_agents.php:1353 msgid "Delete groups from policy" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:1370 +#: ../../enterprise/godmode/policies/policy_agents.php:1406 msgid "Total agents in policy group" msgstr "" -#: ../../enterprise/godmode/policies/policy_agents.php:1370 +#: ../../enterprise/godmode/policies/policy_agents.php:1406 msgid "T." msgstr "" #: ../../enterprise/godmode/policies/policy.php:102 #: ../../enterprise/include/functions_policies.php:3733 -#: ../../godmode/agentes/configurar_agente.php:538 +#: ../../godmode/agentes/configurar_agente.php:551 msgid "Agent wizard" msgstr "" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:41 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 #: ../../enterprise/operation/snmpconsole/snmp_view.php:82 -#: ../../enterprise/operation/menu.php:153 -#: ../../include/class/SnmpConsole.class.php:928 +#: ../../enterprise/operation/menu.php:140 +#: ../../include/class/SnmpConsole.class.php:929 msgid "SNMP trap editor" msgstr "" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:77 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 #: ../../godmode/setup/snmp_wizard.php:42 @@ -17102,12 +16958,12 @@ msgstr "" msgid "OID" msgstr "" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:82 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:85 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 msgid "Custom OID" msgstr "" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:92 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:95 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2243 #: ../../enterprise/include/functions_reporting_csv.php:2437 @@ -17115,7 +16971,7 @@ msgstr "" #: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1364 #: ../../godmode/reporting/reporting_builder.item_editor.php:2304 #: ../../include/functions_reports.php:835 -#: ../../include/functions_reporting.php:7190 +#: ../../include/functions_reporting.php:7405 #: ../../include/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "" @@ -17208,93 +17064,93 @@ msgstr "" msgid "Satellite operations" msgstr "" -#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:266 +#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:257 msgid "Duplicate config" msgstr "" #: ../../enterprise/godmode/menu.php:69 -#: ../../godmode/agentes/configurar_agente.php:718 +#: ../../godmode/agentes/configurar_agente.php:731 msgid "Network config manager" msgstr "" -#: ../../enterprise/godmode/menu.php:96 +#: ../../enterprise/godmode/menu.php:87 #: ../../enterprise/include/functions_policies.php:3712 msgid "Manage policies" msgstr "" -#: ../../enterprise/godmode/menu.php:105 +#: ../../enterprise/godmode/menu.php:96 msgid "Manage agent autoconfiguration" msgstr "" -#: ../../enterprise/godmode/menu.php:114 +#: ../../enterprise/godmode/menu.php:105 #: ../../enterprise/include/class/AgentRepository.class.php:668 msgid "Software agents repository" msgstr "" -#: ../../enterprise/godmode/menu.php:147 +#: ../../enterprise/godmode/menu.php:138 #: ../../enterprise/include/class/CSVImportAgents.class.php:114 #: ../../godmode/wizards/HostDevices.class.php:159 msgid "Import CSV" msgstr "" -#: ../../enterprise/godmode/menu.php:151 +#: ../../enterprise/godmode/menu.php:142 #: ../../enterprise/include/class/DeploymentCenter.class.php:613 #: ../../godmode/wizards/HostDevices.class.php:165 #: ../../godmode/wizards/DiscoveryTaskList.class.php:825 msgid "Agent deployment" msgstr "" -#: ../../enterprise/godmode/menu.php:161 +#: ../../enterprise/godmode/menu.php:152 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 msgid "Microsoft SQL Server" msgstr "" -#: ../../enterprise/godmode/menu.php:162 +#: ../../enterprise/godmode/menu.php:153 msgid "Mysql" msgstr "" -#: ../../enterprise/godmode/menu.php:163 +#: ../../enterprise/godmode/menu.php:154 #: ../../enterprise/godmode/setup/setup.php:108 #: ../../enterprise/include/class/Oracle.app.php:411 msgid "Oracle" msgstr "" -#: ../../enterprise/godmode/menu.php:164 +#: ../../enterprise/godmode/menu.php:155 #: ../../enterprise/include/class/VMware.app.php:503 msgid "VMware" msgstr "" -#: ../../enterprise/godmode/menu.php:165 +#: ../../enterprise/godmode/menu.php:156 #: ../../enterprise/include/class/SAPView.class.php:621 #: ../../enterprise/include/class/SAPView.class.php:624 #: ../../include/class/CredentialStore.class.php:986 msgid "SAP" msgstr "" -#: ../../enterprise/godmode/menu.php:166 +#: ../../enterprise/godmode/menu.php:157 #: ../../enterprise/include/class/DB2.app.php:404 msgid "DB2" msgstr "" -#: ../../enterprise/godmode/menu.php:167 +#: ../../enterprise/godmode/menu.php:158 #: ../../enterprise/godmode/wizards/Applications.class.php:163 #: ../../enterprise/godmode/wizards/Applications.class.php:171 msgid "Applications" msgstr "" -#: ../../enterprise/godmode/menu.php:178 +#: ../../enterprise/godmode/menu.php:169 msgid "Amazon Web Services" msgstr "" -#: ../../enterprise/godmode/menu.php:179 +#: ../../enterprise/godmode/menu.php:170 msgid "Microsoft Azure" msgstr "" -#: ../../enterprise/godmode/menu.php:180 +#: ../../enterprise/godmode/menu.php:171 msgid "Google Compute Platform" msgstr "" -#: ../../enterprise/godmode/menu.php:181 +#: ../../enterprise/godmode/menu.php:172 #: ../../enterprise/godmode/wizards/Cloud.class.php:186 #: ../../enterprise/godmode/wizards/Cloud.class.php:195 #: ../../enterprise/include/class/Azure.cloud.php:150 @@ -17306,61 +17162,61 @@ msgstr "" msgid "Cloud" msgstr "" -#: ../../enterprise/godmode/menu.php:196 +#: ../../enterprise/godmode/menu.php:187 msgid "New console task" msgstr "" -#: ../../enterprise/godmode/menu.php:206 +#: ../../enterprise/godmode/menu.php:197 msgid "Enterprise ACL Setup" msgstr "" -#: ../../enterprise/godmode/menu.php:215 +#: ../../enterprise/godmode/menu.php:206 msgid "Skins" msgstr "" -#: ../../enterprise/godmode/menu.php:225 +#: ../../enterprise/godmode/menu.php:216 msgid "Manage database HA" msgstr "" -#: ../../enterprise/godmode/menu.php:235 +#: ../../enterprise/godmode/menu.php:226 #: ../../enterprise/godmode/servers/manage_export.php:43 #: ../../enterprise/godmode/servers/manage_export_form.php:59 msgid "Export targets" msgstr "" -#: ../../enterprise/godmode/menu.php:257 +#: ../../enterprise/godmode/menu.php:248 msgid "Log Collector" msgstr "" -#: ../../enterprise/godmode/menu.php:275 +#: ../../enterprise/godmode/menu.php:266 msgid "Password policy" msgstr "" -#: ../../enterprise/godmode/menu.php:283 +#: ../../enterprise/godmode/menu.php:274 #: ../../enterprise/include/functions_setup.php:44 #: ../../enterprise/include/functions_setup.php:108 #: ../../godmode/extensions.php:140 ../../godmode/setup/setup.php:317 msgid "Enterprise" msgstr "" -#: ../../enterprise/godmode/menu.php:296 +#: ../../enterprise/godmode/menu.php:287 #: ../../general/first_task/omnishell.php:31 #: ../../general/first_task/omnishell.php:34 msgid "Omnishell" msgstr "" -#: ../../enterprise/godmode/menu.php:310 +#: ../../enterprise/godmode/menu.php:301 #: ../../enterprise/tools/ipam/ipam.php:453 #: ../../include/functions_reports.php:692 msgid "IPAM" msgstr "" -#: ../../enterprise/godmode/menu.php:319 ../../godmode/setup/setup.php:190 +#: ../../enterprise/godmode/menu.php:310 ../../godmode/setup/setup.php:190 #: ../../godmode/setup/setup.php:289 msgid "Module Library" msgstr "" -#: ../../enterprise/godmode/menu.php:327 +#: ../../enterprise/godmode/menu.php:318 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 #: ../../enterprise/godmode/alerts/alert_inventory.php:80 msgid "Inventory alerts" @@ -17503,13 +17359,13 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:411 #: ../../godmode/massive/massive_edit_modules.php:497 #: ../../godmode/reporting/create_container.php:573 -#: ../../godmode/events/event_edit_filter.php:462 -#: ../../godmode/events/event_edit_filter.php:473 +#: ../../godmode/events/event_edit_filter.php:472 +#: ../../godmode/events/event_edit_filter.php:483 #: ../../include/functions_visual_map_editor.php:498 #: ../../include/functions_visual_map_editor.php:1459 #: ../../include/functions_visual_map_editor.php:1553 #: ../../include/ajax/visual_console_builder.ajax.php:1186 -#: ../../include/functions_profile.php:359 +#: ../../include/functions_profile.php:373 #: ../../include/functions_html.php:2284 ../../include/functions_html.php:2285 #: ../../include/functions_html.php:2286 ../../include/functions_html.php:2287 #: ../../include/functions_html.php:2288 ../../include/functions_html.php:2290 @@ -17633,7 +17489,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 #: ../../include/class/SnmpConsole.class.php:378 -#: ../../include/class/SnmpConsole.class.php:1376 +#: ../../include/class/SnmpConsole.class.php:1377 msgid "Cold start (0)" msgstr "" @@ -17641,7 +17497,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 #: ../../include/class/SnmpConsole.class.php:379 -#: ../../include/class/SnmpConsole.class.php:1380 +#: ../../include/class/SnmpConsole.class.php:1381 msgid "Warm start (1)" msgstr "" @@ -17649,7 +17505,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 #: ../../include/class/SnmpConsole.class.php:380 -#: ../../include/class/SnmpConsole.class.php:1384 +#: ../../include/class/SnmpConsole.class.php:1385 msgid "Link down (2)" msgstr "" @@ -17657,7 +17513,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 #: ../../include/class/SnmpConsole.class.php:381 -#: ../../include/class/SnmpConsole.class.php:1388 +#: ../../include/class/SnmpConsole.class.php:1389 msgid "Link up (3)" msgstr "" @@ -17665,7 +17521,7 @@ msgstr "" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 #: ../../include/class/SnmpConsole.class.php:382 -#: ../../include/class/SnmpConsole.class.php:1392 +#: ../../include/class/SnmpConsole.class.php:1393 msgid "Authentication failure (4)" msgstr "" @@ -17674,41 +17530,16 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_acl.php:475 #: ../../enterprise/godmode/setup/setup_acl.php:479 #: ../../enterprise/include/class/Aws.cloud.php:347 -#: ../../enterprise/include/functions_ipam.php:1598 -#: ../../extensions/api_checker.php:176 +#: ../../extensions/api_checker.php:260 #: ../../godmode/groups/configure_group.php:250 -#: ../../godmode/users/configure_user.php:1296 +#: ../../godmode/users/configure_user.php:1355 #: ../../godmode/snmpconsole/snmp_alert.php:46 #: ../../godmode/massive/massive_edit_users.php:280 -#: ../../include/functions_graph.php:3069 -#: ../../include/functions_graph.php:3114 -#: ../../include/functions_graph.php:3155 -#: ../../include/functions_graph.php:3197 -#: ../../include/functions_graph.php:3274 -#: ../../include/functions_graph.php:3418 -#: ../../include/functions_graph.php:3526 -#: ../../include/functions_graph.php:3591 -#: ../../include/functions_graph.php:3758 -#: ../../include/functions_graph.php:3770 -#: ../../include/functions_graph.php:3771 -#: ../../include/functions_graph.php:3774 -#: ../../include/functions_graph.php:3779 -#: ../../include/functions_graph.php:3780 -#: ../../include/functions_graph.php:3783 -#: ../../include/functions_graph.php:4782 +#: ../../include/functions_graph.php:3543 #: ../../include/class/SnmpConsole.class.php:383 -#: ../../include/class/SnmpConsole.class.php:1369 -#: ../../include/class/SnmpConsole.class.php:1396 -#: ../../include/functions_reporting.php:5199 -#: ../../include/functions_reporting.php:5211 -#: ../../include/functions_reporting.php:5212 -#: ../../include/functions_reporting.php:5215 -#: ../../include/functions_reporting.php:5220 -#: ../../include/functions_reporting.php:5221 -#: ../../include/functions_reporting.php:5224 -#: ../../operation/users/user_edit.php:365 -#: ../../operation/snmpconsole/snmp_statistics.php:218 -#: ../../operation/snmpconsole/snmp_statistics.php:275 +#: ../../include/class/SnmpConsole.class.php:1370 +#: ../../include/class/SnmpConsole.class.php:1397 +#: ../../operation/users/user_edit.php:439 #: ../../operation/gis_maps/render_view.php:167 msgid "Other" msgstr "" @@ -17812,7 +17643,7 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:107 #: ../../include/functions_visual_map_editor.php:922 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2023 +#: ../../include/rest-api/models/VisualConsole/Item.php:2024 msgid "Position" msgstr "" @@ -17862,7 +17693,7 @@ msgid "Target IP" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:950 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:976 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 #: ../../godmode/modules/manage_network_components_form_network.php:55 #: ../../godmode/agentes/module_manager_editor_network.php:223 @@ -17889,7 +17720,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:105 #: ../../godmode/agentes/module_manager_editor_network.php:393 #: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/wizards/HostDevices.class.php:1292 +#: ../../godmode/wizards/HostDevices.class.php:1323 #: ../../include/functions_snmp_browser.php:836 msgid "Auth password" msgstr "" @@ -17900,8 +17731,8 @@ msgstr "" #: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:861 #: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1294 #: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../godmode/wizards/HostDevices.class.php:1356 msgid "The pass length must be eight character minimum." msgstr "" @@ -17910,7 +17741,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:123 #: ../../godmode/agentes/module_manager_editor_network.php:413 #: ../../godmode/massive/massive_edit_modules.php:863 -#: ../../godmode/wizards/HostDevices.class.php:1308 +#: ../../godmode/wizards/HostDevices.class.php:1339 #: ../../include/class/CredentialStore.class.php:1220 #: ../../include/class/CredentialStore.class.php:1511 #: ../../include/class/AgentWizard.class.php:951 @@ -17923,7 +17754,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:126 #: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1313 +#: ../../godmode/wizards/HostDevices.class.php:1344 #: ../../include/class/CredentialStore.class.php:1229 #: ../../include/class/CredentialStore.class.php:1520 #: ../../include/functions_snmp_browser.php:856 @@ -17935,7 +17766,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:127 #: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../godmode/wizards/HostDevices.class.php:1345 #: ../../include/class/CredentialStore.class.php:1228 #: ../../include/class/CredentialStore.class.php:1518 #: ../../include/functions_snmp_browser.php:857 @@ -17946,7 +17777,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:136 #: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1323 +#: ../../godmode/wizards/HostDevices.class.php:1354 #: ../../include/class/CredentialStore.class.php:1237 #: ../../include/class/CredentialStore.class.php:1532 #: ../../include/class/AgentWizard.class.php:965 @@ -17959,7 +17790,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:148 #: ../../godmode/agentes/module_manager_editor_network.php:435 #: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1339 +#: ../../godmode/wizards/HostDevices.class.php:1308 #: ../../include/functions_snmp_browser.php:877 msgid "Auth method" msgstr "" @@ -17969,8 +17800,8 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:151 #: ../../godmode/agentes/module_manager_editor_network.php:438 #: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1344 -#: ../../include/class/Diagnostics.class.php:2178 +#: ../../godmode/wizards/HostDevices.class.php:1313 +#: ../../include/class/Diagnostics.class.php:2183 #: ../../include/class/CredentialStore.class.php:1194 #: ../../include/class/CredentialStore.class.php:1484 #: ../../include/functions_snmp_browser.php:880 @@ -17982,7 +17813,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:152 #: ../../godmode/agentes/module_manager_editor_network.php:439 #: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1345 +#: ../../godmode/wizards/HostDevices.class.php:1314 #: ../../include/class/CredentialStore.class.php:1195 #: ../../include/class/CredentialStore.class.php:1486 #: ../../include/functions_snmp_browser.php:881 @@ -17994,7 +17825,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:161 #: ../../godmode/agentes/module_manager_editor_network.php:452 #: ../../godmode/massive/massive_edit_modules.php:869 -#: ../../godmode/wizards/HostDevices.class.php:1354 +#: ../../godmode/wizards/HostDevices.class.php:1292 #: ../../include/class/CredentialStore.class.php:1149 #: ../../include/class/CredentialStore.class.php:1436 #: ../../include/class/AgentWizard.class.php:892 @@ -18007,7 +17838,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:164 #: ../../godmode/agentes/module_manager_editor_network.php:455 #: ../../godmode/massive/massive_edit_modules.php:872 -#: ../../godmode/wizards/HostDevices.class.php:1359 +#: ../../godmode/wizards/HostDevices.class.php:1297 #: ../../include/functions_snmp_browser.php:893 msgid "Not auth and not privacy method" msgstr "" @@ -18017,7 +17848,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:165 #: ../../godmode/agentes/module_manager_editor_network.php:456 #: ../../godmode/massive/massive_edit_modules.php:873 -#: ../../godmode/wizards/HostDevices.class.php:1360 +#: ../../godmode/wizards/HostDevices.class.php:1298 #: ../../include/functions_snmp_browser.php:894 msgid "Auth and not privacy method" msgstr "" @@ -18027,7 +17858,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_network.php:166 #: ../../godmode/agentes/module_manager_editor_network.php:457 #: ../../godmode/massive/massive_edit_modules.php:874 -#: ../../godmode/wizards/HostDevices.class.php:1361 +#: ../../godmode/wizards/HostDevices.class.php:1299 #: ../../include/functions_snmp_browser.php:895 msgid "Auth and privacy method" msgstr "" @@ -18039,7 +17870,7 @@ msgstr "" #: ../../godmode/massive/massive_edit_modules.php:892 #: ../../godmode/reporting/reporting_builder.item_editor.php:3882 #: ../../include/ajax/heatmap.ajax.php:197 -#: ../../include/functions_graph.php:5261 +#: ../../include/functions_graph.php:5049 #: ../../include/functions_treeview.php:116 ../../operation/heatmap.php:100 #: ../../operation/agentes/status_monitor.php:518 msgid "Not assigned" @@ -18052,6 +17883,7 @@ msgstr "" #: ../../godmode/modules/manage_network_components_form_wmi.php:47 #: ../../godmode/agentes/module_manager_editor_wmi.php:103 #: ../../godmode/massive/massive_edit_modules.php:906 +#: ../../include/functions_ui.php:6918 #: ../../include/class/CredentialStore.class.php:997 #: ../../include/class/CredentialStore.class.php:1367 #: ../../include/class/AgentWizard.class.php:676 @@ -18101,8 +17933,8 @@ msgid "Linked" msgstr "" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:1110 -#: ../../godmode/agentes/module_manager.php:1113 +#: ../../godmode/agentes/module_manager.php:1111 +#: ../../godmode/agentes/module_manager.php:1114 #: ../../godmode/massive/massive_edit_modules.php:1067 #: ../../include/ajax/module.php:1105 ../../include/ajax/module.php:1108 msgid "Unlinked" @@ -18305,7 +18137,7 @@ msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:261 #: ../../godmode/snmpconsole/snmp_alert.php:1275 #: ../../godmode/alerts/alert_view.php:99 -#: ../../include/functions_reporting_html.php:5388 +#: ../../include/functions_reporting_html.php:5407 #: ../../include/ajax/alert_list.ajax.php:295 #: ../../include/ajax/alert_list.ajax.php:320 #: ../../include/functions_treeview.php:455 @@ -18320,7 +18152,7 @@ msgstr "" #: ../../godmode/alerts/alert_view.php:108 #: ../../mobile/operation/alerts.php:327 ../../include/functions_ui.php:1256 #: ../../include/class/AgentsAlerts.class.php:940 -#: ../../include/functions_reporting.php:12676 +#: ../../include/functions_reporting.php:12962 msgid "Alert disabled" msgstr "" @@ -18502,7 +18334,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:545 #: ../../enterprise/include/class/Aws.S3.php:515 #: ../../enterprise/include/class/SAP.app.php:522 -#: ../../enterprise/include/class/Aws.cloud.php:1328 +#: ../../enterprise/include/class/Aws.cloud.php:1327 #: ../../enterprise/include/class/MySQL.app.php:567 #: ../../enterprise/include/class/Oracle.app.php:552 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 @@ -18571,7 +18403,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 #: ../../enterprise/include/functions_reporting_csv.php:1531 #: ../../include/functions_reports.php:699 -#: ../../include/functions_reporting.php:959 +#: ../../include/functions_reporting.php:960 msgid "S.L.A." msgstr "" @@ -18627,17 +18459,17 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:6151 #: ../../enterprise/include/functions_reporting.php:6189 #: ../../enterprise/include/functions_services.php:2084 -#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/include/functions_ux_console.php:483 #: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:384 -#: ../../enterprise/operation/agentes/wux_console_view.php:424 +#: ../../enterprise/operation/agentes/ux_console_view.php:391 +#: ../../enterprise/operation/agentes/wux_console_view.php:407 #: ../../extensions/module_groups.php:53 #: ../../godmode/massive/massive_operations.php:375 -#: ../../godmode/setup/setup_general.php:789 -#: ../../godmode/setup/setup_general.php:807 +#: ../../godmode/setup/setup_general.php:870 +#: ../../godmode/setup/setup_general.php:888 #: ../../godmode/reporting/reporting_builder.item_editor.php:2688 -#: ../../include/functions_reporting_html.php:663 -#: ../../include/functions_reporting_html.php:858 +#: ../../include/functions_reporting_html.php:664 +#: ../../include/functions_reporting_html.php:859 #: ../../include/functions_reporting_html.php:3474 #: ../../include/functions_reporting_html.php:4780 #: ../../include/functions_db.php:1974 @@ -18651,7 +18483,7 @@ msgstr "" #: ../../include/class/AgentWizard.class.php:6215 #: ../../include/lib/Dashboard/Widgets/maps_status.php:362 #: ../../operation/agentes/pandora_networkmap.editor.php:633 -#: ../../operation/snmpconsole/snmp_browser.php:645 +#: ../../operation/snmpconsole/snmp_browser.php:643 msgid "OK" msgstr "" @@ -18676,8 +18508,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:3481 #: ../../enterprise/include/functions_reporting.php:4456 #: ../../include/functions_maps.php:50 -#: ../../include/functions_reporting.php:1069 -#: ../../include/functions_reporting.php:9290 +#: ../../include/functions_reporting.php:1070 +#: ../../include/functions_reporting.php:9508 #: ../../operation/agentes/pandora_networkmap.php:789 msgid "Dynamic" msgstr "" @@ -18795,6 +18627,8 @@ msgstr "" #: ../../enterprise/godmode/services/services.elements.php:883 #: ../../enterprise/godmode/services/services.elements.php:894 +#: ../../enterprise/godmode/setup/setup.php:557 +#: ../../enterprise/godmode/setup/setup.php:573 #: ../../enterprise/include/functions_visual_map.php:677 #: ../../enterprise/include/functions_HA_cluster.php:535 #: ../../enterprise/include/class/DeploymentCenter.class.php:1611 @@ -18808,7 +18642,7 @@ msgstr "" #: ../../include/class/ConfigPEN.class.php:737 #: ../../include/class/SatelliteAgent.class.php:1067 #: ../../include/class/HelpFeedBack.class.php:360 -#: ../../include/class/Diagnostics.class.php:2090 +#: ../../include/class/Diagnostics.class.php:2095 #: ../../include/class/CredentialStore.class.php:1612 #: ../../include/class/ModuleTemplates.class.php:1418 #: ../../include/class/SatelliteCollection.class.php:630 @@ -19018,7 +18852,7 @@ msgid "" msgstr "" #: ../../enterprise/godmode/setup/setup_history.php:651 -#: ../../godmode/setup/performance.php:729 +#: ../../godmode/setup/performance.php:712 msgid "Database maintenance status" msgstr "" @@ -19067,7 +18901,7 @@ msgid "Update scheduled." msgstr "" #: ../../enterprise/godmode/setup/setup.php:47 -#: ../../include/functions_config.php:403 +#: ../../include/functions_config.php:408 msgid "Forward SNMP traps to agent (if exist)" msgstr "" @@ -19080,7 +18914,7 @@ msgid "Yes without changing status" msgstr "" #: ../../enterprise/godmode/setup/setup.php:77 -#: ../../include/functions_config.php:407 +#: ../../include/functions_config.php:412 msgid "Use Enterprise ACL System" msgstr "" @@ -19123,59 +18957,61 @@ msgid "" msgstr "" #: ../../enterprise/godmode/setup/setup.php:198 -#: ../../include/functions_config.php:464 -msgid "Inventory changes blacklist" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:261 -msgid "Out of black list" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:263 -msgid "In black list" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:268 -msgid "Push selected modules into blacklist" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:270 -msgid "Pop selected modules out of blacklist" -msgstr "" - -#: ../../enterprise/godmode/setup/setup.php:282 -#: ../../include/functions_config.php:443 +#: ../../include/functions_config.php:448 msgid "Activate Log Collector" msgstr "" -#: ../../enterprise/godmode/setup/setup.php:305 +#: ../../enterprise/godmode/setup/setup.php:221 msgid "Critical threshold for occupied addresses" msgstr "" -#: ../../enterprise/godmode/setup/setup.php:317 +#: ../../enterprise/godmode/setup/setup.php:233 msgid "Warning threshold for occupied addresses" msgstr "" -#: ../../enterprise/godmode/setup/setup.php:329 -#: ../../include/functions_config.php:459 +#: ../../enterprise/godmode/setup/setup.php:245 +#: ../../include/functions_config.php:464 msgid "SAP/R3 Plugin Licence" msgstr "" -#: ../../enterprise/godmode/setup/setup.php:345 +#: ../../enterprise/godmode/setup/setup.php:261 msgid "Enterprise options" msgstr "" -#: ../../enterprise/godmode/setup/setup.php:517 +#: ../../enterprise/godmode/setup/setup.php:433 #, php-format msgid "" "Password related configuration only applies when local %s authentication is " "selected." msgstr "" -#: ../../enterprise/godmode/setup/setup.php:526 +#: ../../enterprise/godmode/setup/setup.php:442 msgid "Enterprise password policy" msgstr "" +#: ../../enterprise/godmode/setup/setup.php:471 +msgid "Delete session users" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:541 +#: ../../godmode/snmpconsole/snmp_alert.php:1545 +#: ../../godmode/snmpconsole/snmp_alert.php:1560 +msgid "Confirmation" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:542 +msgid "This action delete all users session, are you sure?" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:558 +msgid "All sessions deleted" +msgstr "" + +#: ../../enterprise/godmode/setup/setup.php:565 +#: ../../enterprise/godmode/setup/setup.php:574 +msgid "Unexpected error" +msgstr "" + #: ../../enterprise/godmode/setup/setup_skins.php:38 #: ../../enterprise/godmode/setup/edit_skin.php:44 msgid "Skins configuration" @@ -19252,7 +19088,7 @@ msgid "Port of ElasticSearch server" msgstr "" #: ../../enterprise/godmode/setup/setup_log_collector.php:44 -#: ../../include/functions_config.php:1550 +#: ../../include/functions_config.php:1531 msgid "Days to purge old information" msgstr "" @@ -19327,8 +19163,9 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_auth.php:508 #: ../../enterprise/godmode/setup/setup_auth.php:1303 #: ../../godmode/groups/configure_group.php:122 -#: ../../godmode/groups/group_list.php:380 -#: ../../godmode/users/profile_list.php:323 ../../godmode/menu.php:161 +#: ../../godmode/groups/group_list.php:385 +#: ../../godmode/users/profile_list.php:323 +#: ../../godmode/users/configure_user.php:317 ../../godmode/menu.php:162 msgid "Profiles" msgstr "" @@ -19501,7 +19338,7 @@ msgstr "" #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 #: ../../include/functions_profile.php:213 -#: ../../operation/users/user_edit.php:838 +#: ../../operation/users/user_edit.php:912 msgid "Profile name" msgstr "" @@ -19512,9 +19349,9 @@ msgstr "" #: ../../enterprise/godmode/setup/setup_acl.php:791 #: ../../enterprise/godmode/reporting/visual_console_template.php:305 -#: ../../enterprise/operation/agentes/wux_console_view.php:593 +#: ../../enterprise/operation/agentes/wux_console_view.php:568 #: ../../include/ajax/visual_console_builder.ajax.php:343 -#: ../../include/functions_visual_map.php:2841 +#: ../../include/functions_visual_map.php:2843 msgid "No data to show" msgstr "" @@ -19747,7 +19584,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/aws_view.php:106 #: ../../enterprise/godmode/reporting/aws_view.php:139 -#: ../../enterprise/operation/menu.php:45 +#: ../../enterprise/operation/menu.php:32 msgid "AWS View" msgstr "" @@ -19887,7 +19724,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 #: ../../godmode/reporting/graph_builder.php:376 #: ../../godmode/reporting/graph_container.php:122 -#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:337 +#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:341 #: ../../operation/reporting/graph_viewer.php:271 msgid "Custom graphs" msgstr "" @@ -19921,7 +19758,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 #: ../../godmode/modules/manage_nc_groups.php:95 #: ../../godmode/netflow/nf_edit_form.php:118 -#: ../../godmode/events/event_edit_filter.php:222 +#: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "" @@ -19959,7 +19796,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:217 #: ../../godmode/setup/performance.php:542 #: ../../godmode/reporting/create_container.php:346 -#: ../../include/functions.php:2719 ../../include/functions.php:3387 +#: ../../include/functions.php:2745 ../../include/functions.php:3413 #: ../../include/ajax/module.php:207 ../../include/ajax/graph.ajax.php:146 #: ../../operation/gis_maps/render_view.php:156 msgid "1 hour" @@ -19986,7 +19823,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:222 #: ../../godmode/reporting/create_container.php:350 -#: ../../include/functions.php:2722 ../../include/ajax/module.php:210 +#: ../../include/functions.php:2748 ../../include/ajax/module.php:210 #: ../../include/ajax/graph.ajax.php:150 msgid "1 day" msgstr "" @@ -20007,7 +19844,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:226 #: ../../godmode/reporting/create_container.php:354 -#: ../../include/functions.php:2724 ../../include/ajax/module.php:212 +#: ../../include/functions.php:2750 ../../include/ajax/module.php:212 #: ../../include/ajax/graph.ajax.php:154 msgid "15 days" msgstr "" @@ -20027,7 +19864,7 @@ msgid "6 months" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:230 -#: ../../include/functions.php:2728 ../../include/ajax/module.php:216 +#: ../../include/functions.php:2754 ../../include/ajax/module.php:216 msgid "1 year" msgstr "" @@ -20060,7 +19897,7 @@ msgstr "" #: ../../include/functions_visual_map_editor.php:788 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:639 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629 msgid "Period" msgstr "" @@ -20071,14 +19908,14 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:246 #: ../../godmode/reporting/graph_builder.main.php:215 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:353 -#: ../../operation/reporting/graph_viewer.php:371 +#: ../../operation/reporting/graph_viewer.php:343 msgid "Stacked area" msgstr "" #: ../../enterprise/godmode/reporting/graph_template_editor.php:248 #: ../../godmode/reporting/graph_builder.main.php:217 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 -#: ../../operation/reporting/graph_viewer.php:373 +#: ../../operation/reporting/graph_viewer.php:345 msgid "Stacked line" msgstr "" @@ -20090,7 +19927,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 #: ../../enterprise/include/functions_reporting_csv.php:950 #: ../../include/functions_reports.php:789 -#: ../../include/functions_reporting.php:3338 +#: ../../include/functions_reporting.php:3456 msgid "Exception" msgstr "" @@ -20166,7 +20003,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 -#: ../../include/functions_reporting.php:10172 +#: ../../include/functions_reporting.php:10390 msgid "Rate" msgstr "" @@ -20252,14 +20089,14 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2493 #: ../../godmode/reporting/reporting_builder.item_editor.php:2519 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1644 +#: ../../operation/agentes/ver_agente.php:1662 msgid "Display" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598 #: ../../godmode/reporting/reporting_builder.item_editor.php:2681 -#: ../../include/functions_reporting.php:3360 +#: ../../include/functions_reporting.php:3478 msgid "Everything" msgstr "" @@ -20331,13 +20168,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 #: ../../include/functions_visual_map_editor.php:843 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 #: ../../include/functions_visual_map_editor.php:844 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 msgid "Horizontal" msgstr "" @@ -20482,7 +20319,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564 #: ../../godmode/reporting/reporting_builder.item_editor.php:2657 #: ../../godmode/reporting/graph_builder.main.php:245 -#: ../../include/functions.php:4141 ../../include/functions.php:4149 +#: ../../include/functions.php:4167 ../../include/functions.php:4175 msgid "Percentil" msgstr "" @@ -20508,7 +20345,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:710 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2959 #: ../../godmode/reporting/reporting_builder.item_editor.php:3067 -#: ../../operation/agentes/tactical.php:254 +#: ../../operation/agentes/tactical.php:257 msgid "Event graphs" msgstr "" @@ -20596,11 +20433,11 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:911 #: ../../enterprise/include/functions_massive.php:54 -#: ../../godmode/agentes/module_manager.php:265 +#: ../../godmode/agentes/module_manager.php:266 #: ../../godmode/massive/massive_delete_action_alerts.php:175 #: ../../godmode/massive/massive_add_action_alerts.php:163 #: ../../godmode/massive/massive_edit_modules.php:1999 -#: ../../include/functions_visual_map.php:2682 +#: ../../include/functions_visual_map.php:2684 msgid "No modules selected" msgstr "" @@ -20691,7 +20528,7 @@ msgstr "" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1419 #: ../../include/functions_reporting_html.php:4759 #: ../../include/functions_reporting_html.php:5030 -#: ../../include/functions_reporting_html.php:5167 +#: ../../include/functions_reporting_html.php:5186 #: ../../include/functions_netflow.php:1183 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" @@ -20867,7 +20704,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242 #: ../../godmode/reporting/graph_builder.graph_editor.php:215 #: ../../godmode/reporting/graph_builder.graph_editor.php:345 -#: ../../include/functions.php:4001 +#: ../../include/functions.php:4027 msgid "Weight" msgstr "" @@ -20962,13 +20799,13 @@ msgid "Without changes" msgstr "" #: ../../enterprise/godmode/reporting/mysql_builder.php:215 -#: ../../operation/users/user_edit.php:195 +#: ../../operation/users/user_edit.php:202 msgid "No changes have been made" msgstr "" #: ../../enterprise/godmode/reporting/mysql_builder.php:234 #: ../../enterprise/include/functions_reporting_csv.php:1134 -#: ../../include/functions_reporting.php:7213 +#: ../../include/functions_reporting.php:7428 msgid "SQL" msgstr "" @@ -21080,11 +20917,11 @@ msgstr "" #: ../../godmode/reporting/visual_console_builder.elements.php:575 #: ../../include/functions_visual_map_editor.php:397 #: ../../include/functions_visual_map_editor.php:400 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 #: ../../include/functions_reports.php:561 #: ../../include/functions_reports.php:648 #: ../../include/functions_reports.php:654 -#: ../../include/functions_reporting.php:10243 +#: ../../include/functions_reporting.php:10461 msgid "Custom graph" msgstr "" @@ -21109,7 +20946,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/include/functions_reporting_csv.php:2459 #: ../../enterprise/include/functions_reporting_csv.php:2473 -#: ../../extensions/api_checker.php:220 +#: ../../extensions/api_checker.php:304 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 #: ../../godmode/reporting/reporting_builder.item_editor.php:2387 #: ../../godmode/events/event_responses.editor.php:156 @@ -21133,7 +20970,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1080 #: ../../godmode/reporting/reporting_builder.item_editor.php:2536 #: ../../include/functions_reporting_html.php:4919 -#: ../../include/functions_reporting.php:1539 +#: ../../include/functions_reporting.php:1540 msgid "Avg" msgstr "" @@ -21404,7 +21241,7 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:4731 #: ../../godmode/reporting/reporting_builder.item_editor.php:4765 #: ../../godmode/reporting/reporting_builder.item_editor.php:4819 -#: ../../include/functions_ui.php:5871 ../../include/functions_html.php:5436 +#: ../../include/functions_ui.php:5875 ../../include/functions_html.php:5436 msgid "Select an Agent first" msgstr "" @@ -21419,13 +21256,13 @@ msgstr "" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103 #: ../../godmode/modules/module_list.php:60 #: ../../godmode/groups/configure_group.php:153 -#: ../../godmode/groups/group_list.php:844 +#: ../../godmode/groups/group_list.php:849 #: ../../godmode/setup/os.builder.php:40 #: ../../godmode/reporting/visual_console_builder.elements.php:293 #: ../../include/functions_visual_map_editor.php:68 #: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/functions_visual_map.php:4274 -#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../include/functions_visual_map.php:4225 +#: ../../include/rest-api/models/VisualConsole/Item.php:2148 #: ../../include/lib/Dashboard/Widgets/module_icon.php:424 #: ../../include/lib/Dashboard/Widgets/module_status.php:415 #: ../../operation/visual_console/view.php:343 @@ -21501,7 +21338,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 #: ../../godmode/reporting/reporting_builder.list_items.php:445 -#: ../../include/functions_graph.php:1542 +#: ../../include/functions_graph.php:1514 msgid "No items." msgstr "" @@ -21510,7 +21347,7 @@ msgstr "" #: ../../enterprise/include/class/VMware.app.php:254 #: ../../enterprise/include/class/DB2.app.php:187 #: ../../enterprise/include/class/SAP.app.php:175 -#: ../../enterprise/include/class/Aws.cloud.php:908 +#: ../../enterprise/include/class/Aws.cloud.php:907 #: ../../enterprise/include/class/MySQL.app.php:196 #: ../../enterprise/include/class/Google.cloud.php:423 #: ../../enterprise/include/class/Oracle.app.php:194 @@ -21559,7 +21396,7 @@ msgstr "" #: ../../enterprise/include/class/Omnishell.class.php:1351 #: ../../enterprise/include/class/DB2.app.php:354 #: ../../enterprise/include/class/SAP.app.php:401 -#: ../../enterprise/include/class/Aws.cloud.php:1127 +#: ../../enterprise/include/class/Aws.cloud.php:1126 #: ../../enterprise/include/class/MySQL.app.php:371 #: ../../enterprise/include/class/Google.cloud.php:686 #: ../../enterprise/include/class/Oracle.app.php:361 @@ -21576,7 +21413,7 @@ msgstr "" #: ../../include/class/CustomNetScan.class.php:314 #: ../../include/class/CustomNetScan.class.php:422 #: ../../include/class/HTML.class.php:419 -#: ../../include/lib/ClusterViewer/ClusterManager.php:755 +#: ../../include/lib/ClusterViewer/ClusterManager.php:752 #: ../../include/lib/ClusterViewer/ClusterWizard.php:349 msgid "Go back" msgstr "" @@ -21586,7 +21423,7 @@ msgid "Updating console task" msgstr "" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 -#: ../../godmode/menu.php:53 +#: ../../godmode/menu.php:54 #: ../../godmode/wizards/DiscoveryTaskList.class.php:105 msgid "Task list" msgstr "" @@ -21605,7 +21442,7 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:590 #: ../../enterprise/include/class/Aws.cloud.php:158 #: ../../enterprise/include/class/Google.cloud.php:184 -#: ../../godmode/menu.php:84 ../../godmode/wizards/HostDevices.class.php:190 +#: ../../godmode/menu.php:85 ../../godmode/wizards/HostDevices.class.php:190 #: ../../godmode/servers/discovery.php:59 msgid "Discovery" msgstr "" @@ -21811,7 +21648,7 @@ msgid "Preffix" msgstr "" #: ../../enterprise/godmode/servers/manage_export.php:141 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1145 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1171 #: ../../enterprise/godmode/servers/manage_export_form.php:103 msgid "Transfer mode" msgstr "" @@ -21839,46 +21676,46 @@ msgstr "" msgid "No Data" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:210 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:212 msgid "Error: The conf file of server is not readble." msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:214 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:216 msgid "Error: The conf file of server is not writable." msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:312 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:314 msgid "Default value: " msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:340 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:342 #: ../../include/functions_servers.php:556 #: ../../include/functions_servers.php:1305 msgid "Data server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:346 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:348 #: ../../include/functions_servers.php:569 #: ../../include/functions_servers.php:1308 #: ../../include/class/AgentWizard.class.php:1379 msgid "Network server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:352 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:354 #: ../../include/functions_servers.php:855 #: ../../include/functions_servers.php:1353 msgid "Alert server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:358 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:360 #: ../../enterprise/include/ajax/ipam.ajax.php:357 #: ../../enterprise/include/class/Azure.cloud.php:781 #: ../../enterprise/include/class/VMware.app.php:593 #: ../../enterprise/include/class/DB2.app.php:448 #: ../../enterprise/include/class/Aws.S3.php:412 #: ../../enterprise/include/class/SAP.app.php:481 -#: ../../enterprise/include/class/Aws.cloud.php:523 -#: ../../enterprise/include/class/Aws.cloud.php:1213 +#: ../../enterprise/include/class/Aws.cloud.php:522 +#: ../../enterprise/include/class/Aws.cloud.php:1212 #: ../../enterprise/include/class/MySQL.app.php:453 #: ../../enterprise/include/class/Google.cloud.php:769 #: ../../enterprise/include/class/Oracle.app.php:455 @@ -21892,941 +21729,958 @@ msgstr "" msgid "Discovery server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:364 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:366 +#: ../../include/functions_servers.php:621 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:840 +msgid "Prediction server" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:372 #: ../../include/functions_servers.php:608 #: ../../include/functions_servers.php:1320 #: ../../include/class/AgentWizard.class.php:1360 msgid "Plugin server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:370 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:418 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:378 +#: ../../include/functions_menu.php:526 ../../operation/menu.php:131 +msgid "SNMP console" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:384 #: ../../include/functions_servers.php:1311 msgid "SNMP server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:376 -#: ../../include/functions_servers.php:621 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:840 -msgid "Prediction server" -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:382 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1326 -#: ../../include/class/AgentWizard.class.php:1370 -msgid "WMI server" -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:388 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:390 #: ../../include/functions_servers.php:673 #: ../../include/functions_servers.php:1329 msgid "Web server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:394 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:396 #: ../../include/functions_servers.php:660 #: ../../include/functions_servers.php:1335 msgid "Inventory server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:400 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:402 #: ../../enterprise/godmode/servers/manage_export_form.php:79 #: ../../include/functions_servers.php:647 #: ../../include/functions_servers.php:1332 msgid "Export server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:406 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:408 #: ../../include/functions_servers.php:686 #: ../../include/functions_servers.php:1338 msgid "Event server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:412 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:414 msgid "ICMP server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:424 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:420 #: ../../include/functions_servers.php:1347 msgid "WUX server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:430 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:426 #: ../../include/functions_servers.php:816 #: ../../include/functions_servers.php:1356 msgid "NCM server" msgstr "" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:432 +#: ../../include/functions_servers.php:634 +#: ../../include/functions_servers.php:1326 +#: ../../include/class/AgentWizard.class.php:1370 +msgid "WMI server" +msgstr "" + #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:438 -msgid "Network timeout" +msgid "Syslog server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:445 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770 -msgid "Plugin timeout" -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:452 -msgid "SNMP console threads" -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:458 -msgid "Network threads" -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:464 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:763 -msgid "Plugin threads" -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:470 -msgid "Recon threads" -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 msgid "Dataserver threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:482 -msgid "Web threads" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:452 +msgid "Network timeout" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:488 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:929 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:459 +msgid "Network threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:465 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:796 +msgid "Plugin timeout" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:472 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:789 +msgid "Plugin threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:478 +msgid "SNMP console threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:484 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:955 msgid "SNMP threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:494 -msgid "ICMP threads" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:490 +msgid "Web threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:496 +msgid "Inventory threads" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:502 -msgid "Autocreate group" +msgid "ICMP threads" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:508 -msgid "Autocreate group force" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1225 +msgid "WMI threads" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:514 -msgid "Autocreate" +msgid "Syslog threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:526 -msgid "Agent configuration files directory" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:520 +msgid "Recon threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:527 -msgid "Directory where agent configuration files are stored" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:528 +msgid "Autocreate group" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:534 +msgid "Autocreate group force" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:540 -msgid "Agent interval" +msgid "Autocreate" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:546 -msgid "Agent threads" -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:547 -msgid "Number of threads used for sending agent XML data files" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552 +msgid "Agent configuration files directory" msgstr "" #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:553 +msgid "Directory where agent configuration files are stored" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:566 +msgid "Agent interval" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:572 +msgid "Agent threads" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:573 +msgid "Number of threads used for sending agent XML data files" +msgstr "" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:579 msgid "ICMP subnets blacklist" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:554 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:561 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:568 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:580 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:587 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:594 msgid "Separated by a comma. Example: 192.168.0.0/24,8.8.8.8/30" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:560 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:586 msgid "SNMP subnets blacklist" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:567 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:593 msgid "WMI subnets blacklist" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:574 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:600 msgid "Path to braa binary" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:580 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:606 msgid "Credential password" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:581 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 msgid "Password used to encrypt credential boxes" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:587 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:613 msgid "Remote configuration check interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:593 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:619 msgid "Daemon" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:594 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:620 msgid "Run in background if set to 1" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:601 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:627 msgid "" "Set to 1 to move dynamic auto-discovered modules (SNMP, WMI...) to separate " "files so that they don't interfere with remote agent configuration" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:633 msgid "Exec interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:608 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:634 msgid "Time between exec checks" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:614 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:640 msgid "Exec threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:615 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:641 msgid "Number of threads used for exec modules" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:621 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 msgid "Path to fping binary" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:622 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 msgid "" "Used by the Enterprise ICMP Server. Default path is /usr/sbin/fping for " "installation in Centos, if you are installing in another distro, install " "fping in /usr/bin/fping and update this field with the new path" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:628 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:654 msgid "Path to Pandora Fast SNMP binary" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:634 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:660 msgid "Forced add" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:635 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:661 msgid "" "If set to 1, manually added hosts (via add_host or host_file) will always be " "created, whether they respond to ping or not" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:641 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:667 msgid "General GIS exec" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 msgid "" "Path to general GIS coordinates generator. It should be an executable file" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 msgid "" "Group where agents will be placed (must exist in the Pandora FMS console)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:654 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:680 msgid "Host file" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:655 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:681 msgid "" "File containing hosts to be scanned. The address may be followed by a " "hostname" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:661 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:687 msgid "Latency block" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:662 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688 msgid "Number of hosts processed in a single call to nmap (latency)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694 msgid "Latency interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:669 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:695 msgid "Time between latency checks" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:675 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:701 msgid "Latency packets" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:676 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:702 msgid "Number of ICMP packets to send per latency request" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:682 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:708 msgid "Latency retries" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:683 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:736 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:709 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:762 msgid "Number of retries for latency modules" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:689 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:715 msgid "Latency threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:716 msgid "Number of threads used for latency checks." msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:696 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 msgid "Latency timeout" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:697 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:723 msgid "Timeout for latency checks in seconds." msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:703 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:729 msgid "Log file path" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:709 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:735 msgid "Path to nmap binary" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:714 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:740 msgid "Ping block" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:715 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:741 msgid "Number of hosts processed in a single call to nmap (ping)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:721 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:747 msgid "Ping interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:748 msgid "Time between ping checks" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:728 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 msgid "Ping packets" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:729 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:755 msgid "Number of ICMP packets to send per ping request" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:735 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:761 msgid "Ping retries" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:742 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:768 msgid "Ping threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:743 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:769 msgid "Number of threads used for ping checks" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:749 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:775 msgid "Ping timeout" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:750 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:776 msgid "Timeout for ping checks in seconds" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:756 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:782 msgid "Plugin interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:757 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:783 msgid "Time between plug-in checks" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:764 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 msgid "Number of threads used for plug-in checks" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:771 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 msgid "Timeout for plug-in checks in seconds" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:777 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 msgid "Proxy traps from" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:783 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:809 msgid "Proxy traps to" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:784 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:810 msgid "Enable the SNMP trap proxy to the specified address" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 msgid "Proxy tentacle to" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:791 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:817 msgid "Enable the Tentacle proxy to the specified address:port" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:823 msgid "Proxy tentacle from" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:829 msgid "Recon community" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:804 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:830 msgid "Comma separated list of SNMP communities to try for SNMP auto-discovery" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:810 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:836 msgid "Recon enabled" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:811 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:837 msgid "Enable (1) or disable (0) host auto-discovery" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:817 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:843 msgid "Recon interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:818 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:844 msgid "Time between network scans in seconds" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:824 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:850 msgid "Recon mode" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:825 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:851 msgid "Comma separated list of auto-discovery modules (snmp,icmp,wmi)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:831 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:857 msgid "Recon task" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:858 msgid "" "Comma separated list of networks (in slash notation) to scan for host auto-" "discovery (example: 192.168.0.0/24,192.168.1.0/24)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:838 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:864 msgid "Recon timing template" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:839 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 msgid "" "Like nmap_timing_template, but applies to Satellite Server and Recon Server " "network scans. 3 by default" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:845 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:871 #: ../../enterprise/include/class/DeploymentCenter.class.php:811 msgid "Server IP" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:846 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 msgid "Tentacle server address. Put here your Pandora FMS data server address" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:853 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 msgid "Name of the Satellite server (the hostname is used by default)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:859 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:885 msgid "Server path" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:860 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886 msgid "" "Path where XML files are copied (only used if transfer mode is set to local)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:866 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:892 msgid "Server port" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:867 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893 msgid "Tentacle server port" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:873 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:899 msgid "SSH interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:874 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:900 msgid "Time between SSH checks" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:880 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:906 msgid "SSH threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:881 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:907 msgid "Number of threads used for SSH modules" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:887 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:913 msgid "SSH timeout" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:888 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:914 msgid "Timeout for SSH checks in seconds" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:894 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:920 msgid "Keepalive" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:895 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:921 msgid "" "Interval of the main server loop in seconds. Status updates are sent to " "Pandora every keepalive seconds" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:901 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:927 msgid "SNMP blacklist" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:902 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:928 msgid "SNMP module blacklist" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:908 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:934 msgid "SNMP block" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:909 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935 msgid "Number of hosts processed in a single call to braa (SNMPv1)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:915 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:941 msgid "SNMP interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:916 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:942 msgid "Time between SNMP checks (SNMPv1)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:922 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:948 msgid "SNMP retries" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:923 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:949 msgid "Number of retries for SNMP modules (SNMPv1)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:930 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:956 msgid "Number of threads used for SNMP checks (SNMPv1)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:936 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:962 msgid "SNMP timeout" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:937 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:963 msgid "Timeout for SNMP checks in seconds (SNMPv1)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:943 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:969 msgid "SNMP verify" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:944 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:970 msgid "" "Enable (1) or disable (0) the verification of SNMPv1 modules that break braa" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:951 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:977 msgid "" "Default SNMP version to use (1 or 2c, SNMPv3 modules explicitly state their " "version). WARNING: some modules could stop working if you change this setting" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:957 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:983 msgid "SNMPv2c block" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:958 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:984 msgid "Number of hosts processed in a single call to braa (SNMPv2c)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:964 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 msgid "SNMPv2c interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:965 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:991 msgid "Time between SNMP checks (SNMPv2c)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:971 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:997 msgid "SNMPv2c retries" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:972 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:998 msgid "Number of retries for SNMP modules (SNMPv2c)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:978 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1004 msgid "SNMPv2c threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:979 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1005 msgid "Number of threads used for SNMP checks (SNMPv2c)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:985 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1011 msgid "SNMPv2c timeout" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:986 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1012 msgid "Timeout for snmp checks in seconds (SNMPv2c)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:992 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1018 msgid "SNMPv2c verify" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:993 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1019 msgid "" "Enable (1) or disable (0) the verification of SNMPv2 modules that break braa" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:999 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1025 msgid "SNMPv3 block" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1000 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1026 msgid "Number of hosts processed in a single call to braa (SNMPv3)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1006 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1032 msgid "SNMPv3 interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1007 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1033 msgid "Time between SNMP checks (SNMPv3)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1013 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1039 msgid "SNMPv3 retries" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1014 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1040 msgid "Number of retries for SNMP modules (SNMPv3)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1020 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1046 msgid "SNMPv3 threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1021 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1047 msgid "Number of threads used for SNMP checks (SNMPv3)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1027 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1053 msgid "SNMPv3 timeout" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1028 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1054 msgid "Timeout for SNMP checks in seconds (SNMPv3)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1034 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1060 msgid "SNMPv3 verify" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1035 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1061 msgid "" "Enable (1) or disable (0) the verification of SNMPv3 modules that break " "pandorafsnmp" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1041 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1067 msgid "SNMPv3 security level" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1042 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1068 msgid "" "Security level used for SNMPv3 messages (noauth, authnopriv or authpriv)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1048 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1074 msgid "SNMPv3 security name" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1049 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1075 msgid "Security name used for SNMPv3 messages" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1055 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1081 msgid "SNMPv3 authentication protocol" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1056 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1082 msgid "Authentication protocol (md5 or sha) for authenticated SNMPv3 requests" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1062 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1088 msgid "SNMPv3 authentication password" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1063 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1089 msgid "Authentication password for authenticated SNMPv3 request" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1069 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1095 msgid "SNMPv3 privacy protocol" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1070 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1096 msgid "Privacy protocol (des or aes) for encrypted SNMPv3 requests" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1076 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1102 msgid "SNMPv3 privacy password" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1077 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1103 msgid "Privacy password for encrypted SNMPv3 messages" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1083 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1109 msgid "Startup delay" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1084 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1110 msgid "" "Wait startup_delay seconds before sending XML data files for the first time" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1090 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1116 msgid "TCP interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1091 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1117 msgid "Time between TCP checks" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1097 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1123 msgid "TCP threads" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1098 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1124 msgid "Threads dedicated to TCP checks" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1104 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1130 msgid "TCP timeout" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1105 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1131 msgid "Timeout for TCP checks in seconds" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1111 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1137 msgid "Temporal" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1112 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1138 msgid "Temporal directory where XML files are created" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1118 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1144 msgid "Temporal minimum size" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1119 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1145 msgid "" "Minimum available bytes in the temporal directory to enable the XML buffer" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1125 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1151 msgid "Full path to tentacle client" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1131 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1157 msgid "Timeout for the timeout command" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1132 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1158 msgid "In seconds" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1138 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1164 msgid "Server opts" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1139 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1165 msgid "Parameters that are passed to Tentacle" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1146 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1172 msgid "tentacle or local" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1152 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1178 msgid "Verbosity" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1153 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1179 msgid "Verbosity level from 0 (less verbose) to 10 (more verbose)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1159 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1185 msgid "VLAN cache enabled" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1160 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1186 msgid "Enable (1) or disable (0) the VLAN cache for host auto-discovery" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1166 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1192 msgid "Enable XML buffer" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1172 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1198 msgid "WMI authentication" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1173 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1199 msgid "" "Comma separated list of username%password pairs to try for WMI authentication" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1179 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1205 msgid "Full path to WMI client binary" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1185 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1211 msgid "WMI interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1186 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1212 msgid "Time in seconds between WMI checks" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1192 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1218 msgid "WMI NTLMv2" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1193 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1219 msgid "Enable to use NTLMv2 authentication for WMI" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1199 -msgid "WMI threads" -msgstr "" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1200 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1226 msgid "Threads dedicated to WMI polling" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1206 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1232 msgid "IPAM task" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1207 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1233 msgid "" "Comma separated list of networks (in slash notation) to scan for IPAM. Must " "be preceded by the ID of the IPAM task in Pandora FMS (E.g. 1,192.168.0.0/24)" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1213 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1239 msgid "Timeout bin" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1214 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1240 msgid "" "If defined, the timeout program (usually /usr/bin/timeout) will be used to " "call the Tentacle client" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1220 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1246 msgid "IPAM interval" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1221 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1247 msgid "Time between IPAM scans in seconds" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1229 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1255 msgid "Secondary mode" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1230 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1256 msgid "" "If secondary_mode is set to on_error, data files are copied to the secondary " "server only if the primary server fails. If set to always, data files are " "always copied to the secondary server" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1236 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1262 msgid "Secondary server IP" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1242 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1268 msgid "Secondary server path" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1248 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1274 msgid "Secondary server port" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1254 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1280 msgid "Secondary transfer mode" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1260 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1286 msgid "Secondary server opts" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1350 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1376 msgid "Delete remote conf server files" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1351 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 msgid "" "Delete this conf file implies that server will send back local config to " "console" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1387 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1413 msgid "General server configuration" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1394 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1420 msgid "Secondary server configuration" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1400 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1426 msgid "Server features" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1407 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1433 msgid "Optimization settings" msgstr "" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1414 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1440 msgid "Other server settings" msgstr "" @@ -22842,7 +22696,7 @@ msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:823 #: ../../enterprise/include/class/VMware.app.php:643 #: ../../enterprise/include/class/Aws.S3.php:584 -#: ../../enterprise/include/class/Aws.cloud.php:567 +#: ../../enterprise/include/class/Aws.cloud.php:566 msgid "Extra options" msgstr "" @@ -22988,7 +22842,7 @@ msgid "Scheduled report had an attempt to send an email with some attachments." msgstr "" #: ../../enterprise/include/functions_cron.php:1776 -#: ../../include/functions_reporting.php:15389 +#: ../../include/functions_reporting.php:15644 msgid "Greetings" msgstr "" @@ -22999,22 +22853,22 @@ msgstr "" #: ../../enterprise/include/functions_cron.php:1780 #: ../../mobile/include/functions_web.php:84 #: ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15395 +#: ../../include/functions_reporting.php:15650 msgid "Generated at" msgstr "" #: ../../enterprise/include/functions_cron.php:1782 -#: ../../include/functions_reporting.php:15397 +#: ../../include/functions_reporting.php:15652 msgid "Thanks for your time." msgstr "" #: ../../enterprise/include/functions_cron.php:1784 -#: ../../include/functions_reporting.php:15399 +#: ../../include/functions_reporting.php:15654 msgid "Best regards, Pandora FMS" msgstr "" #: ../../enterprise/include/functions_cron.php:1786 -#: ../../include/functions_reporting.php:15401 +#: ../../include/functions_reporting.php:15656 msgid "" "This is an automatically generated email from Pandora FMS, please do not " "reply." @@ -23035,7 +22889,7 @@ msgid "Error while executing task" msgstr "" #: ../../enterprise/include/functions_tasklist.php:56 -#: ../../include/class/ConsoleSupervisor.php:2383 +#: ../../include/class/ConsoleSupervisor.php:2378 msgid "DiscoveryConsoleTasks is not running properly" msgstr "" @@ -23045,12 +22899,12 @@ msgid "" msgstr "" #: ../../enterprise/include/functions_tasklist.php:59 -#: ../../include/class/ConsoleSupervisor.php:2386 +#: ../../include/class/ConsoleSupervisor.php:2381 msgid "Please, add the following line to your crontab file:" msgstr "" #: ../../enterprise/include/functions_tasklist.php:74 -#: ../../include/class/ConsoleSupervisor.php:2399 +#: ../../include/class/ConsoleSupervisor.php:2394 msgid "Last execution" msgstr "" @@ -23116,7 +22970,7 @@ msgstr "" #: ../../enterprise/include/functions_tasklist.php:463 #: ../../enterprise/include/class/ManageBackups.class.php:166 #: ../../include/functions_cron.php:789 ../../include/functions_cron.php:830 -#: ../../include/class/Diagnostics.class.php:2178 +#: ../../include/class/Diagnostics.class.php:2183 msgid "Path" msgstr "" @@ -23125,9 +22979,9 @@ msgid "Task disabled" msgstr "" #: ../../enterprise/include/functions_tasklist.php:600 -#: ../../enterprise/include/functions_ipam.php:2082 -#: ../../enterprise/include/functions_ipam.php:2083 -#: ../../enterprise/include/functions_ipam.php:2084 +#: ../../enterprise/include/functions_ipam.php:2090 +#: ../../enterprise/include/functions_ipam.php:2091 +#: ../../enterprise/include/functions_ipam.php:2092 #: ../../enterprise/tools/ipam/ipam_list.php:701 #: ../../enterprise/tools/ipam/ipam_ajax.php:502 #: ../../godmode/db/db_main.php:189 @@ -23222,7 +23076,7 @@ msgstr "" #: ../../enterprise/include/ajax/ipam.ajax.php:385 #: ../../enterprise/include/functions_ipam.php:1369 -#: ../../enterprise/include/functions_ipam.php:1989 +#: ../../enterprise/include/functions_ipam.php:1997 #: ../../enterprise/tools/ipam/ipam_list.php:97 #: ../../enterprise/tools/ipam/ipam_list.php:612 #: ../../enterprise/tools/ipam/ipam_editor.php:191 @@ -23316,7 +23170,7 @@ msgstr "" #: ../../enterprise/include/ajax/ipam.ajax.php:614 #: ../../enterprise/include/ajax/ipam.ajax.php:644 -#: ../../enterprise/include/functions_ipam.php:1986 +#: ../../enterprise/include/functions_ipam.php:1994 #: ../../enterprise/tools/ipam/ipam_list.php:594 #: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 #: ../../enterprise/tools/ipam/ipam_calculator.php:185 @@ -23325,7 +23179,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_editor.php:122 #: ../../godmode/wizards/HostDevices.class.php:918 #: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../include/functions_ui.php:870 ../../operation/menu.php:80 +#: ../../include/functions_ui.php:870 ../../operation/menu.php:84 msgid "Network" msgstr "" @@ -23374,7 +23228,7 @@ msgid "Unknown option" msgstr "" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256 -#: ../../include/functions_treeview.php:781 +#: ../../include/functions_treeview.php:776 #: ../../operation/agentes/agent_fields.php:44 #: ../../operation/agentes/estado_generalagente.php:544 msgid "Custom field" @@ -23395,6 +23249,12 @@ msgstr "" msgid "Alert action" msgstr "" +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 +#: ../../godmode/modules/manage_inventory_modules_form.php:148 +msgid "Script path" +msgstr "" + #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:459 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:566 msgid "Script argument" @@ -23456,6 +23316,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2837 #: ../../godmode/setup/setup_integria.php:333 #: ../../godmode/setup/setup_integria.php:454 +#: ../../include/graphs/fgraph.php:879 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 #: ../../include/lib/Dashboard/Widget.php:557 #: ../../operation/agentes/estado_generalagente.php:665 @@ -23495,7 +23356,7 @@ msgstr "" #: ../../enterprise/include/process_reset_pass.php:162 #: ../../enterprise/include/reset_pass.php:146 #: ../../enterprise/include/reset_pass.php:149 -#: ../../include/functions_config.php:2510 +#: ../../include/functions_config.php:2486 msgid "ONE TOOL TO MONITOR THEM ALL" msgstr "" @@ -23504,41 +23365,6 @@ msgstr "" msgid "Lines" msgstr "" -#: ../../enterprise/include/functions_inventory.php:115 -#: ../../enterprise/include/functions_inventory.php:868 -msgid "No changes found" -msgstr "" - -#: ../../enterprise/include/functions_inventory.php:214 -msgid "Get CSV file" -msgstr "" - -#: ../../enterprise/include/functions_inventory.php:301 -#: ../../enterprise/operation/agentes/tag_view.php:578 -#: ../../enterprise/operation/services/services.treeview_services.php:255 -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 -#: ../../godmode/groups/group_list.php:1034 -#: ../../include/class/Heatmap.class.php:820 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 -#: ../../operation/tree.php:415 ../../operation/tree.php:446 -#: ../../operation/network/network_report.php:315 -msgid "No data found" -msgstr "" - -#: ../../enterprise/include/functions_inventory.php:885 -#: ../../enterprise/include/functions_inventory.php:948 -#: ../../include/functions_reporting_html.php:1831 -msgid "Added" -msgstr "" - -#: ../../enterprise/include/functions_inventory.php:891 -#: ../../enterprise/include/functions_inventory.php:956 -#: ../../include/functions_reporting_html.php:1842 -#: ../../include/functions_filemanager.php:342 -#: ../../include/functions_filemanager.php:359 -msgid "Deleted" -msgstr "" - #: ../../enterprise/include/auth/saml.php:119 #, php-format msgid "Pandora FMS SAML authentication error: %s" @@ -23548,8 +23374,8 @@ msgstr "" msgid "Force log out" msgstr "" -#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:388 -#: ../../include/auth/mysql.php:418 ../../include/auth/mysql.php:453 +#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:358 +#: ../../include/auth/mysql.php:388 ../../include/auth/mysql.php:423 msgid "Please, login into metaconsole first" msgstr "" @@ -23581,28 +23407,39 @@ msgid "File of collection is bigger than the limit (%s bytes)" msgstr "" #: ../../enterprise/include/functions_ui.php:79 +#: ../../include/functions_ui.php:6895 msgid "Select inventory module" msgstr "" +#: ../../enterprise/include/functions_ui.php:92 +#: ../../godmode/agentes/inventory_manager.php:223 +#: ../../include/functions_ui.php:6908 +msgid "Target" +msgstr "" + #: ../../enterprise/include/functions_ui.php:96 +#: ../../include/functions_ui.php:6912 msgid "Use custom fields" msgstr "" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "Field name" msgstr "" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "It's a password" msgstr "" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "Add field" msgstr "" #: ../../enterprise/include/functions_reporting_pdf.php:72 -#: ../../include/class/Diagnostics.class.php:2133 -#: ../../include/class/Diagnostics.class.php:2251 +#: ../../include/class/Diagnostics.class.php:2138 +#: ../../include/class/Diagnostics.class.php:2256 #, php-format msgid "Automated %s report for user defined report" msgstr "" @@ -23620,11 +23457,11 @@ msgstr "" #: ../../include/functions_reporting_html.php:3835 #: ../../include/functions_reporting_html.php:3838 #: ../../include/functions_reporting_html.php:3845 -#: ../../include/functions_reporting.php:7015 -#: ../../include/functions_reporting.php:7038 -#: ../../include/functions_reporting.php:7053 -#: ../../include/functions_reporting.php:7069 -#: ../../include/functions_reporting.php:7084 +#: ../../include/functions_reporting.php:7230 +#: ../../include/functions_reporting.php:7253 +#: ../../include/functions_reporting.php:7268 +#: ../../include/functions_reporting.php:7284 +#: ../../include/functions_reporting.php:7299 msgid "Maximun" msgstr "" @@ -23648,91 +23485,91 @@ msgstr "" #: ../../include/functions_reporting_html.php:3826 #: ../../include/functions_reporting_html.php:3837 #: ../../include/functions_reporting_html.php:3842 -#: ../../include/functions_reporting.php:7033 +#: ../../include/functions_reporting.php:7248 msgid "Lapse" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:971 +#: ../../enterprise/include/functions_reporting_pdf.php:972 #: ../../include/functions_reporting_html.php:2167 #: ../../include/lib/Dashboard/Widgets/agent_module.php:520 #, php-format msgid "%s in %s : NORMAL" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:988 +#: ../../enterprise/include/functions_reporting_pdf.php:989 #: ../../include/functions_reporting_html.php:2079 #: ../../include/lib/Dashboard/Widgets/agent_module.php:536 #, php-format msgid "%s in %s : CRITICAL" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:1005 +#: ../../enterprise/include/functions_reporting_pdf.php:1006 #: ../../include/functions_reporting_html.php:2096 #: ../../include/lib/Dashboard/Widgets/agent_module.php:552 #, php-format msgid "%s in %s : WARNING" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:1022 +#: ../../enterprise/include/functions_reporting_pdf.php:1023 #: ../../include/functions_reporting_html.php:2113 #: ../../include/lib/Dashboard/Widgets/agent_module.php:568 #, php-format msgid "%s in %s : UNKNOWN" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:1039 +#: ../../enterprise/include/functions_reporting_pdf.php:1040 #: ../../include/functions_reporting_html.php:2149 #: ../../include/lib/Dashboard/Widgets/agent_module.php:584 #, php-format msgid "%s in %s : Not initialize" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:1056 +#: ../../enterprise/include/functions_reporting_pdf.php:1057 #: ../../include/functions_reporting_html.php:2132 #: ../../include/lib/Dashboard/Widgets/agent_module.php:601 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:1810 +#: ../../enterprise/include/functions_reporting_pdf.php:1811 #: ../../enterprise/include/functions_reporting_csv.php:2270 #: ../../enterprise/include/functions_reporting_csv.php:2274 -#: ../../include/functions_reporting_html.php:138 +#: ../../include/functions_reporting_html.php:139 msgid "Generated" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:1814 -#: ../../include/functions_reporting_html.php:141 +#: ../../enterprise/include/functions_reporting_pdf.php:1815 +#: ../../include/functions_reporting_html.php:142 msgid "Report date" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:1833 -#: ../../include/functions_reporting_html.php:150 +#: ../../enterprise/include/functions_reporting_pdf.php:1834 +#: ../../include/functions_reporting_html.php:151 #: ../../operation/reporting/reporting_viewer.php:307 msgid "Items period before" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:1863 +#: ../../enterprise/include/functions_reporting_pdf.php:1864 msgid "Contents" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:2009 +#: ../../enterprise/include/functions_reporting_pdf.php:2010 #: ../../enterprise/include/functions_reporting_csv.php:723 #: ../../enterprise/include/functions_reporting_csv.php:1002 #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../godmode/agentes/planned_downtime.list.php:339 #: ../../include/functions_reporting_html.php:3930 #: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 -#: ../../include/rest-api/index.php:373 +#: ../../include/rest-api/index.php:374 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520 #: ../../operation/agentes/gis_view.php:221 msgid "To" msgstr "" -#: ../../enterprise/include/functions_reporting_pdf.php:2013 -#: ../../include/functions_reporting_html.php:90 -#: ../../include/functions_reporting_html.php:5710 +#: ../../enterprise/include/functions_reporting_pdf.php:2014 +#: ../../include/functions_reporting_html.php:91 +#: ../../include/functions_reporting_html.php:5729 #: ../../include/functions_treeview.php:319 #: ../../operation/agentes/interface_view.functions.php:539 msgid "Last data" @@ -23910,8 +23747,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:480 #: ../../enterprise/include/functions_reporting.php:1229 #: ../../include/functions_reports.php:830 -#: ../../include/functions_reporting.php:8489 -#: ../../include/functions_reporting.php:8881 +#: ../../include/functions_reporting.php:8707 +#: ../../include/functions_reporting.php:9099 msgid "Availability" msgstr "" @@ -23921,7 +23758,7 @@ msgid "% OK" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:537 -#: ../../include/functions_reporting_html.php:617 +#: ../../include/functions_reporting_html.php:618 msgid "Checks Failed" msgstr "" @@ -23979,7 +23816,7 @@ msgid "Agent secondary groups" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:790 -#: ../../include/functions_reporting.php:2807 +#: ../../include/functions_reporting.php:2925 msgid "Inventory Changes" msgstr "" @@ -23989,7 +23826,7 @@ msgid "Prediction date" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../include/functions_reporting.php:6481 +#: ../../include/functions_reporting.php:6696 msgid "Projection Graph" msgstr "" @@ -24002,25 +23839,25 @@ msgid "Last Value " msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:982 -#: ../../include/functions_reporting.php:1543 +#: ../../include/functions_reporting.php:1544 #: ../../operation/snmpconsole/snmp_statistics.php:169 -#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_statistics.php:242 #, php-format msgid "Top %d" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1019 -#: ../../include/functions_reporting.php:3887 +#: ../../include/functions_reporting.php:4082 msgid "Group Report" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:263 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1042 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1047 #: ../../mobile/operation/groups.php:147 -#: ../../include/functions_reporting_html.php:5790 +#: ../../include/functions_reporting_html.php:5809 #: ../../include/class/Diagnostics.class.php:550 -#: ../../include/functions_reporting.php:11832 +#: ../../include/functions_reporting.php:12118 #: ../../include/lib/Dashboard/Widgets/tree_view.php:651 #: ../../operation/tree.php:454 msgid "Total agents" @@ -24032,7 +23869,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:264 -#: ../../godmode/groups/group_list.php:1043 +#: ../../godmode/groups/group_list.php:1048 #: ../../godmode/module_library/module_library_view.php:159 #: ../../include/class/Diagnostics.class.php:554 #: ../../include/lib/Dashboard/Widgets/tree_view.php:652 @@ -24041,7 +23878,7 @@ msgid "Total modules" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../include/functions_reporting.php:11675 +#: ../../include/functions_reporting.php:11961 msgid "Defined alerts" msgstr "" @@ -24049,12 +23886,12 @@ msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:268 #: ../../enterprise/operation/services/services.treeview_services.php:269 #: ../../enterprise/operation/services/services.treeview_services.php:270 -#: ../../godmode/groups/group_list.php:1047 -#: ../../godmode/groups/group_list.php:1048 -#: ../../godmode/groups/group_list.php:1049 -#: ../../include/functions_graph.php:2640 -#: ../../include/functions_reporting.php:11693 -#: ../../include/functions_reporting.php:11716 +#: ../../godmode/groups/group_list.php:1052 +#: ../../godmode/groups/group_list.php:1053 +#: ../../godmode/groups/group_list.php:1054 +#: ../../include/functions_graph.php:2609 +#: ../../include/functions_reporting.php:11979 +#: ../../include/functions_reporting.php:12002 #: ../../include/lib/Dashboard/Widgets/tree_view.php:656 #: ../../include/lib/Dashboard/Widgets/tree_view.php:657 #: ../../include/lib/Dashboard/Widgets/tree_view.php:658 @@ -24096,8 +23933,8 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1238 #: ../../enterprise/include/functions_reporting_csv.php:1240 #: ../../include/functions_reports.php:754 -#: ../../include/functions_reporting.php:6787 -#: ../../include/functions_reporting.php:10159 +#: ../../include/functions_reporting.php:7002 +#: ../../include/functions_reporting.php:10377 msgid "Summatory" msgstr "" @@ -24109,7 +23946,7 @@ msgid "Minimum Value" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../include/functions_reporting.php:10163 +#: ../../include/functions_reporting.php:10381 msgid "Minimum" msgstr "" @@ -24126,7 +23963,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1390 #: ../../include/functions_reporting_html.php:3933 #: ../../include/functions_reports.php:762 -#: ../../include/functions_reporting.php:9619 +#: ../../include/functions_reporting.php:9837 msgid "Increment" msgstr "" @@ -24163,7 +24000,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1431 #: ../../enterprise/include/functions_reporting_csv.php:1437 #: ../../enterprise/include/functions_reporting_csv.php:1439 -#: ../../include/functions_reporting.php:6792 +#: ../../include/functions_reporting.php:7007 msgid "AVG. Value" msgstr "" @@ -24174,7 +24011,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1465 #: ../../enterprise/include/functions_reporting_csv.php:1483 #: ../../enterprise/include/functions_reporting_csv.php:1485 -#: ../../include/functions_reporting.php:6123 +#: ../../include/functions_reporting.php:6338 msgid "Monitor Report" msgstr "" @@ -24211,7 +24048,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:2896 #: ../../enterprise/include/functions_reporting.php:3883 #: ../../enterprise/include/functions_reporting.php:6133 -#: ../../include/functions_reporting_html.php:549 +#: ../../include/functions_reporting_html.php:550 msgid "SLA Limit" msgstr "" @@ -24290,9 +24127,9 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:3909 #: ../../enterprise/include/functions_reporting.php:3968 #: ../../enterprise/include/functions_reporting.php:6157 -#: ../../include/functions_reporting_html.php:666 -#: ../../include/functions_config.php:1306 -#: ../../include/functions_config.php:3297 +#: ../../include/functions_reporting_html.php:667 +#: ../../include/functions_config.php:1287 +#: ../../include/functions_config.php:3273 msgid "Fail" msgstr "" @@ -24585,18 +24422,18 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1985 #: ../../enterprise/include/functions_reporting.php:2319 -#: ../../enterprise/include/functions_ipam.php:2046 +#: ../../enterprise/include/functions_ipam.php:2054 #: ../../enterprise/tools/ipam/ipam_network.php:404 #: ../../enterprise/tools/ipam/ipam_network.php:673 #: ../../enterprise/tools/ipam/ipam_ajax.php:293 #: ../../enterprise/tools/ipam/ipam_ajax.php:479 #: ../../enterprise/tools/ipam/ipam_massive.php:83 -#: ../../godmode/users/configure_user.php:1202 +#: ../../godmode/users/configure_user.php:1261 #: ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:5909 -#: ../../include/functions.php:3073 ../../include/ajax/events.php:1683 +#: ../../include/functions_reporting_html.php:5928 +#: ../../include/functions.php:3099 ../../include/ajax/events.php:1690 #: ../../include/class/AuditLog.class.php:111 -#: ../../operation/users/user_edit.php:607 +#: ../../operation/users/user_edit.php:681 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 #: ../../general/logon_ok.php:253 @@ -24605,7 +24442,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:1986 #: ../../enterprise/include/functions_reporting.php:2320 -#: ../../enterprise/include/functions_ipam.php:2044 +#: ../../enterprise/include/functions_ipam.php:2052 #: ../../enterprise/tools/ipam/ipam_network.php:415 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1393 msgid "Alive" @@ -24625,13 +24462,13 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2030 #: ../../enterprise/include/functions_reporting.php:4968 -#: ../../include/functions_reporting_html.php:583 +#: ../../include/functions_reporting_html.php:584 msgid "Time Total" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2031 #: ../../enterprise/include/functions_reporting.php:4971 -#: ../../include/functions_reporting_html.php:585 +#: ../../include/functions_reporting_html.php:586 #: ../../include/functions_reporting_html.php:4072 msgid "Time OK" msgstr "" @@ -24642,14 +24479,14 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2033 #: ../../enterprise/include/functions_reporting.php:4972 -#: ../../include/functions_reporting_html.php:586 +#: ../../include/functions_reporting_html.php:587 #: ../../include/functions_reporting_html.php:4084 msgid "Time Unknown" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2034 #: ../../enterprise/include/functions_reporting.php:4973 -#: ../../include/functions_reporting_html.php:587 +#: ../../include/functions_reporting_html.php:588 msgid "Time Not Init" msgstr "" @@ -24660,13 +24497,13 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2036 #: ../../enterprise/include/functions_reporting.php:5063 -#: ../../include/functions_reporting_html.php:616 +#: ../../include/functions_reporting_html.php:617 msgid "Checks Total" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2037 #: ../../enterprise/include/functions_reporting.php:5066 -#: ../../include/functions_reporting_html.php:618 +#: ../../include/functions_reporting_html.php:619 #: ../../include/functions_reporting_html.php:4166 msgid "Checks OK" msgstr "" @@ -24677,7 +24514,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2039 #: ../../enterprise/include/functions_reporting.php:5067 -#: ../../include/functions_reporting_html.php:619 +#: ../../include/functions_reporting_html.php:620 msgid "Checks Unknown" msgstr "" @@ -24823,22 +24660,22 @@ msgid "Simple Baseline Graph" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2348 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:557 msgid "Custom Graph" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:5831 +#: ../../include/functions_reporting.php:6046 msgid "Alert Report Module" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2495 -#: ../../include/functions_reporting.php:5664 +#: ../../include/functions_reporting.php:5879 msgid "Alert Report Agent" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../include/functions_reporting.php:5484 +#: ../../include/functions_reporting.php:5699 msgid "Alert Report Group" msgstr "" @@ -24857,34 +24694,34 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2581 #: ../../include/functions_reports.php:939 #: ../../include/functions_reports.php:940 -#: ../../include/functions_reporting.php:4741 +#: ../../include/functions_reporting.php:5004 msgid "Permissions report" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 #: ../../godmode/users/user_list.php:539 -#: ../../godmode/users/configure_user.php:1028 -#: ../../godmode/users/configure_user.php:1044 -#: ../../include/functions_reporting_html.php:5199 -#: ../../include/functions_reporting_html.php:6367 -#: ../../include/functions_reporting_html.php:6390 +#: ../../godmode/users/configure_user.php:1045 +#: ../../godmode/users/configure_user.php:1103 +#: ../../include/functions_reporting_html.php:5218 +#: ../../include/functions_reporting_html.php:6386 +#: ../../include/functions_reporting_html.php:6409 #: ../../include/class/SnmpConsole.class.php:341 -#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:261 +#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:268 msgid "User ID" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6368 -#: ../../include/functions_reporting_html.php:6391 +#: ../../include/functions_reporting_html.php:6387 +#: ../../include/functions_reporting_html.php:6410 msgid "Full name" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6369 -#: ../../include/functions_reporting_html.php:6392 +#: ../../include/functions_reporting_html.php:6388 +#: ../../include/functions_reporting_html.php:6411 msgid "Permissions" msgstr "" @@ -24943,14 +24780,14 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2836 #: ../../include/functions_reports.php:926 -#: ../../include/functions_reporting.php:6278 +#: ../../include/functions_reporting.php:6493 msgid "Netflow top-N connections" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2858 #: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:5908 -#: ../../include/functions.php:3073 ../../include/functions_netflow.php:347 +#: ../../include/functions_reporting_html.php:5927 +#: ../../include/functions.php:3099 ../../include/functions_netflow.php:347 #: ../../include/class/AuditLog.class.php:110 #: ../../operation/snmpconsole/snmp_statistics.php:182 #: ../../general/logon_ok.php:252 @@ -24963,8 +24800,8 @@ msgid "Destination IP" msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1009 -#: ../../include/functions_config.php:3209 +#: ../../include/functions_config.php:990 +#: ../../include/functions_config.php:3185 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:206 #: ../../operation/network/network_report.php:238 @@ -25082,7 +24919,7 @@ msgid "Microsoft Compute" msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:355 -#: ../../enterprise/include/class/Aws.cloud.php:1494 +#: ../../enterprise/include/class/Aws.cloud.php:1493 #: ../../enterprise/include/class/Google.cloud.php:349 #, php-format msgid "%s not found or not executable" @@ -25105,7 +24942,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:437 #: ../../enterprise/include/class/Aws.S3.php:401 #: ../../enterprise/include/class/SAP.app.php:469 -#: ../../enterprise/include/class/Aws.cloud.php:1202 +#: ../../enterprise/include/class/Aws.cloud.php:1201 #: ../../enterprise/include/class/MySQL.app.php:442 #: ../../enterprise/include/class/Google.cloud.php:759 #: ../../enterprise/include/class/Oracle.app.php:444 @@ -25119,13 +24956,13 @@ msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:797 #: ../../enterprise/include/class/VMware.app.php:614 #: ../../enterprise/include/class/Aws.S3.php:559 -#: ../../enterprise/include/class/Aws.cloud.php:541 +#: ../../enterprise/include/class/Aws.cloud.php:540 msgid "Tentacle options" msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:872 -#: ../../enterprise/include/class/Aws.cloud.php:743 -#: ../../enterprise/include/class/Aws.cloud.php:1275 +#: ../../enterprise/include/class/Aws.cloud.php:742 +#: ../../enterprise/include/class/Aws.cloud.php:1274 #: ../../enterprise/include/class/Google.cloud.php:822 msgid "No instances found." msgstr "" @@ -25136,29 +24973,29 @@ msgid "Select target virtual machines" msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:928 -#: ../../enterprise/include/class/Aws.cloud.php:672 +#: ../../enterprise/include/class/Aws.cloud.php:671 msgid "Scan and general monitoring." msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:941 -#: ../../enterprise/include/class/Aws.cloud.php:689 +#: ../../enterprise/include/class/Aws.cloud.php:688 msgid "Cpu performance summary" msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:949 -#: ../../enterprise/include/class/Aws.cloud.php:699 +#: ../../enterprise/include/class/Aws.cloud.php:698 #: ../../enterprise/include/class/Google.cloud.php:911 msgid "IOPS performance summary" msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:957 -#: ../../enterprise/include/class/Aws.cloud.php:709 +#: ../../enterprise/include/class/Aws.cloud.php:708 #: ../../enterprise/include/class/Google.cloud.php:919 msgid "Disk performance summary" msgstr "" #: ../../enterprise/include/class/Azure.cloud.php:965 -#: ../../enterprise/include/class/Aws.cloud.php:719 +#: ../../enterprise/include/class/Aws.cloud.php:718 #: ../../enterprise/include/class/Google.cloud.php:927 msgid "Network performance summary" msgstr "" @@ -25168,12 +25005,12 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:869 #: ../../enterprise/include/class/Aws.S3.php:659 #: ../../enterprise/include/class/SAP.app.php:925 -#: ../../enterprise/include/class/Aws.cloud.php:1592 +#: ../../enterprise/include/class/Aws.cloud.php:1591 #: ../../enterprise/include/class/MySQL.app.php:945 #: ../../enterprise/include/class/Google.cloud.php:952 #: ../../enterprise/include/class/Oracle.app.php:978 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:822 -#: ../../godmode/wizards/HostDevices.class.php:1614 +#: ../../godmode/wizards/HostDevices.class.php:1613 #: ../../include/class/CustomNetScan.class.php:759 msgid "Task configured." msgstr "" @@ -25186,7 +25023,7 @@ msgstr "" #: ../../enterprise/include/class/Google.cloud.php:956 #: ../../enterprise/include/class/Oracle.app.php:982 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:826 -#: ../../godmode/wizards/HostDevices.class.php:1618 +#: ../../godmode/wizards/HostDevices.class.php:1617 #: ../../include/class/CustomNetScan.class.php:763 msgid "Wizard failed. Cannot configure task." msgstr "" @@ -25201,7 +25038,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:197 #: ../../enterprise/include/class/Aws.S3.php:183 #: ../../enterprise/include/class/SAP.app.php:185 -#: ../../enterprise/include/class/Aws.cloud.php:918 +#: ../../enterprise/include/class/Aws.cloud.php:917 #: ../../enterprise/include/class/MySQL.app.php:206 #: ../../enterprise/include/class/Oracle.app.php:204 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 @@ -25214,7 +25051,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:202 #: ../../enterprise/include/class/Aws.S3.php:188 #: ../../enterprise/include/class/SAP.app.php:190 -#: ../../enterprise/include/class/Aws.cloud.php:923 +#: ../../enterprise/include/class/Aws.cloud.php:922 #: ../../enterprise/include/class/MySQL.app.php:211 #: ../../enterprise/include/class/Oracle.app.php:209 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 @@ -25231,7 +25068,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:212 #: ../../enterprise/include/class/Aws.S3.php:193 #: ../../enterprise/include/class/SAP.app.php:200 -#: ../../enterprise/include/class/Aws.cloud.php:928 +#: ../../enterprise/include/class/Aws.cloud.php:927 #: ../../enterprise/include/class/MySQL.app.php:226 #: ../../enterprise/include/class/Oracle.app.php:219 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 @@ -25280,7 +25117,7 @@ msgstr "" #: ../../enterprise/include/class/VMware.app.php:547 #: ../../enterprise/include/class/Aws.S3.php:554 -#: ../../enterprise/include/class/Aws.cloud.php:501 +#: ../../enterprise/include/class/Aws.cloud.php:500 msgid "" "This kind of task uses multipurpose plugins in order to generate monitoring " "data, configure your desired tentacle target." @@ -25290,7 +25127,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:449 #: ../../enterprise/include/class/Aws.S3.php:413 #: ../../enterprise/include/class/SAP.app.php:482 -#: ../../enterprise/include/class/Aws.cloud.php:1214 +#: ../../enterprise/include/class/Aws.cloud.php:1213 #: ../../enterprise/include/class/MySQL.app.php:454 #: ../../enterprise/include/class/Oracle.app.php:456 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 @@ -25309,7 +25146,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:537 #: ../../enterprise/include/class/Aws.S3.php:507 #: ../../enterprise/include/class/SAP.app.php:514 -#: ../../enterprise/include/class/Aws.cloud.php:1320 +#: ../../enterprise/include/class/Aws.cloud.php:1319 #: ../../enterprise/include/class/MySQL.app.php:559 #: ../../enterprise/include/class/Oracle.app.php:544 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 @@ -25323,7 +25160,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:544 #: ../../enterprise/include/class/Aws.S3.php:514 #: ../../enterprise/include/class/SAP.app.php:521 -#: ../../enterprise/include/class/Aws.cloud.php:1327 +#: ../../enterprise/include/class/Aws.cloud.php:1326 #: ../../enterprise/include/class/MySQL.app.php:566 #: ../../enterprise/include/class/Oracle.app.php:551 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 @@ -25339,7 +25176,7 @@ msgstr "" #: ../../enterprise/include/class/SAPView.class.php:259 #: ../../enterprise/include/class/SAPView.class.php:296 #: ../../enterprise/include/class/SAP.app.php:540 -#: ../../enterprise/include/class/Aws.cloud.php:1344 +#: ../../enterprise/include/class/Aws.cloud.php:1343 #: ../../enterprise/include/class/MySQL.app.php:583 #: ../../enterprise/include/class/Oracle.app.php:568 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 @@ -25368,7 +25205,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:470 #: ../../enterprise/include/class/Aws.S3.php:435 #: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Aws.cloud.php:1235 +#: ../../enterprise/include/class/Aws.cloud.php:1234 #: ../../enterprise/include/class/MySQL.app.php:475 #: ../../enterprise/include/class/Oracle.app.php:477 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 @@ -25640,8 +25477,8 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1268 #: ../../enterprise/include/class/SAP.app.php:604 #: ../../enterprise/include/class/SAP.app.php:607 -#: ../../godmode/wizards/HostDevices.class.php:1456 -#: ../../godmode/wizards/HostDevices.class.php:1459 +#: ../../godmode/wizards/HostDevices.class.php:1455 +#: ../../godmode/wizards/HostDevices.class.php:1458 msgid "No credentials available" msgstr "" @@ -25649,7 +25486,7 @@ msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1266 #: ../../enterprise/include/class/SAP.app.php:605 #: ../../godmode/agentes/module_manager_editor_network.php:518 -#: ../../godmode/wizards/HostDevices.class.php:1457 +#: ../../godmode/wizards/HostDevices.class.php:1456 msgid "Manage credentials" msgstr "" @@ -25662,7 +25499,7 @@ msgid "Scan from" msgstr "" #: ../../enterprise/include/class/DeploymentCenter.class.php:1178 -#: ../../godmode/wizards/HostDevices.class.php:1469 +#: ../../godmode/wizards/HostDevices.class.php:1468 msgid "Credentials to try with" msgstr "" @@ -25759,7 +25596,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:419 #: ../../enterprise/tools/ipam/ipam_massive.php:103 #: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/groups/group_list.php:913 #: ../../godmode/agentes/module_manager_editor_common.php:1075 #: ../../godmode/agentes/module_manager_editor_common.php:1085 #: ../../godmode/massive/massive_edit_agents.php:1137 @@ -25997,8 +25834,8 @@ msgstr "" #: ../../enterprise/include/lib/Metaconsole/Node.php:1453 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5095 -#: ../../include/functions_reporting.php:5123 +#: ../../include/functions_reporting.php:5358 +#: ../../include/functions_reporting.php:5386 #, php-format msgid "Error: %s" msgstr "" @@ -26526,7 +26363,7 @@ msgid "Aws S3" msgstr "" #: ../../enterprise/include/class/Aws.S3.php:166 -#: ../../enterprise/include/class/Aws.cloud.php:887 +#: ../../enterprise/include/class/Aws.cloud.php:886 #: ../../include/class/CustomNetScan.class.php:134 msgid "This task has been already defined. Please edit it or create a new one." msgstr "" @@ -26841,98 +26678,98 @@ msgstr "" msgid "Instances" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:442 +#: ../../enterprise/include/class/Aws.cloud.php:441 msgid "Amazon EC2" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:447 +#: ../../enterprise/include/class/Aws.cloud.php:446 msgid "Amazon RDS" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:452 +#: ../../enterprise/include/class/Aws.cloud.php:451 msgid "S3 Buckets" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:472 +#: ../../enterprise/include/class/Aws.cloud.php:471 #: ../../godmode/wizards/HostDevices.class.php:698 msgid "NetScan" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:511 +#: ../../enterprise/include/class/Aws.cloud.php:510 msgid "Discovery task name" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:615 +#: ../../enterprise/include/class/Aws.cloud.php:614 msgid "Total cost" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:632 +#: ../../enterprise/include/class/Aws.cloud.php:631 msgid "Cost by region" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:646 +#: ../../enterprise/include/class/Aws.cloud.php:645 msgid "Cost interval" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:774 +#: ../../enterprise/include/class/Aws.cloud.php:773 msgid "Select EC2 instances" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:790 +#: ../../enterprise/include/class/Aws.cloud.php:789 msgid "Storage" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:800 +#: ../../enterprise/include/class/Aws.cloud.php:799 msgid "Elastic IP Adresses" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:983 +#: ../../enterprise/include/class/Aws.cloud.php:982 msgid "You must select at least one RDS instance." msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:988 +#: ../../enterprise/include/class/Aws.cloud.php:987 msgid "" "You cannot monitor RDS instances from different types. Please define several " "tasks for several types." msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:995 +#: ../../enterprise/include/class/Aws.cloud.php:994 msgid "Discovery.Cloud.AWS.RDS" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:1161 +#: ../../enterprise/include/class/Aws.cloud.php:1160 msgid "RDS" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:1166 +#: ../../enterprise/include/class/Aws.cloud.php:1165 msgid "DB monitoring" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:1176 +#: ../../enterprise/include/class/Aws.cloud.php:1175 msgid "AWS RDS" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:1250 +#: ../../enterprise/include/class/Aws.cloud.php:1249 msgid "Global DB User" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:1260 +#: ../../enterprise/include/class/Aws.cloud.php:1259 msgid "Global DB password" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:1350 +#: ../../enterprise/include/class/Aws.cloud.php:1349 msgid "Select RDS instances" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:1654 +#: ../../enterprise/include/class/Aws.cloud.php:1653 msgid "Invalid group" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:1712 +#: ../../enterprise/include/class/Aws.cloud.php:1711 msgid "Cannot update the recon database" msgstr "" -#: ../../enterprise/include/class/Aws.cloud.php:1734 +#: ../../enterprise/include/class/Aws.cloud.php:1733 msgid "Engine not supported" msgstr "" @@ -27199,47 +27036,47 @@ msgid "Block" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1264 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1084 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1085 msgid "Log content" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1269 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1087 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1088 msgid "Log source" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1274 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1090 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1091 msgid "Log agent" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1332 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1096 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1097 msgid "Event content" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1337 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1093 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1094 msgid "Event user comment" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1342 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1099 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1100 msgid "Event agent" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1347 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1102 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1103 msgid "Event module" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1352 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1105 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1106 msgid "Event module alerts" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1357 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1108 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1109 msgid "Event group" msgstr "" @@ -27248,17 +27085,17 @@ msgid "Event group (recursive)" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1369 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1114 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1115 msgid "Event severity" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1374 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1117 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1118 msgid "Event tag" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1379 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1120 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1121 msgid "Event user" msgstr "" @@ -27268,20 +27105,20 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1414 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1458 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1433 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1434 msgid "greater than" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1419 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1462 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1437 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1445 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1438 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1446 msgid "less than" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1424 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1466 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1441 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1442 msgid "greater or equal than" msgstr "" @@ -27292,25 +27129,25 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1434 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1474 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1449 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1450 msgid "is equal" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1439 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1478 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1453 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1454 msgid "is different" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1444 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1482 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1457 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1458 msgid "is like (regex)" msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1449 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1486 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1461 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1462 msgid "is not like (regex)" msgstr "" @@ -27374,10 +27211,10 @@ msgstr "" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2078 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2735 -#: ../../godmode/alerts/alert_commands.php:101 -#: ../../godmode/alerts/alert_commands.php:106 -#: ../../godmode/alerts/alert_commands.php:122 -#: ../../godmode/alerts/alert_commands.php:128 +#: ../../godmode/alerts/alert_commands.php:102 +#: ../../godmode/alerts/alert_commands.php:107 +#: ../../godmode/alerts/alert_commands.php:123 +#: ../../godmode/alerts/alert_commands.php:129 #: ../../godmode/alerts/configure_alert_template.php:928 #: ../../godmode/alerts/alert_view.php:484 #: ../../godmode/alerts/alert_view.php:603 @@ -27385,6 +27222,11 @@ msgstr "" msgid "Field %s" msgstr "" +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2090 +msgid "" +"Agent and module event recovery macros are not available in this section" +msgstr "" + #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2090 #, php-format msgid "Recovery Field %s" @@ -27626,7 +27468,7 @@ msgid "Metaconsole" msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:982 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994 msgid "" "Memory limit is recomended to be unlimited in metaconsole, please set to -1 " "in php.ini." @@ -27669,7 +27511,7 @@ msgid "Please restore your backups" msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:452 -#: ../../include/functions_ui.php:6663 +#: ../../include/functions_ui.php:6667 msgid "Query" msgstr "" @@ -27709,7 +27551,8 @@ msgstr "" #: ../../enterprise/include/class/CommandCenter.class.php:461 #: ../../enterprise/include/functions_login.php:145 -#: ../../include/class/Diagnostics.class.php:1821 +#: ../../include/functions_menu.php:799 +#: ../../include/class/Diagnostics.class.php:1826 msgid "Successfully" msgstr "" @@ -27856,7 +27699,7 @@ msgid "Admin Tools" msgstr "" #: ../../enterprise/include/class/ManageBackups.class.php:121 -#: ../../enterprise/operation/menu.php:183 +#: ../../enterprise/operation/menu.php:170 msgid "DB Backup Manager" msgstr "" @@ -27874,7 +27717,7 @@ msgstr "" #: ../../include/functions_visual_map_editor.php:838 #: ../../include/functions_visual_map_editor.php:933 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:1991 +#: ../../include/rest-api/models/VisualConsole/Item.php:1992 #: ../../include/functions_filemanager.php:606 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250 @@ -27974,7 +27817,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:1856 #: ../../enterprise/include/functions_reporting.php:2895 #: ../../enterprise/include/functions_reporting.php:3882 -#: ../../include/functions_reporting_html.php:548 +#: ../../include/functions_reporting_html.php:549 msgid "Max/Min Values" msgstr "" @@ -27983,7 +27826,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:2897 #: ../../enterprise/include/functions_reporting.php:3884 #: ../../enterprise/include/functions_reporting.php:6134 -#: ../../include/functions_reporting_html.php:550 +#: ../../include/functions_reporting_html.php:551 msgid "SLA Compliance" msgstr "" @@ -27993,7 +27836,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:3939 #: ../../enterprise/include/functions_reporting.php:4203 #: ../../enterprise/include/functions_reporting.php:4854 -#: ../../include/functions_reporting_html.php:873 +#: ../../include/functions_reporting_html.php:874 #: ../../include/functions_reporting_html.php:4795 msgid "Not Init" msgstr "" @@ -28039,16 +27882,16 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:2495 #: ../../enterprise/include/functions_reporting.php:3439 #: ../../enterprise/include/functions_reporting.php:4414 -#: ../../include/functions_reporting.php:1005 -#: ../../include/functions_reporting.php:8923 +#: ../../include/functions_reporting.php:1006 +#: ../../include/functions_reporting.php:9141 msgid "There are no SLAs defined" msgstr "" #: ../../enterprise/include/functions_reporting.php:2548 #: ../../enterprise/include/functions_reporting.php:3492 #: ../../enterprise/include/functions_reporting.php:4467 -#: ../../include/functions_reporting.php:1080 -#: ../../include/functions_reporting.php:9301 +#: ../../include/functions_reporting.php:1081 +#: ../../include/functions_reporting.php:9519 msgid "Inverse" msgstr "" @@ -28096,7 +27939,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:4198 #: ../../enterprise/include/functions_reporting.php:6199 #: ../../enterprise/include/functions_services.php:1453 -#: ../../include/functions_reporting_html.php:868 +#: ../../include/functions_reporting_html.php:869 #: ../../include/functions_reporting_html.php:4790 msgid "Unknow" msgstr "" @@ -28104,7 +27947,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting.php:3207 #: ../../enterprise/include/functions_reporting.php:4208 #: ../../enterprise/include/functions_reporting.php:6204 -#: ../../include/functions_reporting_html.php:878 +#: ../../include/functions_reporting_html.php:879 #: ../../include/functions_reporting_html.php:4800 msgid "Downtimes" msgstr "" @@ -28135,17 +27978,17 @@ msgid "% time ok" msgstr "" #: ../../enterprise/include/functions_reporting.php:4927 -#: ../../include/functions_reporting_html.php:637 -#: ../../include/functions_reporting_html.php:676 -#: ../../include/functions_reporting_html.php:747 -#: ../../include/functions_reporting_html.php:825 +#: ../../include/functions_reporting_html.php:638 +#: ../../include/functions_reporting_html.php:677 +#: ../../include/functions_reporting_html.php:748 +#: ../../include/functions_reporting_html.php:826 #: ../../include/functions_reporting_html.php:4248 #: ../../include/functions_reporting_html.php:4395 msgid "24 x 7" msgstr "" #: ../../enterprise/include/functions_reporting.php:4967 -#: ../../include/functions_reporting_html.php:582 +#: ../../include/functions_reporting_html.php:583 msgid "Global Time" msgstr "" @@ -28154,7 +27997,7 @@ msgid "Time Critical" msgstr "" #: ../../enterprise/include/functions_reporting.php:5062 -#: ../../include/functions_reporting_html.php:615 +#: ../../include/functions_reporting_html.php:616 msgid "Checks Time" msgstr "" @@ -28168,12 +28011,12 @@ msgid "Checks Warning" msgstr "" #: ../../enterprise/include/functions_reporting.php:5148 -#: ../../include/functions_reporting_html.php:805 +#: ../../include/functions_reporting_html.php:806 #: ../../include/functions_reporting_html.php:4438 #: ../../include/functions_reporting_html.php:4988 #: ../../include/functions_reporting_html.php:4991 -#: ../../include/functions_reporting.php:1650 -#: ../../include/functions_reporting.php:3513 +#: ../../include/functions_reporting.php:1651 +#: ../../include/functions_reporting.php:3631 msgid "There are no Agent/Modules defined" msgstr "" @@ -28488,7 +28331,7 @@ msgid "User pass successfully updated" msgstr "" #: ../../enterprise/include/functions_login.php:216 -#: ../../include/auth/mysql.php:763 +#: ../../include/auth/mysql.php:741 msgid "The password provided is not valid. Please, set another one." msgstr "" @@ -28505,61 +28348,64 @@ msgid "Password must be different" msgstr "" #: ../../enterprise/include/functions_login.php:256 +#: ../../enterprise/include/functions_login.php:306 msgid "Password too short" msgstr "" #: ../../enterprise/include/functions_login.php:268 +#: ../../enterprise/include/functions_login.php:313 msgid "Password must contain numbers" msgstr "" #: ../../enterprise/include/functions_login.php:281 +#: ../../enterprise/include/functions_login.php:321 msgid "Password must contain symbols" msgstr "" -#: ../../enterprise/include/functions_login.php:304 +#: ../../enterprise/include/functions_login.php:339 msgid "Invalid old password" msgstr "" -#: ../../enterprise/include/functions_login.php:341 +#: ../../enterprise/include/functions_login.php:376 msgid "Password confirm does not match" msgstr "" -#: ../../enterprise/include/functions_login.php:348 +#: ../../enterprise/include/functions_login.php:383 msgid "Password empty" msgstr "" -#: ../../enterprise/include/functions_login.php:465 -#: ../../godmode/users/configure_user.php:2064 -#: ../../godmode/users/configure_user.php:2134 -#: ../../godmode/users/configure_user.php:2206 +#: ../../enterprise/include/functions_login.php:502 +#: ../../godmode/users/configure_user.php:2129 +#: ../../godmode/users/configure_user.php:2199 +#: ../../godmode/users/configure_user.php:2271 #: ../../include/ajax/double_auth.ajax.php:252 #: ../../include/ajax/double_auth.ajax.php:350 #: ../../include/ajax/double_auth.ajax.php:396 #: ../../include/ajax/double_auth.ajax.php:512 -#: ../../operation/users/user_edit.php:1086 -#: ../../operation/users/user_edit.php:1152 -#: ../../operation/users/user_edit.php:1223 ../../general/register.php:154 +#: ../../operation/users/user_edit.php:1160 +#: ../../operation/users/user_edit.php:1226 +#: ../../operation/users/user_edit.php:1297 ../../general/register.php:154 #: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "" -#: ../../enterprise/include/functions_login.php:472 -#: ../../godmode/users/configure_user.php:2071 -#: ../../godmode/users/configure_user.php:2141 +#: ../../enterprise/include/functions_login.php:509 +#: ../../godmode/users/configure_user.php:2136 +#: ../../godmode/users/configure_user.php:2206 #: ../../include/ajax/double_auth.ajax.php:259 #: ../../include/ajax/double_auth.ajax.php:357 #: ../../include/ajax/double_auth.ajax.php:403 #: ../../include/ajax/double_auth.ajax.php:520 -#: ../../operation/users/user_edit.php:1093 -#: ../../operation/users/user_edit.php:1159 ../../general/register.php:161 +#: ../../operation/users/user_edit.php:1167 +#: ../../operation/users/user_edit.php:1233 ../../general/register.php:161 msgid "There was an error loading the data" msgstr "" -#: ../../enterprise/include/functions_login.php:481 -#: ../../godmode/users/configure_user.php:2149 -#: ../../godmode/users/configure_user.php:2227 -#: ../../operation/users/user_edit.php:1167 -#: ../../operation/users/user_edit.php:1243 ../../general/register.php:170 +#: ../../enterprise/include/functions_login.php:518 +#: ../../godmode/users/configure_user.php:2214 +#: ../../godmode/users/configure_user.php:2292 +#: ../../operation/users/user_edit.php:1241 +#: ../../operation/users/user_edit.php:1317 ../../general/register.php:170 msgid "Double authentication activation" msgstr "" @@ -28609,8 +28455,8 @@ msgstr "" #: ../../enterprise/include/lib/NetworkManager.php:82 #: ../../godmode/setup/setup_ehorus.php:111 #: ../../godmode/setup/setup_integria.php:566 -#: ../../operation/users/user_edit.php:736 -#: ../../operation/users/user_edit.php:782 +#: ../../operation/users/user_edit.php:810 +#: ../../operation/users/user_edit.php:856 msgid "Test" msgstr "" @@ -28627,7 +28473,7 @@ msgid "Send firmware" msgstr "" #: ../../enterprise/include/lib/NetworkManager.php:88 -#: ../../godmode/setup/setup_general.php:408 +#: ../../godmode/setup/setup_general.php:489 msgid "On demand" msgstr "" @@ -28663,42 +28509,42 @@ msgstr "" msgid "Montly" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:838 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:852 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:839 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:853 msgid "There was a problem creating Action" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:889 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:902 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:890 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:903 msgid "There was a problem updating Action" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:938 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:952 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:939 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:953 msgid "There was a problem deleting Action" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:994 msgid "There was a problem standby alert" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1002 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1003 msgid "There was a problem standby off alert" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1045 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1046 msgid "There was a problem enabled alert" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1055 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056 msgid "There was a problem disabled alert" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1111 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1112 msgid "Event group Recursive" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1126 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 #: ../../include/functions_reporting_html.php:1051 #: ../../include/functions_reporting_html.php:1317 #: ../../include/functions_reporting_html.php:2548 @@ -28706,25 +28552,25 @@ msgstr "" msgid "Count" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1129 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 msgid "Time window" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1663 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1664 msgid "Failed to cleanup old rules." msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1671 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1672 #, php-format msgid "Failed SQL: %s" msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1676 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1677 #, php-format msgid "Failed to apply rule: %s." msgstr "" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1824 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1825 msgid "any" msgstr "" @@ -28955,12 +28801,12 @@ msgid "Failed to overwrite node data: %s" msgstr "" #: ../../enterprise/include/lib/Metaconsole/Node.php:1703 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3008 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3037 msgid "Final step" msgstr "" #: ../../enterprise/include/lib/Metaconsole/Node.php:1704 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3009 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3038 msgid "Database merged" msgstr "" @@ -28969,312 +28815,312 @@ msgid "Activating node" msgstr "" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:396 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:443 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:752 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:879 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1150 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1244 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1596 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1893 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2262 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3467 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3621 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3696 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3995 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4211 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:398 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:445 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:758 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:891 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1161 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1255 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1609 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1918 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2291 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3215 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3500 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3658 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3733 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4020 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4236 msgid "Connect node" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:659 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:665 msgid "Create table tmerge_error" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:685 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:691 msgid "Create table tmerge_steps" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:710 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:716 msgid "Create table tmerge_queries" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:851 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:861 #, php-format msgid "%s console" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:856 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:866 msgid "Check cron task" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:857 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867 msgid "Please login into this node before using this feature" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:939 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:951 msgid "memory_limit current value" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:946 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:958 msgid "" "Check current packages, all nodes and metaconsole, are not in the same " "version" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:958 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:970 msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:970 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:982 msgid "Max size collection, all nodes and metaconsole, are not equal" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:995 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1007 #, php-format msgid "" "Post max size, nodes cannot be smaller than the size of the metaconsole %s" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1010 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1022 #, php-format msgid "" "Upload max file size, nodes cannot be smaller than the size of the " "metaconsole %s" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1072 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1088 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1084 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1100 msgid "Problems with the backup directory" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1073 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1085 msgid "Cannot create \"merge_backups\" folder in attachment directory" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1089 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1101 msgid "The \"merge_backpus\" directory does not have the correct permissions" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1099 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1111 msgid "Extension ZIP" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1100 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1112 msgid "The ZIP extension is not loaded, please install this dependency" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1201 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1212 msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1227 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1238 msgid "" "Resets foreing keys and exceptions and ends the merge preparation process" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1274 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1285 msgid "Enable exceptions in tmerge_queries" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1298 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1309 msgid "Enable foreing keys in tmerge_queries" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1577 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1862 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1590 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1887 msgid "Preparation of all nodes for the table merge process" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1653 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1666 msgid "This table does not have the id" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1654 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1667 msgid "Prepare merge request" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1980 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2005 msgid "Inserts truncate, autoincrement and inserts in tmerge_queries" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2150 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2179 msgid "Inserts updates in tmerge_queries" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2187 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2216 msgid "Merging collections files" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2243 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2389 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2560 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2272 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2418 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2589 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3202 #, php-format msgid "Api call: %s" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2301 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2302 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2330 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2331 msgid "Problems while backing up collections from: " msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2319 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2323 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2348 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2352 #, php-format msgid "Problems downloading collections from %s" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2335 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2339 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2364 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2368 #, php-format msgid "Problems unzipping collection file from %s" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2618 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2647 msgid "Start phase merge" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2630 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2659 msgid "Create backups" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2698 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2699 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2727 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2728 msgid "Problems creating the backup conf agents" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2709 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2947 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3317 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2738 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2976 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3346 msgid "Class agent" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2733 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2745 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2762 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2774 msgid "Disable_foreing" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2757 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2786 msgid "Truncate table" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2775 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2804 msgid "Autoincrement" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2787 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2816 msgid "Inserts" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2805 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2834 msgid "Disabling constraints" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2823 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2852 msgid "Updates" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2846 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2875 msgid "Restoring constraints" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2864 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2893 msgid "Enable exceptions" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2882 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2911 msgid "Enable foreings keys" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2899 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2900 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2928 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929 msgid "Update conf agent policies" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2936 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2937 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2965 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2966 msgid "Error updating agent conf" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2958 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2987 msgid "Synchronizing collections" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2970 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2971 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2999 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3000 msgid "Error synchronizing collections" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3067 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3096 msgid "Problems unzipping collections at: " msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3068 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3097 #, php-format msgid "File is not a valid zip file \"%s\"" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3226 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3255 msgid "Restoring database backup" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3252 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4476 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3281 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4501 msgid "Problems creating the backup" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3265 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3294 msgid "Restore backups conf agents" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3302 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3331 msgid "Problems restoring the backup conf agents" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3304 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3333 #, php-format msgid "Agent \"%s\" with md5 file \"%s\"" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3330 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3359 msgid "Restore collections" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3345 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3346 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3374 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3375 msgid "Error Synch collections" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3563 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3803 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3596 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3828 msgid "Insert info steps" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3728 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3745 msgid "Node not ready" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3729 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3746 msgid "Pending to be unified" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3962 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3967 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4019 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4024 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3987 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3992 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4044 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4049 msgid "Initialize" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4158 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4183 msgid "Backup" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4188 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4213 msgid "Applying" msgstr "" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4407 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4432 msgid "Error updating events" msgstr "" @@ -29409,7 +29255,7 @@ msgstr "" #: ../../enterprise/include/functions_events.php:40 #: ../../godmode/events/event_filter.php:139 -#: ../../godmode/events/event_edit_filter.php:367 +#: ../../godmode/events/event_edit_filter.php:377 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 #: ../../operation/events/events.php:1688 #: ../../operation/events/events.php:2325 @@ -29417,31 +29263,31 @@ msgid "Event status" msgstr "" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:440 +#: ../../godmode/events/event_edit_filter.php:450 #: ../../operation/events/events.php:1964 msgid "User ack." msgstr "" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:495 +#: ../../godmode/events/event_edit_filter.php:505 msgid "Date from" msgstr "" #: ../../enterprise/include/functions_events.php:121 -#: ../../godmode/events/event_edit_filter.php:498 +#: ../../godmode/events/event_edit_filter.php:508 msgid "Date to" msgstr "" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:484 +#: ../../godmode/events/event_edit_filter.php:494 #: ../../mobile/operation/events.php:816 -#: ../../include/functions_events.php:4787 +#: ../../include/functions_events.php:4766 #: ../../operation/events/events.php:1720 msgid "Repeated" msgstr "" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:644 +#: ../../godmode/events/event_edit_filter.php:654 #: ../../operation/events/events.php:2000 msgid "Alert events" msgstr "" @@ -29451,7 +29297,7 @@ msgid "Id source events" msgstr "" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:430 +#: ../../godmode/events/event_edit_filter.php:440 #: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 #: ../../include/class/SnmpConsole.class.php:467 #: ../../include/class/AuditLog.class.php:186 @@ -29469,14 +29315,14 @@ msgid "More than 5 tags" msgstr "" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:539 +#: ../../godmode/events/event_edit_filter.php:549 #: ../../operation/events/events.php:2196 #: ../../operation/events/events.php:2199 msgid "Events with following tags" msgstr "" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:592 +#: ../../godmode/events/event_edit_filter.php:602 #: ../../operation/events/events.php:2197 #: ../../operation/events/events.php:2200 msgid "Events without following tags" @@ -29492,48 +29338,48 @@ msgstr "" msgid "Active filters" msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2863 +#: ../../enterprise/include/functions_metaconsole.php:2864 msgid "Agent alerts action does not exist in target node" msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2870 +#: ../../enterprise/include/functions_metaconsole.php:2871 msgid "Agent alerts template does not exist in target node" msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2877 +#: ../../enterprise/include/functions_metaconsole.php:2878 msgid "Agent inventory does not exist in target node" msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2884 +#: ../../enterprise/include/functions_metaconsole.php:2885 msgid "Exists agent conf please remove configuration file from target node." msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2891 +#: ../../enterprise/include/functions_metaconsole.php:2892 msgid "Agent collections does not exist in target node" msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2898 +#: ../../enterprise/include/functions_metaconsole.php:2899 msgid "Agent plugins does not exist in target node" msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2905 +#: ../../enterprise/include/functions_metaconsole.php:2906 msgid "" "Agent policies definitions does not match with defined ones in target node" msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2912 +#: ../../enterprise/include/functions_metaconsole.php:2913 msgid "Agent group does not exist in target node" msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2919 +#: ../../enterprise/include/functions_metaconsole.php:2920 msgid "Agent already exists in target node" msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2943 +#: ../../enterprise/include/functions_metaconsole.php:2944 msgid "The agent: has not been added due to problems in the insertion" msgstr "" -#: ../../enterprise/include/functions_metaconsole.php:2948 +#: ../../enterprise/include/functions_metaconsole.php:2949 msgid "The agent: has already been added to the migration queue" msgstr "" @@ -29546,6 +29392,7 @@ msgid "Subscription" msgstr "" #: ../../enterprise/include/functions_license.php:120 +#: ../../include/functions_menu.php:837 #: ../../include/class/Diagnostics.class.php:1159 msgid "Support expires" msgstr "" @@ -29568,12 +29415,24 @@ msgstr "" #: ../../enterprise/include/functions_ipam.php:1341 #: ../../enterprise/tools/ipam/ipam_ajax.php:483 -#: ../../include/ajax/events.php:1673 +#: ../../include/ajax/events.php:1680 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378 msgid "Details" msgstr "" +#: ../../enterprise/include/functions_ipam.php:1386 +#: ../../enterprise/operation/services/services.list.php:639 +#: ../../godmode/agentes/inventory_manager.php:258 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:586 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:676 +#: ../../include/ajax/module.php:1065 ../../include/functions_ui.php:1162 +#: ../../operation/visual_console/view.php:406 +#: ../../operation/agentes/group_view.php:221 +#: ../../operation/agentes/group_view.php:283 +msgid "Force" +msgstr "" + #: ../../enterprise/include/functions_ipam.php:1559 #: ../../include/class/SnmpConsole.class.php:189 #: ../../operation/snmpconsole/snmp_statistics.php:78 @@ -29582,7 +29441,7 @@ msgid "Statistics" msgstr "" #: ../../enterprise/include/functions_ipam.php:1561 -#: ../../enterprise/include/functions_ipam.php:1995 +#: ../../enterprise/include/functions_ipam.php:2003 #: ../../enterprise/tools/ipam/ipam_excel.php:142 #: ../../enterprise/tools/ipam/ipam_excel.php:210 msgid "Total IPs" @@ -29593,7 +29452,7 @@ msgid "Occupied" msgstr "" #: ../../enterprise/include/functions_ipam.php:1573 -#: ../../enterprise/include/functions_ipam.php:2048 +#: ../../enterprise/include/functions_ipam.php:2056 #: ../../enterprise/tools/ipam/ipam_network.php:401 #: ../../enterprise/tools/ipam/ipam_ajax.php:406 #: ../../enterprise/tools/ipam/ipam_massive.php:103 @@ -29605,8 +29464,8 @@ msgid "Not managed" msgstr "" #: ../../enterprise/include/functions_ipam.php:1579 -#: ../../enterprise/include/functions_ipam.php:1734 -#: ../../enterprise/include/functions_ipam.php:2049 +#: ../../enterprise/include/functions_ipam.php:1742 +#: ../../enterprise/include/functions_ipam.php:2057 #: ../../enterprise/tools/ipam/ipam_network.php:402 #: ../../enterprise/tools/ipam/ipam_ajax.php:432 #: ../../enterprise/tools/ipam/ipam_massive.php:103 @@ -29621,17 +29480,17 @@ msgstr "" msgid "Occupancy statistics" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1646 +#: ../../enterprise/include/functions_ipam.php:1654 msgid "DESC" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1647 +#: ../../enterprise/include/functions_ipam.php:1655 msgid "ASC" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1648 -#: ../../enterprise/include/functions_ipam.php:1649 -#: ../../enterprise/include/functions_ipam.php:2043 +#: ../../enterprise/include/functions_ipam.php:1656 +#: ../../enterprise/include/functions_ipam.php:1657 +#: ../../enterprise/include/functions_ipam.php:2051 #: ../../enterprise/tools/ipam/ipam_network.php:397 #: ../../enterprise/tools/ipam/ipam_ajax.php:364 #: ../../include/class/Diagnostics.class.php:735 @@ -29639,179 +29498,179 @@ msgstr "" msgid "Hostname" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1648 +#: ../../enterprise/include/functions_ipam.php:1656 msgid "A -> Z" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1649 +#: ../../enterprise/include/functions_ipam.php:1657 msgid "Z -> A" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1650 -#: ../../enterprise/include/functions_ipam.php:1651 +#: ../../enterprise/include/functions_ipam.php:1658 +#: ../../enterprise/include/functions_ipam.php:1659 msgid "Last check" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1650 +#: ../../enterprise/include/functions_ipam.php:1658 msgid "Newer -> Older" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1651 +#: ../../enterprise/include/functions_ipam.php:1659 msgid "Older -> Newer" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1678 +#: ../../enterprise/include/functions_ipam.php:1686 msgid "Exact address match" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1682 +#: ../../enterprise/include/functions_ipam.php:1690 msgid "S.O" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1695 +#: ../../enterprise/include/functions_ipam.php:1703 msgid "Big" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1696 +#: ../../enterprise/include/functions_ipam.php:1704 msgid "Tiny" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1697 +#: ../../enterprise/include/functions_ipam.php:1705 msgid "Icons style" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1714 +#: ../../enterprise/include/functions_ipam.php:1722 msgid "Show not alive hosts" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1722 +#: ../../enterprise/include/functions_ipam.php:1730 msgid "Show only managed addresses" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1730 +#: ../../enterprise/include/functions_ipam.php:1738 msgid "Reserved addresses" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1735 +#: ../../enterprise/include/functions_ipam.php:1743 msgid "Unreserved" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1745 +#: ../../enterprise/include/functions_ipam.php:1753 msgid "Last Contact" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1788 +#: ../../enterprise/include/functions_ipam.php:1796 msgid "Filter options" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1985 +#: ../../enterprise/include/functions_ipam.php:1993 msgid "id Network" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1990 +#: ../../enterprise/include/functions_ipam.php:1998 msgid "ID recon task" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1991 +#: ../../enterprise/include/functions_ipam.php:1999 msgid "Scan Interval" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1992 +#: ../../enterprise/include/functions_ipam.php:2000 msgid "Users Operator" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1993 +#: ../../enterprise/include/functions_ipam.php:2001 msgid "Total Ips" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1994 +#: ../../enterprise/include/functions_ipam.php:2002 msgid "Last Update" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1996 +#: ../../enterprise/include/functions_ipam.php:2004 #: ../../enterprise/tools/ipam/ipam_excel.php:143 #: ../../enterprise/tools/ipam/ipam_excel.php:211 msgid "Alive IPs" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1997 +#: ../../enterprise/include/functions_ipam.php:2005 #: ../../enterprise/tools/ipam/ipam_excel.php:144 #: ../../enterprise/tools/ipam/ipam_excel.php:212 msgid "Occupied %" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1998 +#: ../../enterprise/include/functions_ipam.php:2006 #: ../../enterprise/tools/ipam/ipam_excel.php:145 #: ../../enterprise/tools/ipam/ipam_excel.php:213 msgid "Available %" msgstr "" -#: ../../enterprise/include/functions_ipam.php:1999 +#: ../../enterprise/include/functions_ipam.php:2007 #: ../../enterprise/tools/ipam/ipam_excel.php:146 #: ../../enterprise/tools/ipam/ipam_excel.php:214 msgid "Managed IPs" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2000 +#: ../../enterprise/include/functions_ipam.php:2008 #: ../../enterprise/tools/ipam/ipam_excel.php:147 #: ../../enterprise/tools/ipam/ipam_excel.php:215 msgid "Managed %" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2001 +#: ../../enterprise/include/functions_ipam.php:2009 #: ../../enterprise/tools/ipam/ipam_excel.php:148 #: ../../enterprise/tools/ipam/ipam_excel.php:216 msgid "Unmanaged %" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2002 +#: ../../enterprise/include/functions_ipam.php:2010 #: ../../enterprise/tools/ipam/ipam_excel.php:149 #: ../../enterprise/tools/ipam/ipam_excel.php:217 msgid "Reserved IPs" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2003 +#: ../../enterprise/include/functions_ipam.php:2011 #: ../../enterprise/tools/ipam/ipam_excel.php:150 #: ../../enterprise/tools/ipam/ipam_excel.php:218 msgid "Reserved %" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2004 +#: ../../enterprise/include/functions_ipam.php:2012 #: ../../enterprise/tools/ipam/ipam_excel.php:151 #: ../../enterprise/tools/ipam/ipam_excel.php:219 msgid "Not reserved %" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2047 +#: ../../enterprise/include/functions_ipam.php:2055 msgid "OS Name" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2050 +#: ../../enterprise/include/functions_ipam.php:2058 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 msgid "Created at" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2051 +#: ../../enterprise/include/functions_ipam.php:2059 msgid "Last updated" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2052 +#: ../../enterprise/include/functions_ipam.php:2060 msgid "Last modified" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2053 +#: ../../enterprise/include/functions_ipam.php:2061 msgid "Dhcp Leased" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2054 +#: ../../enterprise/include/functions_ipam.php:2062 msgid "Dhcp Leased Mode" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2055 +#: ../../enterprise/include/functions_ipam.php:2063 msgid "Dhcp Leased Expiration" msgstr "" -#: ../../enterprise/include/functions_ipam.php:2056 +#: ../../enterprise/include/functions_ipam.php:2064 msgid "Mac address" msgstr "" @@ -29881,21 +29740,21 @@ msgid "Module will be unlinked in the next application" msgstr "" #: ../../enterprise/include/functions_policies.php:3738 -#: ../../godmode/agentes/configurar_agente.php:550 -#: ../../godmode/agentes/configurar_agente.php:771 +#: ../../godmode/agentes/configurar_agente.php:563 +#: ../../godmode/agentes/configurar_agente.php:784 #: ../../godmode/setup/snmp_wizard.php:31 msgid "SNMP Wizard" msgstr "" #: ../../enterprise/include/functions_policies.php:3741 -#: ../../godmode/agentes/configurar_agente.php:560 -#: ../../godmode/agentes/configurar_agente.php:777 +#: ../../godmode/agentes/configurar_agente.php:573 +#: ../../godmode/agentes/configurar_agente.php:790 msgid "SNMP Interfaces wizard" msgstr "" #: ../../enterprise/include/functions_policies.php:3744 -#: ../../godmode/agentes/configurar_agente.php:570 -#: ../../godmode/agentes/configurar_agente.php:783 +#: ../../godmode/agentes/configurar_agente.php:583 +#: ../../godmode/agentes/configurar_agente.php:796 msgid "WMI Wizard" msgstr "" @@ -29963,14 +29822,14 @@ msgstr "" msgid "Copy of" msgstr "" -#: ../../enterprise/include/functions_ux_console.php:507 +#: ../../enterprise/include/functions_ux_console.php:517 #: ../../enterprise/operation/agentes/tag_view.php:901 #: ../../enterprise/operation/agentes/tag_view.php:911 #: ../../enterprise/operation/agentes/ux_console_view.php:102 #: ../../enterprise/operation/agentes/ux_console_view.php:297 -#: ../../enterprise/operation/agentes/ux_console_view.php:377 -#: ../../enterprise/operation/agentes/wux_console_view.php:352 -#: ../../include/functions_ui.php:6318 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:337 +#: ../../include/functions_ui.php:6322 msgid "Snapshot view" msgstr "" @@ -30046,8 +29905,8 @@ msgstr "" #: ../../include/functions_agents.php:2944 #: ../../include/functions_agents.php:2955 ../../include/functions_ui.php:1259 #: ../../include/class/AgentsAlerts.class.php:943 -#: ../../include/class/SnmpConsole.class.php:876 -#: ../../include/functions_reporting.php:12590 +#: ../../include/class/SnmpConsole.class.php:877 +#: ../../include/functions_reporting.php:12876 msgid "Alert not fired" msgstr "" @@ -30081,7 +29940,7 @@ msgid "(Adopted) (Unlinked)" msgstr "" #: ../../enterprise/operation/agentes/policy_view.php:457 -#: ../../godmode/agentes/module_manager.php:1146 +#: ../../godmode/agentes/module_manager.php:1147 msgid "Non initialized module" msgstr "" @@ -30109,9 +29968,9 @@ msgstr "" #: ../../operation/agentes/status_monitor.php:1717 #: ../../operation/agentes/status_monitor.php:1727 #: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 -#: ../../operation/agentes/pandora_networkmap.view.php:1824 -#: ../../operation/agentes/pandora_networkmap.view.php:1829 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:141 #: ../../operation/search_modules.php:149 #: ../../operation/search_modules.php:157 @@ -30119,7 +29978,7 @@ msgid "Last status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:41 -#: ../../enterprise/operation/menu.php:174 +#: ../../enterprise/operation/menu.php:161 msgid "Tag view" msgstr "" @@ -30134,7 +29993,7 @@ msgstr "" #: ../../operation/agentes/interface_view.php:76 #: ../../operation/agentes/status_monitor.php:108 #: ../../operation/agentes/group_view.php:102 -#: ../../operation/agentes/tactical.php:82 ../../operation/menu.php:39 +#: ../../operation/agentes/tactical.php:83 ../../operation/menu.php:39 msgid "Views" msgstr "" @@ -30233,6 +30092,18 @@ msgstr "" msgid "Agent custom fields" msgstr "" +#: ../../enterprise/operation/agentes/tag_view.php:578 +#: ../../enterprise/operation/services/services.treeview_services.php:255 +#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 +#: ../../godmode/groups/group_list.php:1039 +#: ../../include/functions_inventory.php:301 +#: ../../include/class/Heatmap.class.php:820 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 +#: ../../operation/tree.php:415 ../../operation/tree.php:446 +#: ../../operation/network/network_report.php:317 +msgid "No data found" +msgstr "" + #: ../../enterprise/operation/agentes/tag_view.php:647 #: ../../operation/agentes/estado_agente.php:894 msgid "Remote config" @@ -30248,7 +30119,7 @@ msgstr "" #: ../../include/ajax/module.php:996 #: ../../include/class/NetworkMap.class.php:3041 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4332 +#: ../../include/functions_events.php:4311 #: ../../operation/agentes/status_monitor.php:1359 #: ../../operation/search_modules.php:37 msgid "Graph" @@ -30257,7 +30128,7 @@ msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:683 #: ../../godmode/agentes/status_monitor_custom_fields.php:109 #: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/agentes/module_manager.php:906 +#: ../../godmode/agentes/module_manager.php:907 #: ../../operation/agentes/status_monitor.php:1364 msgid "Warn" msgstr "" @@ -30266,7 +30137,7 @@ msgstr "" #: ../../mobile/operation/modules.php:542 #: ../../mobile/operation/modules.php:605 #: ../../include/functions_modules.php:2874 -#: ../../include/functions_modules.php:4136 +#: ../../include/functions_modules.php:4211 #: ../../include/functions_events.php:70 #: ../../operation/agentes/status_monitor.php:1585 #: ../../operation/search_modules.php:108 ../../operation/events/events.php:716 @@ -30274,74 +30145,74 @@ msgid "NOT INIT" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1103 -#: ../../include/functions_reporting.php:12712 -#: ../../include/functions_reporting.php:12721 +#: ../../include/functions_reporting.php:12998 +#: ../../include/functions_reporting.php:13007 #, php-format msgid "%d Total modules" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1104 -#: ../../include/functions_reporting.php:12713 +#: ../../include/functions_reporting.php:12999 #, php-format msgid "%d Modules in normal status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1105 -#: ../../include/functions_reporting.php:12714 +#: ../../include/functions_reporting.php:13000 #, php-format msgid "%d Modules in critical status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1106 -#: ../../include/functions_reporting.php:12715 +#: ../../include/functions_reporting.php:13001 #, php-format msgid "%d Modules in warning status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1107 -#: ../../include/functions_reporting.php:12716 +#: ../../include/functions_reporting.php:13002 #, php-format msgid "%d Modules in unknown status" msgstr "" #: ../../enterprise/operation/agentes/tag_view.php:1108 -#: ../../include/functions_reporting.php:12717 +#: ../../include/functions_reporting.php:13003 #, php-format msgid "%d Modules in not init status" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:72 -#: ../../operation/agentes/ver_agente.php:1029 +#: ../../operation/agentes/ver_agente.php:1035 msgid "Main IP" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:78 -#: ../../include/functions_events.php:4259 -#: ../../operation/agentes/ver_agente.php:1041 +#: ../../include/functions_events.php:4238 +#: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:122 -#: ../../operation/agentes/ver_agente.php:1086 +#: ../../operation/agentes/ver_agente.php:1092 msgid "Monitors down" msgstr "" #: ../../enterprise/operation/agentes/ver_agente.php:164 #: ../../mobile/operation/groups.php:174 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 -#: ../../operation/agentes/ver_agente.php:1127 +#: ../../operation/agentes/ver_agente.php:1133 msgid "Alerts fired" msgstr "" -#: ../../enterprise/operation/agentes/ver_agente.php:258 +#: ../../enterprise/operation/agentes/ver_agente.php:235 msgid "URL Route Analyzer" msgstr "" -#: ../../enterprise/operation/agentes/ver_agente.php:274 +#: ../../enterprise/operation/agentes/ver_agente.php:251 msgid "UX Console" msgstr "" -#: ../../enterprise/operation/agentes/ver_agente.php:290 +#: ../../enterprise/operation/agentes/ver_agente.php:267 msgid "WUX Console" msgstr "" @@ -30357,15 +30228,6 @@ msgstr "" msgid "Route not found" msgstr "" -#: ../../enterprise/operation/agentes/agent_inventory.php:73 -msgid "This agent has not modules inventory" -msgstr "" - -#: ../../enterprise/operation/agentes/agent_inventory.php:193 -#: ../../enterprise/operation/agentes/agent_inventory.php:194 -msgid "Diff view" -msgstr "" - #: ../../enterprise/operation/agentes/ux_console_view.php:43 msgid "No ux transaction selected." msgstr "" @@ -30375,12 +30237,12 @@ msgid "No ux transactions found." msgstr "" #: ../../enterprise/operation/agentes/ux_console_view.php:133 -#: ../../enterprise/operation/agentes/wux_console_view.php:261 +#: ../../enterprise/operation/agentes/wux_console_view.php:246 msgid "Transaction" msgstr "" #: ../../enterprise/operation/agentes/ux_console_view.php:142 -#: ../../enterprise/operation/agentes/wux_console_view.php:286 +#: ../../enterprise/operation/agentes/wux_console_view.php:271 msgid "Show transaction" msgstr "" @@ -30389,12 +30251,12 @@ msgid "Execution results for transaction " msgstr "" #: ../../enterprise/operation/agentes/ux_console_view.php:266 -#: ../../enterprise/operation/agentes/wux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:317 msgid "Global results" msgstr "" -#: ../../enterprise/operation/agentes/ux_console_view.php:332 -#: ../../enterprise/operation/agentes/wux_console_view.php:570 +#: ../../enterprise/operation/agentes/ux_console_view.php:339 +#: ../../enterprise/operation/agentes/wux_console_view.php:545 msgid "Transaction history" msgstr "" @@ -30408,63 +30270,63 @@ msgstr "" msgid "Phase modules not found" msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:224 +#: ../../enterprise/operation/agentes/wux_console_view.php:209 msgid "Selected transaction has no stats" msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:242 +#: ../../enterprise/operation/agentes/wux_console_view.php:227 msgid "No WUX transactions found." msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:357 +#: ../../enterprise/operation/agentes/wux_console_view.php:342 msgid "Failed: " msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:357 -#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../enterprise/operation/agentes/wux_console_view.php:342 +#: ../../enterprise/operation/agentes/wux_console_view.php:363 #: ../../godmode/setup/performance.php:188 #: ../../godmode/setup/performance.php:243 ../../general/logon_ok.php:193 msgid "ago" msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:369 -#: ../../enterprise/operation/agentes/wux_console_view.php:373 +#: ../../enterprise/operation/agentes/wux_console_view.php:354 +#: ../../enterprise/operation/agentes/wux_console_view.php:358 #: ../../include/functions_alerts.php:681 msgid "Unknown status" msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../enterprise/operation/agentes/wux_console_view.php:363 msgid "Success: " msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:369 msgid "Total transaction time: " msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:398 +#: ../../enterprise/operation/agentes/wux_console_view.php:383 #, php-format msgid "Execution results for transaction %s" msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:527 +#: ../../enterprise/operation/agentes/wux_console_view.php:503 msgid "View all stats" msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:595 -#: ../../include/class/SnmpConsole.class.php:923 -#: ../../include/class/SnmpConsole.class.php:924 ../../operation/menu.php:250 -#: ../../operation/menu.php:252 ../../operation/events/events.php:560 +#: ../../enterprise/operation/agentes/wux_console_view.php:570 +#: ../../include/class/SnmpConsole.class.php:924 +#: ../../include/class/SnmpConsole.class.php:925 ../../operation/menu.php:254 +#: ../../operation/menu.php:256 ../../operation/events/events.php:560 #: ../../operation/events/events.php:825 msgid "Show more" msgstr "" -#: ../../enterprise/operation/agentes/wux_console_view.php:611 +#: ../../enterprise/operation/agentes/wux_console_view.php:586 msgid "Invalid transaction." msgstr "" #: ../../enterprise/operation/log/elasticsearch_interface.php:39 #: ../../enterprise/operation/log/log_viewer.php:392 -#: ../../enterprise/operation/menu.php:194 +#: ../../enterprise/operation/menu.php:181 msgid "Elasticsearch Interface" msgstr "" @@ -30483,6 +30345,14 @@ msgstr "" msgid "Log sources" msgstr "" +#: ../../enterprise/operation/log/log_viewer.php:459 +#: ../../godmode/modules/manage_inventory_modules.php:72 +#: ../../godmode/modules/manage_inventory_modules_form.php:48 +#: ../../godmode/netflow/nf_edit.php:47 +#: ../../operation/netflow/nf_live_view.php:141 +msgid "Not supported in Windows systems" +msgstr "" + #: ../../enterprise/operation/log/log_viewer.php:479 msgid "All words" msgstr "" @@ -30597,42 +30467,16 @@ msgstr "" msgid "Error update model" msgstr "" -#: ../../enterprise/operation/menu.php:32 ../../operation/menu.php:151 +#: ../../enterprise/operation/menu.php:19 ../../operation/menu.php:155 msgid "Cluster View" msgstr "" -#: ../../enterprise/operation/menu.php:61 -#: ../../operation/agentes/ver_agente.php:1695 -#: ../../operation/agentes/ver_agente.php:1894 +#: ../../enterprise/operation/menu.php:48 +#: ../../operation/agentes/ver_agente.php:1713 +#: ../../operation/agentes/ver_agente.php:1912 msgid "SAP view" msgstr "" -#: ../../enterprise/operation/inventory/inventory.php:203 -#: ../../include/chart_generator.php:125 -#: ../../operation/agentes/stat_win.php:51 -#: ../../operation/agentes/stat_win.php:176 -#: ../../operation/agentes/realtime_win.php:51 -#: ../../operation/agentes/interface_traffic_graph_win.php:54 -msgid "There was a problem connecting with the node" -msgstr "" - -#: ../../enterprise/operation/inventory/inventory.php:289 -msgid "You must select at least one filter." -msgstr "" - -#: ../../enterprise/operation/inventory/inventory.php:434 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2193 -msgid "Last" -msgstr "" - -#: ../../enterprise/operation/inventory/inventory.php:438 -msgid "Order by agent" -msgstr "" - -#: ../../enterprise/operation/inventory/inventory.php:482 -msgid "Export this list to CSV" -msgstr "" - #: ../../enterprise/operation/services/services.service.php:63 #: ../../enterprise/operation/services/services.service_map.php:78 #: ../../include/lib/Dashboard/Widgets/service_map.php:192 @@ -30782,7 +30626,7 @@ msgstr "" #: ../../enterprise/operation/services/massive/service.create.elements.php:531 #: ../../enterprise/operation/services/massive/service.edit.elements.php:294 #: ../../include/functions_visual_map_editor.php:1148 -#: ../../include/rest-api/models/VisualConsole/Item.php:2527 +#: ../../include/rest-api/models/VisualConsole/Item.php:2528 msgid "Critical weight" msgstr "" @@ -30790,7 +30634,7 @@ msgstr "" #: ../../enterprise/operation/services/massive/service.create.elements.php:544 #: ../../enterprise/operation/services/massive/service.edit.elements.php:307 #: ../../include/functions_visual_map_editor.php:1174 -#: ../../include/rest-api/models/VisualConsole/Item.php:2541 +#: ../../include/rest-api/models/VisualConsole/Item.php:2542 msgid "Warning weight" msgstr "" @@ -30977,7 +30821,7 @@ msgid "Create Service" msgstr "" #: ../../enterprise/operation/services/services.treeview_services.php:256 -#: ../../godmode/groups/group_list.php:1035 +#: ../../godmode/groups/group_list.php:1040 msgid "Found groups" msgstr "" @@ -31033,7 +30877,7 @@ msgid "Config" msgstr "" #: ../../enterprise/operation/services/services.table_services.php:45 -#: ../../godmode/groups/group_list.php:355 +#: ../../godmode/groups/group_list.php:360 msgid "Table view" msgstr "" @@ -31127,7 +30971,7 @@ msgstr "" msgid "Operation View" msgstr "" -#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:396 +#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:399 #: ../../godmode/setup/file_manager.php:56 msgid "Admin tools" msgstr "" @@ -31454,7 +31298,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410 #: ../../operation/agentes/interface_view.functions.php:93 #: ../../operation/agentes/interface_view.functions.php:131 -#: ../../operation/agentes/ver_agente.php:1422 +#: ../../operation/agentes/ver_agente.php:1428 msgid "Interfaces" msgstr "" @@ -31535,7 +31379,7 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1652 +#: ../../operation/agentes/pandora_networkmap.view.php:1656 msgid "Could not be updated." msgstr "" @@ -31546,7 +31390,7 @@ msgid "Successfully updated." msgstr "" #: ../../enterprise/tools/ipam/ipam_action.php:456 -#: ../../include/functions_reporting.php:2880 +#: ../../include/functions_reporting.php:2998 msgid "No changes found." msgstr "" @@ -31558,7 +31402,7 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 #: ../../godmode/modules/manage_nc_groups.php:119 #: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:108 -#: ../../godmode/events/event_edit_filter.php:233 +#: ../../godmode/events/event_edit_filter.php:243 msgid "Not updated. Error updating data" msgstr "" @@ -31650,7 +31494,7 @@ msgid "Executing command: %s" msgstr "" #: ../../enterprise/tools/ipam/ipam_ajax.php:551 -#: ../../include/functions_events.php:5730 +#: ../../include/functions_events.php:5743 msgid "Execute again" msgstr "" @@ -32015,7 +31859,7 @@ msgid "Visit our privacy policy for more information" msgstr "" #: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1913 +#: ../../include/class/Diagnostics.class.php:1918 msgid "Your email" msgstr "" @@ -32421,65 +32265,77 @@ msgid "" "Library/\">Public Resource Library" msgstr "" -#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248 +#: ../../extensions/api_checker.php:190 ../../extensions/api_checker.php:332 msgid "API checker" msgstr "" -#: ../../extensions/api_checker.php:128 +#: ../../extensions/api_checker.php:207 #, php-format msgid "%s Console URL" msgstr "" -#: ../../extensions/api_checker.php:133 +#: ../../extensions/api_checker.php:212 +#: ../../godmode/users/configure_user.php:1049 +#: ../../godmode/users/configure_user.php:1075 +#: ../../operation/users/user_edit.php:271 +#: ../../operation/users/user_edit.php:310 +msgid "API Token" +msgstr "" + +#: ../../extensions/api_checker.php:212 +msgid "Use API Token instead API Pass, User and Password." +msgstr "" + +#: ../../extensions/api_checker.php:217 msgid "API Pass" msgstr "" -#: ../../extensions/api_checker.php:151 +#: ../../extensions/api_checker.php:235 msgid "Action (get or set)" msgstr "" -#: ../../extensions/api_checker.php:166 +#: ../../extensions/api_checker.php:250 msgid "ID 2" msgstr "" -#: ../../extensions/api_checker.php:171 +#: ../../extensions/api_checker.php:255 msgid "Return Type" msgstr "" -#: ../../extensions/api_checker.php:181 +#: ../../extensions/api_checker.php:265 msgid "Other Mode" msgstr "" -#: ../../extensions/api_checker.php:189 +#: ../../extensions/api_checker.php:273 msgid "Raw URL" msgstr "" -#: ../../extensions/api_checker.php:200 +#: ../../extensions/api_checker.php:284 msgid "Call parameters" msgstr "" -#: ../../extensions/api_checker.php:200 +#: ../../extensions/api_checker.php:284 msgid "Action: get Operation: module_last_value id: 63" msgstr "" -#: ../../extensions/api_checker.php:207 +#: ../../extensions/api_checker.php:291 msgid "Custom URL" msgstr "" -#: ../../extensions/api_checker.php:213 +#: ../../extensions/api_checker.php:297 msgid "Call" msgstr "" -#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239 +#: ../../extensions/api_checker.php:306 ../../extensions/api_checker.php:323 msgid "Show URL" msgstr "" -#: ../../extensions/api_checker.php:235 +#: ../../extensions/api_checker.php:319 msgid "Hide URL" msgstr "" #: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 -#: ../../godmode/menu.php:453 +#: ../../godmode/menu.php:456 msgid "DB Schema check" msgstr "" @@ -32628,7 +32484,7 @@ msgstr "" msgid "Error querying database node" msgstr "" -#: ../../extensions/dbmanager.php:307 ../../godmode/menu.php:453 +#: ../../extensions/dbmanager.php:307 ../../godmode/menu.php:456 msgid "DB interface" msgstr "" @@ -32668,7 +32524,7 @@ msgid "Secondary groups and agent subgroups will be taken into account." msgstr "" #: ../../extensions/agents_modules.php:750 -#: ../../include/functions_reporting.php:3154 +#: ../../include/functions_reporting.php:3272 msgid "There are no agents with modules" msgstr "" @@ -32882,7 +32738,7 @@ msgstr "" msgid "There are no defined groups or module groups" msgstr "" -#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:112 +#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:113 #: ../../godmode/reporting/reporting_builder.item_editor.php:86 #: ../../include/lib/Dashboard/Widgets/tree_view.php:330 #: ../../operation/tree.php:102 @@ -33070,6 +32926,58 @@ msgstr "" msgid "There are no defined component groups" msgstr "" +#: ../../godmode/modules/manage_inventory_modules.php:40 +msgid "To manage inventory plugin you must activate centralized management" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules.php:121 +msgid "Successfully created inventory module" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules.php:122 +msgid "Error creating inventory module" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules.php:168 +#: ../../godmode/modules/manage_inventory_modules.php:189 +#: ../../godmode/agentes/inventory_manager.php:100 +msgid "Successfully deleted inventory module" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules.php:169 +#: ../../godmode/modules/manage_inventory_modules.php:190 +#: ../../godmode/agentes/inventory_manager.php:102 +msgid "Error deleting inventory module" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules.php:281 +#: ../../godmode/modules/manage_inventory_modules_form.php:118 +msgid "Interpreter" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules.php:290 +msgid "No inventory modules defined" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules.php:311 +msgid "Local module" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules.php:313 +msgid "Remote/Local" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules.php:359 +msgid "" +"The configurations of inventory modules from the nodes have been unified.\n" +"\t\tFrom this point on, changes to the inventory scripts must be made " +"through this screen." +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules.php:361 +msgid "You can find more information at:" +msgstr "" + #: ../../godmode/modules/manage_network_components_form_common.php:723 #: ../../godmode/agentes/module_manager_editor_common.php:2014 msgid "Please introduce a positive percentage value" @@ -33257,6 +33165,56 @@ msgstr "" msgid "Field value" msgstr "" +#: ../../godmode/modules/manage_inventory_modules_form.php:75 +#: ../../godmode/agentes/inventory_manager.php:165 +msgid "Inventory module error" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules_form.php:120 +msgid "Left blank for the LOCAL inventory modules" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules_form.php:122 +msgid "Block Mode" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules_form.php:125 +#: ../../godmode/massive/massive_standby_alerts.php:224 +#: ../../godmode/massive/massive_standby_alerts.php:259 +#: ../../godmode/massive/massive_enable_disable_alerts.php:196 +#: ../../godmode/massive/massive_enable_disable_alerts.php:231 +#: ../../include/class/ModuleTemplates.class.php:1209 +msgid "Format" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules_form.php:126 +msgid "separate fields with " +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules_form.php:129 +msgid "Script mode" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules_form.php:131 +msgid "Use script" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules_form.php:139 +msgid "Use inline code" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules_form.php:151 +#: ../../include/ajax/double_auth.ajax.php:149 +#: ../../include/ajax/double_auth.ajax.php:292 +msgid "Code" +msgstr "" + +#: ../../godmode/modules/manage_inventory_modules_form.php:152 +msgid "" +"Here is placed the script for the REMOTE inventory modules Local inventory " +"modules don't use this field" +msgstr "" + #: ../../godmode/modules/module_list.php:29 msgid "Defined modules" msgstr "" @@ -33304,7 +33262,7 @@ msgstr "" #: ../../godmode/db/db_main.php:108 #: ../../include/class/Diagnostics.class.php:570 -#: ../../include/functions_reporting.php:14264 +#: ../../include/functions_reporting.php:14550 msgid "Total events" msgstr "" @@ -33362,12 +33320,12 @@ msgid "Update group" msgstr "" #: ../../godmode/groups/configure_group.php:108 -#: ../../godmode/groups/group_list.php:981 +#: ../../godmode/groups/group_list.php:986 msgid "Create group" msgstr "" #: ../../godmode/groups/configure_group.php:126 -#: ../../godmode/groups/group_list.php:384 +#: ../../godmode/groups/group_list.php:389 msgid "Manage agents group" msgstr "" @@ -33400,7 +33358,7 @@ msgid "Propagate the same ACL security into the child subgroups." msgstr "" #: ../../godmode/groups/configure_group.php:246 -#: ../../include/functions_events.php:4876 +#: ../../include/functions_events.php:4855 msgid "Contact" msgstr "" @@ -33420,108 +33378,108 @@ msgstr "" msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "" -#: ../../godmode/groups/group_list.php:309 +#: ../../godmode/groups/group_list.php:314 msgid "Tree Group view" msgstr "" -#: ../../godmode/groups/group_list.php:333 +#: ../../godmode/groups/group_list.php:338 msgid "Credential Store" msgstr "" -#: ../../godmode/groups/group_list.php:339 +#: ../../godmode/groups/group_list.php:344 #, php-format msgid "Groups defined in %s" msgstr "" -#: ../../godmode/groups/group_list.php:349 +#: ../../godmode/groups/group_list.php:354 #: ../../godmode/agentes/module_manager_editor_network.php:164 -#: ../../godmode/menu.php:220 ../../include/class/AgentWizard.class.php:722 +#: ../../godmode/menu.php:223 ../../include/class/AgentWizard.class.php:722 #: ../../include/class/AgentWizard.class.php:778 msgid "Credential store" msgstr "" -#: ../../godmode/groups/group_list.php:365 +#: ../../godmode/groups/group_list.php:370 msgid "Edit or delete groups can cause problems with synchronization" msgstr "" -#: ../../godmode/groups/group_list.php:403 +#: ../../godmode/groups/group_list.php:408 #, php-format msgid "" "This node is configured with centralized mode. All groups information is " "read only. Go to %s to manage it." msgstr "" -#: ../../godmode/groups/group_list.php:468 +#: ../../godmode/groups/group_list.php:473 #: ../../godmode/groups/modu_group_list.php:119 msgid "Group successfully created" msgstr "" -#: ../../godmode/groups/group_list.php:470 +#: ../../godmode/groups/group_list.php:475 #: ../../godmode/groups/modu_group_list.php:122 msgid "There was a problem creating group" msgstr "" -#: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:478 +#: ../../godmode/groups/group_list.php:550 msgid "Each group must have a different name" msgstr "" -#: ../../godmode/groups/group_list.php:476 -#: ../../godmode/groups/group_list.php:548 +#: ../../godmode/groups/group_list.php:481 +#: ../../godmode/groups/group_list.php:553 msgid "Group must have a name" msgstr "" -#: ../../godmode/groups/group_list.php:540 +#: ../../godmode/groups/group_list.php:545 #: ../../godmode/groups/modu_group_list.php:155 msgid "Group successfully updated" msgstr "" -#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/group_list.php:547 #: ../../godmode/groups/modu_group_list.php:158 msgid "There was a problem modifying group" msgstr "" -#: ../../godmode/groups/group_list.php:605 +#: ../../godmode/groups/group_list.php:610 #, php-format msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "" -#: ../../godmode/groups/group_list.php:679 +#: ../../godmode/groups/group_list.php:684 msgid "" "The group has not been deleted in the metaconsole due to an error in the " "node database" msgstr "" -#: ../../godmode/groups/group_list.php:688 +#: ../../godmode/groups/group_list.php:693 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "" -#: ../../godmode/groups/group_list.php:720 +#: ../../godmode/groups/group_list.php:725 #: ../../godmode/groups/modu_group_list.php:229 msgid "Group successfully deleted" msgstr "" -#: ../../godmode/groups/group_list.php:723 +#: ../../godmode/groups/group_list.php:728 #: ../../godmode/groups/modu_group_list.php:227 msgid "There was a problem deleting group" msgstr "" -#: ../../godmode/groups/group_list.php:730 +#: ../../godmode/groups/group_list.php:735 #, php-format msgid "The group is not empty. It is use in %s." msgstr "" -#: ../../godmode/groups/group_list.php:775 -#: ../../godmode/groups/group_list.php:969 +#: ../../godmode/groups/group_list.php:780 +#: ../../godmode/groups/group_list.php:974 msgid "There are no defined groups" msgstr "" -#: ../../godmode/groups/group_list.php:924 +#: ../../godmode/groups/group_list.php:929 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "" -#: ../../godmode/groups/group_list.php:930 +#: ../../godmode/groups/group_list.php:935 msgid "" "The child groups will be updated to use the parent id of the deleted group" msgstr "" @@ -33823,6 +33781,7 @@ msgid "Manage NCM" msgstr "" #: ../../godmode/users/configure_profile.php:378 +#: ../../godmode/users/configure_user.php:321 msgid "Manage users" msgstr "" @@ -33835,30 +33794,34 @@ msgstr "" msgid "%s management" msgstr "" +#: ../../godmode/users/configure_profile.php:454 +msgid "Profile name already on use, please, change the name before save" +msgstr "" + #: ../../godmode/users/user_list.php:289 #, php-format msgid "Users defined on %s" msgstr "" #: ../../godmode/users/user_list.php:338 -#: ../../godmode/users/configure_user.php:166 +#: ../../godmode/users/configure_user.php:162 #, php-format msgid "Deleted user %s" msgstr "" #: ../../godmode/users/user_list.php:345 ../../godmode/users/user_list.php:389 -#: ../../godmode/users/configure_user.php:173 +#: ../../godmode/users/configure_user.php:169 msgid "There was a problem deleting the user" msgstr "" #: ../../godmode/users/user_list.php:363 -#: ../../godmode/users/configure_user.php:188 +#: ../../godmode/users/configure_user.php:184 #, php-format msgid "Deleted user %s from metaconsole" msgstr "" #: ../../godmode/users/user_list.php:375 -#: ../../godmode/users/configure_user.php:199 +#: ../../godmode/users/configure_user.php:196 #, php-format msgid "Deleted user %s from %s" msgstr "" @@ -33888,7 +33851,7 @@ msgid "There was a problem enabling user" msgstr "" #: ../../godmode/users/user_list.php:492 -#: ../../operation/users/user_edit.php:254 +#: ../../operation/users/user_edit.php:261 #, php-format msgid "" "This node is configured with centralized mode. All users information is read " @@ -33918,341 +33881,370 @@ msgid "" msgstr "" #: ../../godmode/users/user_list.php:783 -#: ../../include/functions_reporting.php:4773 -#: ../../include/functions_reporting.php:4820 +#: ../../include/functions_reporting.php:5036 +#: ../../include/functions_reporting.php:5083 #: ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "" #: ../../godmode/users/user_list.php:933 -#: ../../godmode/users/configure_user.php:278 +#: ../../godmode/users/configure_user.php:308 msgid "Create user" msgstr "" #: ../../godmode/users/user_list.php:936 -#: ../../godmode/users/configure_user.php:386 +#: ../../godmode/users/configure_user.php:397 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "" -#: ../../godmode/users/configure_user.php:276 +#: ../../godmode/users/configure_user.php:308 msgid "Update user" msgstr "" -#: ../../godmode/users/configure_user.php:314 -#: ../../operation/users/user_edit.php:31 -msgid "User detail editor" +#: ../../godmode/users/configure_user.php:325 +msgid "User Detail Editor" msgstr "" -#: ../../godmode/users/configure_user.php:473 +#: ../../godmode/users/configure_user.php:487 msgid "User ID cannot be empty" msgstr "" -#: ../../godmode/users/configure_user.php:480 +#: ../../godmode/users/configure_user.php:494 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "" -#: ../../godmode/users/configure_user.php:488 +#: ../../godmode/users/configure_user.php:502 msgid "Passwords cannot be empty" msgstr "" -#: ../../godmode/users/configure_user.php:495 +#: ../../godmode/users/configure_user.php:509 msgid "Passwords didn't match" msgstr "" -#: ../../godmode/users/configure_user.php:502 +#: ../../godmode/users/configure_user.php:516 msgid "The password provided is not valid. Please set another one." msgstr "" -#: ../../godmode/users/configure_user.php:564 +#: ../../godmode/users/configure_user.php:578 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." msgstr "" -#: ../../godmode/users/configure_user.php:648 -#: ../../godmode/users/configure_user.php:981 +#: ../../godmode/users/configure_user.php:662 +#: ../../godmode/users/configure_user.php:998 msgid "Profile added successfully" msgstr "" -#: ../../godmode/users/configure_user.php:649 -#: ../../godmode/users/configure_user.php:982 +#: ../../godmode/users/configure_user.php:663 +#: ../../godmode/users/configure_user.php:999 msgid "Profile cannot be added" msgstr "" -#: ../../godmode/users/configure_user.php:773 -#: ../../godmode/users/configure_user.php:797 -#: ../../godmode/users/configure_user.php:871 -#: ../../godmode/users/configure_user.php:878 -#: ../../godmode/users/configure_user.php:910 -#: ../../operation/users/user_edit.php:187 -#: ../../operation/users/user_edit.php:232 +#: ../../godmode/users/configure_user.php:790 +#: ../../godmode/users/configure_user.php:814 +#: ../../godmode/users/configure_user.php:888 +#: ../../godmode/users/configure_user.php:895 +#: ../../godmode/users/configure_user.php:927 +#: ../../operation/users/user_edit.php:193 +#: ../../operation/users/user_edit.php:239 msgid "User info successfully updated" msgstr "" -#: ../../godmode/users/configure_user.php:774 -#: ../../godmode/users/configure_user.php:798 -#: ../../godmode/users/configure_user.php:872 -#: ../../godmode/users/configure_user.php:879 -#: ../../godmode/users/configure_user.php:911 +#: ../../godmode/users/configure_user.php:791 +#: ../../godmode/users/configure_user.php:815 +#: ../../godmode/users/configure_user.php:889 +#: ../../godmode/users/configure_user.php:896 +#: ../../godmode/users/configure_user.php:928 msgid "Error updating user info (no change?)" msgstr "" -#: ../../godmode/users/configure_user.php:803 +#: ../../godmode/users/configure_user.php:820 msgid "Password of the active user is required to perform password change" msgstr "" -#: ../../godmode/users/configure_user.php:805 +#: ../../godmode/users/configure_user.php:822 msgid "Password of active user is not correct" msgstr "" -#: ../../godmode/users/configure_user.php:821 +#: ../../godmode/users/configure_user.php:838 msgid "Passwords does not match" msgstr "" -#: ../../godmode/users/configure_user.php:900 +#: ../../godmode/users/configure_user.php:888 +#: ../../operation/users/user_edit.php:191 +msgid "You have generated a new API Token." +msgstr "" + +#: ../../godmode/users/configure_user.php:917 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "" -#: ../../godmode/users/configure_user.php:1022 +#: ../../godmode/users/configure_user.php:1039 msgid "Update User" msgstr "" -#: ../../godmode/users/configure_user.php:1022 +#: ../../godmode/users/configure_user.php:1039 msgid "Create User" msgstr "" -#: ../../godmode/users/configure_user.php:1075 -#: ../../operation/users/user_edit.php:275 +#: ../../godmode/users/configure_user.php:1055 +#: ../../operation/users/user_edit.php:278 +msgid "" +"The API token will be renewed. After this action, the last token you were " +"using will not work. Are you sure?" +msgstr "" + +#: ../../godmode/users/configure_user.php:1063 +#: ../../operation/users/user_edit.php:286 +msgid "Renew API Token" +msgstr "" + +#: ../../godmode/users/configure_user.php:1076 +#: ../../operation/users/user_edit.php:311 +msgid "Your API Token is:" +msgstr "" + +#: ../../godmode/users/configure_user.php:1076 +#: ../../operation/users/user_edit.php:311 +msgid "Please, avoid share this string with others." +msgstr "" + +#: ../../godmode/users/configure_user.php:1083 +#: ../../operation/users/user_edit.php:318 +msgid "Show API Token" +msgstr "" + +#: ../../godmode/users/configure_user.php:1134 +#: ../../operation/users/user_edit.php:349 msgid "Full (display) name" msgstr "" -#: ../../godmode/users/configure_user.php:1092 +#: ../../godmode/users/configure_user.php:1151 #: ../../godmode/massive/massive_edit_users.php:470 -#: ../../operation/users/user_edit.php:422 +#: ../../operation/users/user_edit.php:496 msgid "Timezone" msgstr "" -#: ../../godmode/users/configure_user.php:1093 +#: ../../godmode/users/configure_user.php:1152 #: ../../godmode/massive/massive_edit_users.php:470 -#: ../../operation/users/user_edit.php:422 +#: ../../operation/users/user_edit.php:496 msgid "The timezone must be that of the associated server." msgstr "" -#: ../../godmode/users/configure_user.php:1126 -#: ../../operation/users/user_edit.php:302 +#: ../../godmode/users/configure_user.php:1185 +#: ../../operation/users/user_edit.php:376 msgid "Password confirmation" msgstr "" -#: ../../godmode/users/configure_user.php:1144 +#: ../../godmode/users/configure_user.php:1203 msgid "Own password confirmation" msgstr "" -#: ../../godmode/users/configure_user.php:1154 +#: ../../godmode/users/configure_user.php:1213 msgid "Administrator user" msgstr "" -#: ../../godmode/users/configure_user.php:1181 -#: ../../operation/users/user_edit.php:295 +#: ../../godmode/users/configure_user.php:1240 +#: ../../operation/users/user_edit.php:369 msgid "E-mail" msgstr "" -#: ../../godmode/users/configure_user.php:1197 -#: ../../operation/users/user_edit.php:297 +#: ../../godmode/users/configure_user.php:1256 +#: ../../operation/users/user_edit.php:371 msgid "Phone number" msgstr "" -#: ../../godmode/users/configure_user.php:1213 -#: ../../operation/users/user_edit.php:619 +#: ../../godmode/users/configure_user.php:1272 +#: ../../operation/users/user_edit.php:693 msgid "Login allowed IP list" msgstr "" -#: ../../godmode/users/configure_user.php:1214 -#: ../../operation/users/user_edit.php:620 +#: ../../godmode/users/configure_user.php:1273 +#: ../../operation/users/user_edit.php:694 msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." msgstr "" -#: ../../godmode/users/configure_user.php:1252 -#: ../../operation/users/user_edit.php:404 -#: ../../operation/users/user_edit.php:413 +#: ../../godmode/users/configure_user.php:1311 msgid "Skin" msgstr "" -#: ../../godmode/users/configure_user.php:1261 +#: ../../godmode/users/configure_user.php:1320 msgid "Search custom field view" msgstr "" -#: ../../godmode/users/configure_user.php:1261 +#: ../../godmode/users/configure_user.php:1320 msgid "Load by default the selected view in custom field view" msgstr "" -#: ../../godmode/users/configure_user.php:1278 +#: ../../godmode/users/configure_user.php:1337 msgid "Use global conf" msgstr "" -#: ../../godmode/users/configure_user.php:1283 +#: ../../godmode/users/configure_user.php:1342 #: ../../godmode/massive/massive_edit_users.php:271 -#: ../../operation/users/user_edit.php:357 +#: ../../operation/users/user_edit.php:431 msgid "Home screen" msgstr "" -#: ../../godmode/users/configure_user.php:1284 +#: ../../godmode/users/configure_user.php:1343 #: ../../godmode/massive/massive_edit_users.php:271 -#: ../../operation/users/user_edit.php:357 +#: ../../operation/users/user_edit.php:431 msgid "" "User can customize the home page. By default, will display 'Agent Detail'. " "Example: Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/" "ver_agente&id_agente=1 to show agent detail view" msgstr "" -#: ../../godmode/users/configure_user.php:1291 +#: ../../godmode/users/configure_user.php:1350 #: ../../godmode/massive/massive_edit_users.php:276 -#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:361 +#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:435 #: ../../operation/events/events.php:1438 msgid "Event list" msgstr "" -#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/configure_user.php:1353 #: ../../godmode/massive/massive_edit_users.php:279 -#: ../../operation/users/user_edit.php:364 +#: ../../operation/users/user_edit.php:438 #: ../../operation/agentes/alerts_status.php:190 ../../operation/menu.php:68 msgid "Alert detail" msgstr "" -#: ../../godmode/users/configure_user.php:1295 +#: ../../godmode/users/configure_user.php:1354 msgid "External link" msgstr "" -#: ../../godmode/users/configure_user.php:1388 +#: ../../godmode/users/configure_user.php:1447 msgid "Metaconsole access" msgstr "" -#: ../../godmode/users/configure_user.php:1406 +#: ../../godmode/users/configure_user.php:1465 msgid "Not Login" msgstr "" -#: ../../godmode/users/configure_user.php:1408 +#: ../../godmode/users/configure_user.php:1467 msgid "The user with not login set only can access to API." msgstr "" -#: ../../godmode/users/configure_user.php:1418 +#: ../../godmode/users/configure_user.php:1477 msgid "Local user" msgstr "" -#: ../../godmode/users/configure_user.php:1420 +#: ../../godmode/users/configure_user.php:1479 msgid "" "The user with local authentication enabled will always use local " "authentication." msgstr "" -#: ../../godmode/users/configure_user.php:1430 +#: ../../godmode/users/configure_user.php:1489 msgid "Session Time" msgstr "" -#: ../../godmode/users/configure_user.php:1432 +#: ../../godmode/users/configure_user.php:1491 msgid "" "This is defined in minutes, If you wish a permanent session should putting " "-1 in this field." msgstr "" -#: ../../godmode/users/configure_user.php:1466 +#: ../../godmode/users/configure_user.php:1524 msgid "Default event filter" msgstr "" -#: ../../godmode/users/configure_user.php:1480 +#: ../../godmode/users/configure_user.php:1538 msgid "eHorus user access enabled" msgstr "" -#: ../../godmode/users/configure_user.php:1488 -#: ../../include/functions_config.php:1741 +#: ../../godmode/users/configure_user.php:1546 +#: ../../include/functions_config.php:1722 msgid "eHorus user" msgstr "" -#: ../../godmode/users/configure_user.php:1497 -#: ../../include/functions_config.php:1745 +#: ../../godmode/users/configure_user.php:1555 +#: ../../include/functions_config.php:1726 msgid "eHorus password" msgstr "" -#: ../../godmode/users/configure_user.php:1520 +#: ../../godmode/users/configure_user.php:1578 msgid "User must be created before activating double authentication." msgstr "" -#: ../../godmode/users/configure_user.php:1530 -#: ../../operation/users/user_edit.php:440 +#: ../../godmode/users/configure_user.php:1588 +#: ../../operation/users/user_edit.php:514 msgid "Show information" msgstr "" -#: ../../godmode/users/configure_user.php:1548 +#: ../../godmode/users/configure_user.php:1606 msgid "Enable agents managment" msgstr "" -#: ../../godmode/users/configure_user.php:1556 +#: ../../godmode/users/configure_user.php:1614 msgid "Enable node access" msgstr "" -#: ../../godmode/users/configure_user.php:1556 +#: ../../godmode/users/configure_user.php:1614 msgid "With this option enabled, the user will can access to nodes console" msgstr "" -#: ../../godmode/users/configure_user.php:1791 +#: ../../godmode/users/configure_user.php:1854 msgid "yes" msgstr "" -#: ../../godmode/users/configure_user.php:1794 +#: ../../godmode/users/configure_user.php:1857 msgid "no" msgstr "" -#: ../../godmode/users/configure_user.php:1798 +#: ../../godmode/users/configure_user.php:1861 msgid "Please select profile and group" msgstr "" -#: ../../godmode/users/configure_user.php:1812 -#: ../../godmode/users/configure_user.php:1863 +#: ../../godmode/users/configure_user.php:1875 +#: ../../godmode/users/configure_user.php:1926 msgid "This profile is already defined" msgstr "" -#: ../../godmode/users/configure_user.php:1875 +#: ../../godmode/users/configure_user.php:1940 msgid "Deleting last profile will delete this user" msgstr "" -#: ../../godmode/users/configure_user.php:1915 +#: ../../godmode/users/configure_user.php:1980 msgid "" "User will be created without profiles assigned and won't be able to log in, " "are you sure?" msgstr "" -#: ../../godmode/users/configure_user.php:2082 -#: ../../operation/users/user_edit.php:1104 +#: ../../godmode/users/configure_user.php:2147 +#: ../../operation/users/user_edit.php:1178 msgid "Double autentication information" msgstr "" -#: ../../godmode/users/configure_user.php:2172 -#: ../../operation/users/user_edit.php:1193 +#: ../../godmode/users/configure_user.php:2237 +#: ../../operation/users/user_edit.php:1267 msgid "The double authentication will be deactivated" msgstr "" -#: ../../godmode/users/configure_user.php:2173 -#: ../../operation/users/user_edit.php:1194 +#: ../../godmode/users/configure_user.php:2238 +#: ../../operation/users/user_edit.php:1268 msgid "Deactivate" msgstr "" -#: ../../godmode/users/configure_user.php:2209 -#: ../../operation/users/user_edit.php:1226 +#: ../../godmode/users/configure_user.php:2274 +#: ../../operation/users/user_edit.php:1300 msgid "The double autentication was deactivated successfully" msgstr "" -#: ../../godmode/users/configure_user.php:2213 -#: ../../godmode/users/configure_user.php:2217 -#: ../../operation/users/user_edit.php:1229 -#: ../../operation/users/user_edit.php:1233 +#: ../../godmode/users/configure_user.php:2278 +#: ../../godmode/users/configure_user.php:2282 +#: ../../operation/users/user_edit.php:1303 +#: ../../operation/users/user_edit.php:1307 msgid "There was an error deactivating the double autentication" msgstr "" #: ../../godmode/agentes/agent_template.php:67 -#: ../../include/functions_api.php:15025 +#: ../../include/functions_api.php:15030 msgid "Created by template " msgstr "" @@ -34265,7 +34257,7 @@ msgid "Error adding modules. The following errors already exists: " msgstr "" #: ../../godmode/agentes/agent_template.php:163 -#: ../../include/functions_api.php:15119 +#: ../../include/functions_api.php:15124 msgid "Modules successfully added" msgstr "" @@ -34273,7 +34265,7 @@ msgstr "" msgid "Assign" msgstr "" -#: ../../godmode/agentes/agent_template.php:269 +#: ../../godmode/agentes/agent_template.php:270 #: ../../mobile/operation/modules.php:772 msgid "No modules" msgstr "" @@ -34355,7 +34347,7 @@ msgid "Show monitor detail fields" msgstr "" #: ../../godmode/agentes/configurar_agente.php:254 -#: ../../godmode/agentes/configurar_agente.php:1069 +#: ../../godmode/agentes/configurar_agente.php:1082 msgid "No agent alias specified" msgstr "" @@ -34371,165 +34363,165 @@ msgstr "" msgid "Could not be created, because IP already exists" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:449 ../../godmode/menu.php:173 +#: ../../godmode/agentes/configurar_agente.php:449 ../../godmode/menu.php:174 #: ../../godmode/wizards/HostDevices.class.php:1081 msgid "Module templates" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:521 -#: ../../operation/agentes/ver_agente.php:1499 +#: ../../godmode/agentes/configurar_agente.php:534 +#: ../../operation/agentes/ver_agente.php:1517 msgid "GIS data" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:593 -#: ../../godmode/agentes/configurar_agente.php:761 -#: ../../operation/agentes/ver_agente.php:1519 ../../operation/menu.php:502 +#: ../../godmode/agentes/configurar_agente.php:606 +#: ../../godmode/agentes/configurar_agente.php:774 +#: ../../operation/agentes/ver_agente.php:1537 ../../operation/menu.php:506 #: ../../operation/incidents/incident_statistics.php:21 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:756 +#: ../../godmode/agentes/configurar_agente.php:769 msgid "Gis" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:798 +#: ../../godmode/agentes/configurar_agente.php:811 msgid "SNMP explorer" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:829 -#: ../../godmode/agentes/configurar_agente.php:851 -#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:128 +#: ../../godmode/agentes/configurar_agente.php:842 +#: ../../godmode/agentes/configurar_agente.php:864 +#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:129 msgid "Resources" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:839 +#: ../../godmode/agentes/configurar_agente.php:852 msgid "Agent manager" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:879 +#: ../../godmode/agentes/configurar_agente.php:892 #: ../../godmode/servers/modificar_server.php:248 msgid "Conf file deleted successfully" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:880 +#: ../../godmode/agentes/configurar_agente.php:893 #: ../../godmode/servers/modificar_server.php:249 msgid "Could not delete conf file" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:897 -#: ../../godmode/agentes/configurar_agente.php:1064 +#: ../../godmode/agentes/configurar_agente.php:910 +#: ../../godmode/agentes/configurar_agente.php:1077 #: ../../include/class/ExternalTools.class.php:756 msgid "The ip or dns name entered cannot be resolved" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:924 -#: ../../godmode/agentes/configurar_agente.php:928 +#: ../../godmode/agentes/configurar_agente.php:937 +#: ../../godmode/agentes/configurar_agente.php:941 msgid "No data to normalize" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:933 +#: ../../godmode/agentes/configurar_agente.php:946 #, php-format msgid "Deleted data above %f" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:934 +#: ../../godmode/agentes/configurar_agente.php:947 #, php-format msgid "Error normalizing module %s" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1080 +#: ../../godmode/agentes/configurar_agente.php:1093 #, php-format msgid "The group id %d is incorrect." msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1082 +#: ../../godmode/agentes/configurar_agente.php:1095 msgid "Agent cannot be updated due to the maximum agent limit for this group" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1084 +#: ../../godmode/agentes/configurar_agente.php:1097 msgid "Duplicate main IP address" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1138 +#: ../../godmode/agentes/configurar_agente.php:1151 msgid "There was a problem updating the agent" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1231 +#: ../../godmode/agentes/configurar_agente.php:1244 msgid "There was a problem loading the agent" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1745 +#: ../../godmode/agentes/configurar_agente.php:1758 msgid "" "There was a problem updating module. Another module already exists with the " "same name." msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1749 +#: ../../godmode/agentes/configurar_agente.php:1762 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1753 +#: ../../godmode/agentes/configurar_agente.php:1766 msgid "There was a problem updating module. \"No change\"" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1759 +#: ../../godmode/agentes/configurar_agente.php:1772 msgid "There was a problem updating module. Processing error" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1788 +#: ../../godmode/agentes/configurar_agente.php:1801 msgid "Module successfully updated" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1936 +#: ../../godmode/agentes/configurar_agente.php:1949 msgid "" "There was a problem adding module. Another module already exists with the " "same name." msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1940 +#: ../../godmode/agentes/configurar_agente.php:1953 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1946 +#: ../../godmode/agentes/configurar_agente.php:1959 msgid "There was a problem adding module. Processing error" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:1975 +#: ../../godmode/agentes/configurar_agente.php:1988 #: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2126 +#: ../../godmode/agentes/configurar_agente.php:2142 msgid "There was a problem deleting the module" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2130 +#: ../../godmode/agentes/configurar_agente.php:2146 msgid "Module deleted succesfully" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2269 -#: ../../include/functions_api.php:11167 +#: ../../godmode/agentes/configurar_agente.php:2285 +#: ../../include/functions_api.php:11172 #, php-format msgid "Save by %s Console" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2287 -#: ../../include/functions_api.php:11168 +#: ../../godmode/agentes/configurar_agente.php:2303 +#: ../../include/functions_api.php:11173 #, php-format msgid "Update by %s Console" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2303 -#: ../../include/functions_api.php:11169 +#: ../../godmode/agentes/configurar_agente.php:2319 +#: ../../include/functions_api.php:11174 #, php-format msgid "Insert by %s Console" msgstr "" -#: ../../godmode/agentes/configurar_agente.php:2376 -#: ../../godmode/agentes/configurar_agente.php:2388 +#: ../../godmode/agentes/configurar_agente.php:2392 +#: ../../godmode/agentes/configurar_agente.php:2408 msgid "Invalid tab specified" msgstr "" @@ -34604,6 +34596,14 @@ msgstr "" msgid "Please select a file before clicking Load" msgstr "" +#: ../../godmode/agentes/inventory_manager.php:110 +msgid "Successfully forced inventory module" +msgstr "" + +#: ../../godmode/agentes/inventory_manager.php:112 +msgid "Error forcing inventory module" +msgstr "" + #: ../../godmode/agentes/modificar_agente.php:95 #, php-format msgid "Agents defined in %s" @@ -34726,7 +34726,7 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.list.php:211 #: ../../godmode/agentes/planned_downtime.editor.php:68 -#: ../../include/functions_reporting_html.php:883 +#: ../../include/functions_reporting_html.php:884 #: ../../include/functions_reporting_html.php:4805 msgid "Scheduled Downtime" msgstr "" @@ -34822,8 +34822,8 @@ msgid "This elements cannot be modified while the downtime is being executed" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:254 -#: ../../include/functions_planned_downtimes.php:40 -#: ../../include/functions_planned_downtimes.php:759 +#: ../../include/functions_planned_downtimes.php:41 +#: ../../include/functions_planned_downtimes.php:760 msgid "" "Not created. Error inserting data. Start time must be higher than the " "current time" @@ -34833,45 +34833,45 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:262 #: ../../godmode/agentes/planned_downtime.editor.php:270 #: ../../godmode/agentes/planned_downtime.editor.php:274 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:764 -#: ../../include/functions_planned_downtimes.php:771 -#: ../../include/functions_planned_downtimes.php:779 -#: ../../include/functions_planned_downtimes.php:787 -#: ../../include/functions_planned_downtimes.php:792 -#: ../../include/functions_planned_downtimes.php:797 -#: ../../include/functions_planned_downtimes.php:802 -#: ../../include/functions_planned_downtimes.php:807 -#: ../../include/functions_planned_downtimes.php:812 -#: ../../include/functions_planned_downtimes.php:817 +#: ../../include/functions_planned_downtimes.php:43 +#: ../../include/functions_planned_downtimes.php:48 +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:765 +#: ../../include/functions_planned_downtimes.php:772 +#: ../../include/functions_planned_downtimes.php:780 +#: ../../include/functions_planned_downtimes.php:788 +#: ../../include/functions_planned_downtimes.php:793 +#: ../../include/functions_planned_downtimes.php:798 +#: ../../include/functions_planned_downtimes.php:803 +#: ../../include/functions_planned_downtimes.php:808 +#: ../../include/functions_planned_downtimes.php:813 +#: ../../include/functions_planned_downtimes.php:818 msgid "Not created. Error inserting data" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:258 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:771 +#: ../../include/functions_planned_downtimes.php:43 +#: ../../include/functions_planned_downtimes.php:772 msgid "The end date must be higher than the start date" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:262 -#: ../../include/functions_planned_downtimes.php:764 +#: ../../include/functions_planned_downtimes.php:765 msgid "The end date must be higher than the current time" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:270 #: ../../godmode/agentes/planned_downtime.editor.php:992 #: ../../godmode/agentes/planned_downtime.editor.php:1005 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:779 +#: ../../include/functions_planned_downtimes.php:48 +#: ../../include/functions_planned_downtimes.php:780 msgid "The end time must be higher than the start time" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:274 #: ../../godmode/agentes/planned_downtime.editor.php:977 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:787 +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:788 msgid "The end day must be higher than the start day" msgstr "" @@ -34926,15 +34926,15 @@ msgid "Downtime stop cron expression is not correct" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:530 -#: ../../include/functions_planned_downtimes.php:98 -#: ../../include/functions_planned_downtimes.php:831 +#: ../../include/functions_planned_downtimes.php:99 +#: ../../include/functions_planned_downtimes.php:832 msgid "Each scheduled downtime must have a different name" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:535 #: ../../godmode/agentes/planned_downtime.editor.php:568 -#: ../../include/functions_planned_downtimes.php:103 -#: ../../include/functions_planned_downtimes.php:837 +#: ../../include/functions_planned_downtimes.php:104 +#: ../../include/functions_planned_downtimes.php:838 msgid "Scheduled downtime must have a name" msgstr "" @@ -34959,15 +34959,15 @@ msgid "Cron from/to" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:904 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5717 +#: ../../include/functions_reporting_html.php:87 +#: ../../include/functions_reporting_html.php:5736 #: ../../include/ajax/alert_list.ajax.php:592 msgid "From:" msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:908 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5717 +#: ../../include/functions_reporting_html.php:87 +#: ../../include/functions_reporting_html.php:5736 #: ../../include/ajax/alert_list.ajax.php:606 msgid "To:" msgstr "" @@ -35031,7 +35031,7 @@ msgstr "" msgid "Please select a module." msgstr "" -#: ../../godmode/agentes/planned_downtime.editor.php:1890 +#: ../../godmode/agentes/planned_downtime.editor.php:1894 msgid "" "WARNING: If you edit this scheduled downtime, the data of future SLA reports " "may be altered" @@ -35122,7 +35122,7 @@ msgid "Use alias as name" msgstr "" #: ../../godmode/agentes/agent_manager.php:304 -#: ../../godmode/setup/setup_general.php:459 +#: ../../godmode/setup/setup_general.php:540 #: ../../include/functions_config.php:368 msgid "Unique IP" msgstr "" @@ -35191,8 +35191,8 @@ msgstr "" #: ../../godmode/agentes/agent_manager.php:662 #: ../../godmode/agentes/agent_manager.php:679 -#: ../../include/functions_treeview.php:757 -#: ../../operation/agentes/ver_agente.php:1538 +#: ../../include/functions_treeview.php:752 +#: ../../operation/agentes/ver_agente.php:1556 #: ../../operation/agentes/estado_generalagente.php:495 msgid "Url address" msgstr "" @@ -35394,68 +35394,64 @@ msgstr "" msgid "Changes" msgstr "" -#: ../../godmode/agentes/module_manager.php:121 +#: ../../godmode/agentes/module_manager.php:120 msgid "Create a new data server module" msgstr "" -#: ../../godmode/agentes/module_manager.php:123 +#: ../../godmode/agentes/module_manager.php:122 msgid "Create a new network server module" msgstr "" -#: ../../godmode/agentes/module_manager.php:127 +#: ../../godmode/agentes/module_manager.php:126 msgid "Create a new plugin server module" msgstr "" -#: ../../godmode/agentes/module_manager.php:131 +#: ../../godmode/agentes/module_manager.php:130 msgid "Create a new WMI server module" msgstr "" -#: ../../godmode/agentes/module_manager.php:135 +#: ../../godmode/agentes/module_manager.php:134 msgid "Create a new prediction server module" msgstr "" -#: ../../godmode/agentes/module_manager.php:139 +#: ../../godmode/agentes/module_manager.php:138 msgid "Create a new web Server module" msgstr "" -#: ../../godmode/agentes/module_manager.php:183 +#: ../../godmode/agentes/module_manager.php:182 #: ../../operation/agentes/estado_monitores.php:582 msgid "Show in hierachy mode" msgstr "" -#: ../../godmode/agentes/module_manager.php:202 -msgid "

Type

" -msgstr "" - -#: ../../godmode/agentes/module_manager.php:232 +#: ../../godmode/agentes/module_manager.php:231 msgid "Get more modules on Monitoring Library" msgstr "" -#: ../../godmode/agentes/module_manager.php:271 +#: ../../godmode/agentes/module_manager.php:272 msgid "There was a problem completing the operation" msgstr "" -#: ../../godmode/agentes/module_manager.php:428 -#: ../../godmode/agentes/module_manager.php:474 -#: ../../godmode/agentes/module_manager.php:520 +#: ../../godmode/agentes/module_manager.php:429 +#: ../../godmode/agentes/module_manager.php:475 +#: ../../godmode/agentes/module_manager.php:521 #, php-format msgid "There was a problem completing the operation. Applied to 0/%d modules." msgstr "" -#: ../../godmode/agentes/module_manager.php:434 -#: ../../godmode/agentes/module_manager.php:480 -#: ../../godmode/agentes/module_manager.php:526 +#: ../../godmode/agentes/module_manager.php:435 +#: ../../godmode/agentes/module_manager.php:481 +#: ../../godmode/agentes/module_manager.php:527 msgid "Operation finished successfully." msgstr "" -#: ../../godmode/agentes/module_manager.php:438 -#: ../../godmode/agentes/module_manager.php:484 -#: ../../godmode/agentes/module_manager.php:530 +#: ../../godmode/agentes/module_manager.php:439 +#: ../../godmode/agentes/module_manager.php:485 +#: ../../godmode/agentes/module_manager.php:531 #, php-format msgid "There was a problem completing the operation. Applied to %d/%d modules." msgstr "" -#: ../../godmode/agentes/module_manager.php:836 +#: ../../godmode/agentes/module_manager.php:837 #: ../../godmode/reporting/map_builder.php:452 #: ../../godmode/reporting/map_builder.php:469 #: ../../include/ajax/module.php:573 @@ -35463,38 +35459,38 @@ msgstr "" msgid "No available data to show" msgstr "" -#: ../../godmode/agentes/module_manager.php:910 +#: ../../godmode/agentes/module_manager.php:911 msgid "Del." msgstr "" -#: ../../godmode/agentes/module_manager.php:1050 +#: ../../godmode/agentes/module_manager.php:1051 msgid "Module in scheduled downtime" msgstr "" -#: ../../godmode/agentes/module_manager.php:1102 -#: ../../godmode/agentes/module_manager.php:1110 +#: ../../godmode/agentes/module_manager.php:1103 +#: ../../godmode/agentes/module_manager.php:1111 #: ../../include/ajax/module.php:1097 ../../include/ajax/module.php:1105 msgid "Adopted" msgstr "" -#: ../../godmode/agentes/module_manager.php:1240 +#: ../../godmode/agentes/module_manager.php:1245 msgid "Normalize" msgstr "" -#: ../../godmode/agentes/module_manager.php:1250 +#: ../../godmode/agentes/module_manager.php:1255 msgid "Normalize (Disabled)" msgstr "" -#: ../../godmode/agentes/module_manager.php:1265 +#: ../../godmode/agentes/module_manager.php:1270 #: ../../include/functions_snmp_browser.php:638 msgid "Create network component" msgstr "" -#: ../../godmode/agentes/module_manager.php:1274 +#: ../../godmode/agentes/module_manager.php:1279 msgid "Create network component (Disabled)" msgstr "" -#: ../../godmode/agentes/module_manager.php:1337 +#: ../../godmode/agentes/module_manager.php:1342 #: ../../include/class/SatelliteAgent.class.php:245 msgid "Execute action" msgstr "" @@ -35542,7 +35538,7 @@ msgstr "" #: ../../godmode/netflow/nf_edit.php:57 ../../godmode/netflow/nf_edit.php:63 #: ../../godmode/netflow/nf_edit_form.php:73 -#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:122 +#: ../../godmode/netflow/nf_edit_form.php:83 ../../godmode/menu.php:123 msgid "Netflow filters" msgstr "" @@ -35566,8 +35562,8 @@ msgstr "" #: ../../godmode/netflow/nf_edit_form.php:188 #: ../../godmode/snmpconsole/snmp_filters.php:35 -#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:774 -#: ../../include/ajax/events.php:834 +#: ../../include/ajax/custom_fields.php:709 ../../include/ajax/events.php:775 +#: ../../include/ajax/events.php:835 msgid "Update filter" msgstr "" @@ -35762,8 +35758,8 @@ msgid "Custom Value/Enterprise String" msgstr "" #: ../../godmode/snmpconsole/snmp_alert.php:1271 -#: ../../include/functions_reporting_html.php:5267 -#: ../../include/functions_reporting_html.php:5389 +#: ../../include/functions_reporting_html.php:5286 +#: ../../include/functions_reporting_html.php:5408 #: ../../include/functions_treeview.php:454 msgid "Times fired" msgstr "" @@ -35776,11 +35772,6 @@ msgstr "" msgid "ID Alert SNMP" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:1545 -#: ../../godmode/snmpconsole/snmp_alert.php:1560 -msgid "Confirmation" -msgstr "" - #: ../../godmode/snmpconsole/snmp_alert.php:1546 msgid "Do you want delete this alert?" msgstr "" @@ -35789,7 +35780,7 @@ msgstr "" msgid "Do you want delete the selected alerts?" msgstr "" -#: ../../godmode/snmpconsole/snmp_alert.php:1671 +#: ../../godmode/snmpconsole/snmp_alert.php:1676 msgid "Add action " msgstr "" @@ -35838,179 +35829,183 @@ msgstr "" msgid "Click to add new filter" msgstr "" -#: ../../godmode/menu.php:62 +#: ../../godmode/menu.php:63 msgid "Network scan" msgstr "" -#: ../../godmode/menu.php:64 +#: ../../godmode/menu.php:65 msgid "Custom network scan" msgstr "" -#: ../../godmode/menu.php:68 +#: ../../godmode/menu.php:69 msgid "Manage scan scripts" msgstr "" -#: ../../godmode/menu.php:71 ../../godmode/wizards/HostDevices.class.php:204 +#: ../../godmode/menu.php:72 ../../godmode/wizards/HostDevices.class.php:204 msgid "Host & devices" msgstr "" -#: ../../godmode/menu.php:105 +#: ../../godmode/menu.php:106 msgid "Module categories" msgstr "" -#: ../../godmode/menu.php:109 +#: ../../godmode/menu.php:110 msgid "Module types" msgstr "" -#: ../../godmode/menu.php:115 +#: ../../godmode/menu.php:116 msgid "Operating systems" msgstr "" -#: ../../godmode/menu.php:136 +#: ../../godmode/menu.php:137 msgid "Manage agents groups" msgstr "" -#: ../../godmode/menu.php:175 ../../include/class/ConfigPEN.class.php:337 +#: ../../godmode/menu.php:176 ../../include/class/ConfigPEN.class.php:337 #: ../../include/class/ConfigPEN.class.php:345 msgid "Private Enterprise Numbers" msgstr "" -#: ../../godmode/menu.php:179 +#: ../../godmode/menu.php:180 msgid "Remote components" msgstr "" -#: ../../godmode/menu.php:203 ../../godmode/massive/massive_operations.php:246 +#: ../../godmode/menu.php:206 ../../godmode/massive/massive_operations.php:246 msgid "Agents operations" msgstr "" -#: ../../godmode/menu.php:204 ../../godmode/massive/massive_operations.php:258 +#: ../../godmode/menu.php:207 ../../godmode/massive/massive_operations.php:258 msgid "Modules operations" msgstr "" -#: ../../godmode/menu.php:205 ../../godmode/massive/massive_operations.php:270 +#: ../../godmode/menu.php:208 ../../godmode/massive/massive_operations.php:270 msgid "Plugins operations" msgstr "" -#: ../../godmode/menu.php:207 ../../godmode/massive/massive_operations.php:234 +#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:234 msgid "Users operations" msgstr "" -#: ../../godmode/menu.php:210 ../../godmode/massive/massive_operations.php:222 +#: ../../godmode/menu.php:213 ../../godmode/massive/massive_operations.php:222 msgid "Alerts operations" msgstr "" -#: ../../godmode/menu.php:228 +#: ../../godmode/menu.php:231 msgid "Event filters" msgstr "" -#: ../../godmode/menu.php:233 ../../godmode/events/events.php:80 +#: ../../godmode/menu.php:236 ../../godmode/events/events.php:80 #: ../../godmode/events/events.php:95 msgid "Custom columns" msgstr "" -#: ../../godmode/menu.php:264 +#: ../../godmode/menu.php:267 msgid "List of Alerts" msgstr "" -#: ../../godmode/menu.php:279 ../../godmode/menu.php:280 +#: ../../godmode/menu.php:282 ../../godmode/menu.php:283 msgid "Special days list" msgstr "" -#: ../../godmode/menu.php:284 +#: ../../godmode/menu.php:287 msgid "SNMP alerts" msgstr "" -#: ../../godmode/menu.php:301 +#: ../../godmode/menu.php:304 msgid "Manage servers" msgstr "" -#: ../../godmode/menu.php:312 +#: ../../godmode/menu.php:315 msgid "Register Plugin" msgstr "" -#: ../../godmode/menu.php:338 +#: ../../godmode/menu.php:341 #: ../../include/class/OrderInterpreter.class.php:141 msgid "General Setup" msgstr "" -#: ../../godmode/menu.php:363 ../../godmode/setup/setup.php:177 +#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:177 #: ../../godmode/setup/setup.php:277 -#: ../../operation/agentes/ver_agente.php:1621 +#: ../../operation/agentes/ver_agente.php:1639 msgid "eHorus" msgstr "" -#: ../../godmode/menu.php:366 ../../godmode/setup/setup.php:165 +#: ../../godmode/menu.php:369 ../../godmode/setup/setup.php:165 #: ../../godmode/setup/setup.php:283 ../../godmode/setup/setup_integria.php:585 msgid "Integria IMS" msgstr "" -#: ../../godmode/menu.php:374 +#: ../../godmode/menu.php:377 msgid "Websocket Engine" msgstr "" -#: ../../godmode/menu.php:377 ../../godmode/setup/setup.php:224 +#: ../../godmode/menu.php:380 ../../godmode/setup/setup.php:224 #: ../../godmode/setup/setup.php:311 -#: ../../operation/agentes/ver_agente.php:1707 +#: ../../operation/agentes/ver_agente.php:1725 msgid "External Tools" msgstr "" -#: ../../godmode/menu.php:381 ../../godmode/setup/setup.php:295 +#: ../../godmode/menu.php:384 ../../godmode/setup/setup.php:295 msgid "Map conections GIS" msgstr "" -#: ../../godmode/menu.php:409 +#: ../../godmode/menu.php:412 msgid "Diagnostic info" msgstr "" -#: ../../godmode/menu.php:414 +#: ../../godmode/menu.php:417 msgid "Site news" msgstr "" -#: ../../godmode/menu.php:423 +#: ../../godmode/menu.php:426 msgid "DB Schema Check" msgstr "" -#: ../../godmode/menu.php:426 +#: ../../godmode/menu.php:429 msgid "DB Interface" msgstr "" -#: ../../godmode/menu.php:508 +#: ../../godmode/menu.php:511 msgid "Extension manager view" msgstr "" -#: ../../godmode/menu.php:512 +#: ../../godmode/menu.php:515 msgid "Extension manager" msgstr "" -#: ../../godmode/menu.php:544 +#: ../../godmode/menu.php:547 #: ../../include/class/OrderInterpreter.class.php:339 msgid "Warp Update" msgstr "" -#: ../../godmode/menu.php:549 +#: ../../godmode/menu.php:552 msgid "Update offline" msgstr "" -#: ../../godmode/menu.php:552 +#: ../../godmode/menu.php:555 msgid "Update online" msgstr "" -#: ../../godmode/menu.php:558 +#: ../../godmode/menu.php:561 msgid "Warp journal" msgstr "" -#: ../../godmode/menu.php:567 +#: ../../godmode/menu.php:570 #: ../../godmode/module_library/module_library_view.php:81 msgid "Module library" msgstr "" -#: ../../godmode/menu.php:574 +#: ../../godmode/menu.php:577 #: ../../godmode/module_library/module_library_view.php:54 #: ../../godmode/module_library/module_library_view.php:68 #: ../../godmode/module_library/module_library_view.php:104 msgid "Categories" msgstr "" +#: ../../godmode/menu.php:586 +msgid "About" +msgstr "" + #: ../../godmode/gis_maps/configure_gis_map.php:86 #: ../../operation/gis_maps/gis_map.php:30 #: ../../operation/gis_maps/render_view.php:130 @@ -36399,57 +36394,57 @@ msgstr "" #: ../../godmode/massive/massive_edit_users.php:210 #: ../../godmode/massive/massive_delete_profiles.php:154 #: ../../godmode/massive/massive_add_profiles.php:204 -#: ../../include/functions_reporting.php:11921 +#: ../../include/functions_reporting.php:12207 #: ../../operation/search_results.php:94 msgid "Users" msgstr "" #: ../../godmode/massive/massive_edit_users.php:341 -#: ../../operation/users/user_edit.php:448 +#: ../../operation/users/user_edit.php:522 msgid "Event filter" msgstr "" #: ../../godmode/massive/massive_edit_users.php:379 -#: ../../operation/users/user_edit.php:520 +#: ../../operation/users/user_edit.php:594 msgid "Autorefresh" msgstr "" #: ../../godmode/massive/massive_edit_users.php:380 -#: ../../operation/users/user_edit.php:521 +#: ../../operation/users/user_edit.php:595 msgid "This will activate autorefresh in selected pages" msgstr "" #: ../../godmode/massive/massive_edit_users.php:419 -#: ../../operation/users/user_edit.php:556 +#: ../../operation/users/user_edit.php:630 msgid "Full list of pages" msgstr "" #: ../../godmode/massive/massive_edit_users.php:428 #: ../../godmode/massive/massive_edit_users.php:429 -#: ../../operation/users/user_edit.php:565 -#: ../../operation/users/user_edit.php:566 +#: ../../operation/users/user_edit.php:639 +#: ../../operation/users/user_edit.php:640 msgid "Push selected pages into autorefresh list" msgstr "" #: ../../godmode/massive/massive_edit_users.php:438 #: ../../godmode/massive/massive_edit_users.php:439 -#: ../../operation/users/user_edit.php:574 -#: ../../operation/users/user_edit.php:575 +#: ../../operation/users/user_edit.php:648 +#: ../../operation/users/user_edit.php:649 msgid "Pop selected pages out of autorefresh list" msgstr "" #: ../../godmode/massive/massive_edit_users.php:444 -#: ../../operation/users/user_edit.php:580 +#: ../../operation/users/user_edit.php:654 msgid "List of pages with autorefresh" msgstr "" #: ../../godmode/massive/massive_edit_users.php:453 -#: ../../operation/users/user_edit.php:589 +#: ../../operation/users/user_edit.php:663 msgid "Time autorefresh" msgstr "" #: ../../godmode/massive/massive_edit_users.php:455 -#: ../../operation/users/user_edit.php:591 +#: ../../operation/users/user_edit.php:665 msgid "" "Interval of autorefresh of the elements, by default they are 30 seconds, " "needing to enable the autorefresh first" @@ -36457,7 +36452,7 @@ msgstr "" #: ../../godmode/massive/massive_add_alerts.php:105 #: ../../godmode/massive/massive_delete_alerts.php:108 -#: ../../operation/agentes/alerts_status.php:533 +#: ../../operation/agentes/alerts_status.php:540 #: ../../operation/agentes/alerts_status.functions.php:54 msgid "No alert selected" msgstr "" @@ -36677,7 +36672,7 @@ msgid "Configure alert command" msgstr "" #: ../../godmode/alerts/configure_alert_command.php:196 -#: ../../godmode/alerts/alert_commands.php:729 +#: ../../godmode/alerts/alert_commands.php:730 #, php-format msgid "" "This node is configured with centralized mode. All alert commands " @@ -36712,7 +36707,7 @@ msgid "Hide" msgstr "" #: ../../godmode/alerts/alert_actions.php:74 -#: ../../include/functions_reporting.php:3004 +#: ../../include/functions_reporting.php:3122 msgid "Alert actions" msgstr "" @@ -36772,56 +36767,56 @@ msgstr "" msgid "No alerts defined" msgstr "" -#: ../../godmode/alerts/alert_commands.php:144 +#: ../../godmode/alerts/alert_commands.php:145 msgid "" "For sending emails, text must be HTML format, if you want to use plain text, " "type it between the following labels:
"
 msgstr ""
 
-#: ../../godmode/alerts/alert_commands.php:220
-#: ../../godmode/alerts/alert_commands.php:251
+#: ../../godmode/alerts/alert_commands.php:221
+#: ../../godmode/alerts/alert_commands.php:252
 msgid "Text/plain"
 msgstr ""
 
-#: ../../godmode/alerts/alert_commands.php:222
-#: ../../godmode/alerts/alert_commands.php:253
+#: ../../godmode/alerts/alert_commands.php:223
+#: ../../godmode/alerts/alert_commands.php:254
 msgid "For sending emails only text plain"
 msgstr ""
 
-#: ../../godmode/alerts/alert_commands.php:236
-#: ../../godmode/alerts/alert_commands.php:267
+#: ../../godmode/alerts/alert_commands.php:237
+#: ../../godmode/alerts/alert_commands.php:268
 msgid "Text/html"
 msgstr ""
 
-#: ../../godmode/alerts/alert_commands.php:560
+#: ../../godmode/alerts/alert_commands.php:561
 msgid "Permissions warning"
 msgstr ""
 
-#: ../../godmode/alerts/alert_commands.php:563
+#: ../../godmode/alerts/alert_commands.php:564
 msgid ""
 "Command management is limited to administrator users or user profiles with "
 "permissions PM"
 msgstr ""
 
-#: ../../godmode/alerts/alert_commands.php:580
+#: ../../godmode/alerts/alert_commands.php:581
 msgid "Alert commands"
 msgstr ""
 
-#: ../../godmode/alerts/alert_commands.php:649
-#: ../../include/functions_alerts.php:2655
+#: ../../godmode/alerts/alert_commands.php:650
+#: ../../include/functions_alerts.php:2659
 msgid "No name specified"
 msgstr ""
 
-#: ../../godmode/alerts/alert_commands.php:653
-#: ../../include/functions_alerts.php:2650
+#: ../../godmode/alerts/alert_commands.php:654
+#: ../../include/functions_alerts.php:2654
 msgid "No command specified"
 msgstr ""
 
-#: ../../godmode/alerts/alert_commands.php:705
+#: ../../godmode/alerts/alert_commands.php:706
 msgid " (copy)"
 msgstr ""
 
-#: ../../godmode/alerts/alert_commands.php:822
+#: ../../godmode/alerts/alert_commands.php:823
 msgid "No alert commands configured"
 msgstr ""
 
@@ -37041,13 +37036,13 @@ msgstr ""
 
 #: ../../godmode/alerts/alert_view.php:65
 #: ../../godmode/alerts/alert_view.php:280
-#: ../../include/functions_events.php:4375
+#: ../../include/functions_events.php:4354
 msgid "Alert details"
 msgstr ""
 
 #: ../../godmode/alerts/alert_view.php:83
 #: ../../godmode/alerts/alert_view.php:84
-#: ../../godmode/alerts/alert_list.php:487
+#: ../../godmode/alerts/alert_list.php:505
 msgid "List alerts"
 msgstr ""
 
@@ -37145,7 +37140,7 @@ msgstr ""
 msgid "No template specified"
 msgstr ""
 
-#: ../../godmode/alerts/alert_list.php:491
+#: ../../godmode/alerts/alert_list.php:509
 msgid "Builder alert"
 msgstr ""
 
@@ -37323,7 +37318,7 @@ msgid "Correct update the setup options"
 msgstr ""
 
 #: ../../godmode/setup/setup_ehorus.php:58
-#: ../../include/functions_config.php:1733
+#: ../../include/functions_config.php:1714
 msgid "Enable eHorus"
 msgstr ""
 
@@ -37381,24 +37376,24 @@ msgstr ""
 #: ../../godmode/setup/setup_ehorus.php:255
 #: ../../godmode/setup/setup_integria.php:720
 #: ../../godmode/setup/setup_integria.php:801
-#: ../../operation/users/user_edit.php:1268
-#: ../../operation/users/user_edit.php:1346
+#: ../../operation/users/user_edit.php:1342
+#: ../../operation/users/user_edit.php:1420
 msgid "Empty user or password"
 msgstr ""
 
 #: ../../godmode/setup/setup_ehorus.php:256
 #: ../../godmode/setup/setup_integria.php:721
 #: ../../godmode/setup/setup_integria.php:802
-#: ../../operation/users/user_edit.php:1269
-#: ../../operation/users/user_edit.php:1347
+#: ../../operation/users/user_edit.php:1343
+#: ../../operation/users/user_edit.php:1421
 msgid "User not found"
 msgstr ""
 
 #: ../../godmode/setup/setup_ehorus.php:257
 #: ../../godmode/setup/setup_integria.php:722
 #: ../../godmode/setup/setup_integria.php:803
-#: ../../operation/users/user_edit.php:1270
-#: ../../operation/users/user_edit.php:1348
+#: ../../operation/users/user_edit.php:1344
+#: ../../operation/users/user_edit.php:1422
 msgid "Invalid password"
 msgstr ""
 
@@ -37415,7 +37410,7 @@ msgid "Bind port"
 msgstr ""
 
 #: ../../godmode/setup/setup_websocket_engine.php:67
-#: ../../include/functions_config.php:1885
+#: ../../include/functions_config.php:1866
 msgid "WebSocket proxy url"
 msgstr ""
 
@@ -37517,7 +37512,7 @@ msgstr ""
 #: ../../godmode/setup/gis_step_2.php:234
 #: ../../godmode/reporting/visual_console_builder.elements.php:183
 #: ../../include/functions_visual_map_editor.php:1387
-#: ../../include/functions_visual_map.php:4249
+#: ../../include/functions_visual_map.php:4200
 #: ../../operation/visual_console/view.php:298
 msgid "Static Image"
 msgstr ""
@@ -37567,24 +37562,24 @@ msgid "Corners of the area of the image"
 msgstr ""
 
 #: ../../godmode/setup/gis_step_2.php:344
-#: ../../include/rest-api/models/VisualConsole/Item.php:1960
+#: ../../include/rest-api/models/VisualConsole/Item.php:1961
 msgid "Left"
 msgstr ""
 
 #: ../../godmode/setup/gis_step_2.php:351
-#: ../../include/rest-api/models/VisualConsole/Item.php:1957
+#: ../../include/rest-api/models/VisualConsole/Item.php:1958
 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:317
 #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:317
 msgid "Bottom"
 msgstr ""
 
 #: ../../godmode/setup/gis_step_2.php:358
-#: ../../include/rest-api/models/VisualConsole/Item.php:1959
+#: ../../include/rest-api/models/VisualConsole/Item.php:1960
 msgid "Right"
 msgstr ""
 
 #: ../../godmode/setup/gis_step_2.php:365
-#: ../../include/rest-api/models/VisualConsole/Item.php:1958
+#: ../../include/rest-api/models/VisualConsole/Item.php:1959
 msgid "Top"
 msgstr ""
 
@@ -37683,7 +37678,7 @@ msgid "Integria IMS API is not reachable"
 msgstr ""
 
 #: ../../godmode/setup/setup_integria.php:261
-#: ../../include/functions_config.php:1771
+#: ../../include/functions_config.php:1752
 msgid "Enable Integria IMS"
 msgstr ""
 
@@ -37751,42 +37746,42 @@ msgid "Unsucessful save the snmp translation."
 msgstr ""
 
 #: ../../godmode/setup/setup_netflow.php:47
-#: ../../include/functions_config.php:1500
+#: ../../include/functions_config.php:1481
 msgid "Data storage path"
 msgstr ""
 
 #: ../../godmode/setup/setup_netflow.php:50
-#: ../../include/functions_config.php:1504
+#: ../../include/functions_config.php:1485
 msgid "Daemon interval"
 msgstr ""
 
 #: ../../godmode/setup/setup_netflow.php:53
-#: ../../include/functions_config.php:1508
+#: ../../include/functions_config.php:1489
 msgid "Daemon binary path"
 msgstr ""
 
 #: ../../godmode/setup/setup_netflow.php:56
-#: ../../include/functions_config.php:1512
+#: ../../include/functions_config.php:1493
 msgid "Nfdump binary path"
 msgstr ""
 
 #: ../../godmode/setup/setup_netflow.php:59
-#: ../../include/functions_config.php:1516
+#: ../../include/functions_config.php:1497
 msgid "Nfexpire binary path"
 msgstr ""
 
 #: ../../godmode/setup/setup_netflow.php:62
-#: ../../include/functions_config.php:1520
+#: ../../include/functions_config.php:1501
 msgid "Maximum chart resolution"
 msgstr ""
 
 #: ../../godmode/setup/setup_netflow.php:67
-#: ../../include/functions_config.php:1528
+#: ../../include/functions_config.php:1509
 msgid "Netflow max lifetime"
 msgstr ""
 
 #: ../../godmode/setup/setup_netflow.php:70
-#: ../../include/functions_config.php:1532
+#: ../../include/functions_config.php:1513
 msgid "Name resolution for IP address"
 msgstr ""
 
@@ -37804,7 +37799,7 @@ msgid "Click to display lateral menus"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:116
-#: ../../include/functions_config.php:1316
+#: ../../include/functions_config.php:1297
 msgid "Service label font size"
 msgstr ""
 
@@ -37813,12 +37808,12 @@ msgid "Space between items in Service maps"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:137
-#: ../../include/functions_config.php:1023
+#: ../../include/functions_config.php:1004
 msgid "Style template"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:150
-#: ../../include/functions_config.php:1043
+#: ../../include/functions_config.php:1024
 msgid "Status icon set"
 msgstr ""
 
@@ -37835,23 +37830,23 @@ msgid "Colors and text"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:176
-#: ../../include/functions_config.php:1119
+#: ../../include/functions_config.php:1100
 msgid "Login background"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:394
-#: ../../include/functions_config.php:1079
+#: ../../include/functions_config.php:1060
 msgid "Custom documentation logo"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:414
-#: ../../include/functions_config.php:1083
+#: ../../include/functions_config.php:1064
 msgid "Custom support logo"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:433
-#: ../../include/functions_config.php:1087
-#: ../../include/functions_config.php:1091
+#: ../../include/functions_config.php:1068
+#: ../../include/functions_config.php:1072
 msgid "Custom networkmap center logo"
 msgstr ""
 
@@ -37868,7 +37863,7 @@ msgid "Disable helps"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:545
-#: ../../include/functions_config.php:1255
+#: ../../include/functions_config.php:1236
 msgid "Fixed header"
 msgstr ""
 
@@ -37877,12 +37872,12 @@ msgid "Automatically hide submenu"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:584
-#: ../../include/functions_config.php:1227
+#: ../../include/functions_config.php:1208
 msgid "GIS Labels"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:599
-#: ../../include/functions_config.php:1235
+#: ../../include/functions_config.php:1216
 msgid "Default icon in GIS"
 msgstr ""
 
@@ -37895,8 +37890,8 @@ msgid "Graphs font size"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:654
-#: ../../include/functions_config.php:1203
-#: ../../include/functions_config.php:1207
+#: ../../include/functions_config.php:1184
+#: ../../include/functions_config.php:1188
 msgid "Agent size text"
 msgstr ""
 
@@ -37911,18 +37906,18 @@ msgid "Normal:"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:659
-#: ../../include/functions_config.php:1211
+#: ../../include/functions_config.php:1192
 msgid "Module size text"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:664
-#: ../../include/functions_config.php:1215
-#: ../../include/functions_config.php:1219
+#: ../../include/functions_config.php:1196
+#: ../../include/functions_config.php:1200
 msgid "Description size text"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:668
-#: ../../include/functions_config.php:1223
+#: ../../include/functions_config.php:1204
 msgid "Item title size text"
 msgstr ""
 
@@ -37931,37 +37926,37 @@ msgid "Show unit along with value in reports"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:732
-#: ../../include/functions_config.php:982
+#: ../../include/functions_config.php:963
 msgid "Graph color #4"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:743
-#: ../../include/functions_config.php:986
+#: ../../include/functions_config.php:967
 msgid "Graph color #5"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:754
-#: ../../include/functions_config.php:990
+#: ../../include/functions_config.php:971
 msgid "Graph color #6"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:765
-#: ../../include/functions_config.php:994
+#: ../../include/functions_config.php:975
 msgid "Graph color #7"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:776
-#: ../../include/functions_config.php:998
+#: ../../include/functions_config.php:979
 msgid "Graph color #8"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:787
-#: ../../include/functions_config.php:1002
+#: ../../include/functions_config.php:983
 msgid "Graph color #9"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:798
-#: ../../include/functions_config.php:1006
+#: ../../include/functions_config.php:987
 msgid "Graph color #10"
 msgstr ""
 
@@ -37974,7 +37969,7 @@ msgid "Data precision in graphs"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:858
-#: ../../include/functions_config.php:1283
+#: ../../include/functions_config.php:1264
 msgid "Default line thickness for the Custom Graph."
 msgstr ""
 
@@ -38003,7 +37998,7 @@ msgid "Number of favorite visual consoles to show in the menu"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:1088
-#: ../../include/functions_config.php:1191
+#: ../../include/functions_config.php:1172
 msgid "Default line thickness for the Visual Console"
 msgstr ""
 
@@ -38018,7 +38013,7 @@ msgid ""
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:1281
-#: ../../include/functions_config.php:1267
+#: ../../include/functions_config.php:1248
 msgid "Networkmap max width"
 msgstr ""
 
@@ -38027,7 +38022,7 @@ msgid "Show empty groups in group view"
 msgstr ""
 
 #: ../../godmode/setup/setup_visuals.php:1320
-#: ../../include/functions_config.php:1489
+#: ../../include/functions_config.php:1470
 msgid "Decimal separator"
 msgstr ""
 
@@ -38145,78 +38140,99 @@ msgstr ""
 msgid "If public URL is not properly configured you will lose access to "
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:353
+#: ../../godmode/setup/setup_general.php:354
+#: ../../include/functions_config.php:401
+msgid "Inventory changes blacklist"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:417
+msgid "Out of black list"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:419
+msgid "In black list"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:424
+msgid "Push selected modules into blacklist"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:426
+msgid "Pop selected modules out of blacklist"
+msgstr ""
+
+#: ../../godmode/setup/setup_general.php:434
 #: ../../include/functions_config.php:304
 msgid "Referer security"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:361
+#: ../../godmode/setup/setup_general.php:442
 #: ../../include/functions_config.php:308
 msgid "Event storm protection"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:378
+#: ../../godmode/setup/setup_general.php:459
 msgid "Change remote config encoding"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:386
+#: ../../godmode/setup/setup_general.php:467
 #: ../../include/functions_config.php:320
 msgid "Server logs directory"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:396
+#: ../../godmode/setup/setup_general.php:477
 #: ../../include/functions_config.php:324
 msgid "Log size limit in system logs viewer extension"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:407
+#: ../../godmode/setup/setup_general.php:488
 msgid "Full mode"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:409
+#: ../../godmode/setup/setup_general.php:490
 msgid "Expert"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:411
+#: ../../godmode/setup/setup_general.php:492
 #: ../../include/functions_config.php:328
 msgid "Tutorial mode"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:425
+#: ../../godmode/setup/setup_general.php:506
 #: ../../include/functions_config.php:332
 msgid "Allow create scheduled downtimes in the past"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:433
+#: ../../godmode/setup/setup_general.php:514
 msgid "Limit for bulk operations"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:443
+#: ../../godmode/setup/setup_general.php:524
 msgid "Include agents manually disabled"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:451
+#: ../../godmode/setup/setup_general.php:532
 msgid "Set alias as name by default in agent creation"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:468
-#: ../../godmode/setup/setup_general.php:479
+#: ../../godmode/setup/setup_general.php:549
+#: ../../godmode/setup/setup_general.php:560
 msgid "Log location"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:489
+#: ../../godmode/setup/setup_general.php:570
 msgid "Module custom ID readonly"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:490
+#: ../../godmode/setup/setup_general.php:571
 msgid "Useful for integrations"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:514
+#: ../../godmode/setup/setup_general.php:595
 msgid "General options"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:533
+#: ../../godmode/setup/setup_general.php:614
 msgid ""
 "Please notice that some providers like Gmail or Office365 need to setup/"
 "enable manually external connections using SMTP and you need to use STARTTLS "
@@ -38226,27 +38242,27 @@ msgid ""
 "these settings will ignore this console setup."
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:539
+#: ../../godmode/setup/setup_general.php:620
 msgid "From address"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:559
+#: ../../godmode/setup/setup_general.php:640
 msgid "SMTP Server"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:569
+#: ../../godmode/setup/setup_general.php:650
 msgid "SMTP Port"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:619
+#: ../../godmode/setup/setup_general.php:700
 msgid "Email test"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:671 ../../general/header.php:826
+#: ../../godmode/setup/setup_general.php:752 ../../general/header.php:826
 msgid "Send"
 msgstr ""
 
-#: ../../godmode/setup/setup_general.php:681
+#: ../../godmode/setup/setup_general.php:762
 msgid "Check mail configuration"
 msgstr ""
 
@@ -38399,26 +38415,32 @@ msgstr ""
 msgid "SNMP walk binary (fallback)"
 msgstr ""
 
+#: ../../godmode/setup/performance.php:671
+#, php-format
+msgid ""
+"%s web2image cache system cleanup. It is always cleaned up after perform an "
+"upgrade"
+msgstr ""
+
 #: ../../godmode/setup/performance.php:677
 msgid "WMI binary"
 msgstr ""
 
-#: ../../godmode/setup/performance.php:734
+#: ../../godmode/setup/performance.php:717
 msgid "Database maintenance options"
 msgstr ""
 
-#: ../../godmode/setup/performance.php:740
+#: ../../godmode/setup/performance.php:723
 msgid "Historical database maintenance options"
 msgstr ""
 
-#: ../../godmode/setup/performance.php:746
-#: ../../include/functions_visual_map.php:2874
+#: ../../godmode/setup/performance.php:729 ../../include/graphs/fgraph.php:404
 #: ../../include/functions_netflow.php:2078
-#: ../../operation/network/network_report.php:326
+#: ../../include/functions_reporting.php:3959
 msgid "Others"
 msgstr ""
 
-#: ../../godmode/setup/performance.php:751
+#: ../../godmode/setup/performance.php:734
 msgid "Agent SNMP Interface Wizard defaults"
 msgstr ""
 
@@ -38452,8 +38474,9 @@ msgstr ""
 
 #: ../../godmode/reporting/visual_console_builder.data.php:181
 #: ../../include/functions_visual_map_editor.php:347
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:469
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:524
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:372
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:514
+#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:251
 msgid "Background color"
 msgstr ""
 
@@ -38616,14 +38639,14 @@ msgid "Parent container"
 msgstr ""
 
 #: ../../godmode/reporting/create_container.php:345
-#: ../../include/functions.php:2708
+#: ../../include/functions.php:2734
 msgid "custom"
 msgstr ""
 
 #: ../../godmode/reporting/create_container.php:347
 #: ../../godmode/reporting/create_container.php:348
 #: ../../godmode/reporting/create_container.php:349
-#: ../../include/functions.php:2720 ../../include/functions.php:2721
+#: ../../include/functions.php:2746 ../../include/functions.php:2747
 #: ../../include/ajax/graph.ajax.php:147 ../../include/ajax/graph.ajax.php:148
 #: ../../include/ajax/graph.ajax.php:149
 #, php-format
@@ -38638,13 +38661,13 @@ msgid "%s days"
 msgstr ""
 
 #: ../../godmode/reporting/create_container.php:353
-#: ../../include/functions.php:2723 ../../include/ajax/module.php:211
+#: ../../include/functions.php:2749 ../../include/ajax/module.php:211
 #: ../../include/ajax/graph.ajax.php:153
 msgid "1 week"
 msgstr ""
 
 #: ../../godmode/reporting/create_container.php:355
-#: ../../include/functions.php:2725 ../../include/ajax/module.php:213
+#: ../../include/functions.php:2751 ../../include/ajax/module.php:213
 #: ../../include/ajax/graph.ajax.php:155
 msgid "1 month"
 msgstr ""
@@ -38782,7 +38805,7 @@ msgstr ""
 #: ../../godmode/reporting/graphs.php:310
 #: ../../include/functions_container.php:146
 #: ../../operation/search_graphs.php:30
-#: ../../operation/reporting/graph_viewer.php:524
+#: ../../operation/reporting/graph_viewer.php:521
 msgid "Graph name"
 msgstr ""
 
@@ -38849,6 +38872,11 @@ msgstr ""
 msgid "Show modules"
 msgstr ""
 
+#: ../../godmode/reporting/reporting_builder.item_editor.php:2193
+#: ../../operation/inventory/inventory.php:437
+msgid "Last"
+msgstr ""
+
 #: ../../godmode/reporting/reporting_builder.item_editor.php:2272
 msgid "Target server"
 msgstr ""
@@ -38953,12 +38981,12 @@ msgid ""
 msgstr ""
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3456
-#: ../../include/functions_reporting.php:4796
+#: ../../include/functions_reporting.php:5059
 msgid "Unassigned group"
 msgstr ""
 
 #: ../../godmode/reporting/reporting_builder.item_editor.php:3502
-#: ../../include/functions_reporting.php:4790
+#: ../../include/functions_reporting.php:5053
 msgid "Unnasigned group"
 msgstr ""
 
@@ -39096,7 +39124,7 @@ msgstr ""
 #: ../../godmode/reporting/visual_console_builder.elements.php:222
 #: ../../mobile/operation/events.php:837
 #: ../../include/functions_visual_map_editor.php:1389
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:555
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:545
 #: ../../operation/visual_console/view.php:308
 msgid "Module Graph"
 msgstr ""
@@ -39104,15 +39132,15 @@ msgstr ""
 #: ../../godmode/reporting/visual_console_builder.elements.php:232
 #: ../../include/functions_visual_map_editor.php:59
 #: ../../include/functions_visual_map_editor.php:1392
-#: ../../include/functions_visual_map.php:4229
+#: ../../include/functions_visual_map.php:4180
 #: ../../operation/visual_console/view.php:328
 msgid "Event history graph"
 msgstr ""
 
 #: ../../godmode/reporting/visual_console_builder.elements.php:241
 #: ../../include/functions_visual_map_editor.php:1393
-#: ../../include/functions_visual_map.php:4254
-#: ../../include/rest-api/models/VisualConsole/Item.php:2131
+#: ../../include/functions_visual_map.php:4205
+#: ../../include/rest-api/models/VisualConsole/Item.php:2132
 #: ../../operation/visual_console/view.php:333
 msgid "Simple Value"
 msgstr ""
@@ -39132,7 +39160,7 @@ msgstr ""
 #: ../../godmode/reporting/visual_console_builder.elements.php:304
 #: ../../include/functions_visual_map_editor.php:71
 #: ../../include/functions_visual_map_editor.php:1398
-#: ../../include/functions_visual_map.php:4209
+#: ../../include/functions_visual_map.php:4160
 #: ../../operation/visual_console/view.php:358
 msgid "Box"
 msgstr ""
@@ -39146,20 +39174,20 @@ msgstr ""
 #: ../../godmode/reporting/visual_console_builder.elements.php:344
 #: ../../include/functions_visual_map_editor.php:73
 #: ../../include/functions_visual_map_editor.php:1400
-#: ../../include/functions_visual_map.php:4269
-#: ../../include/rest-api/models/VisualConsole/Item.php:2143
+#: ../../include/functions_visual_map.php:4220
+#: ../../include/rest-api/models/VisualConsole/Item.php:2144
 #: ../../operation/visual_console/view.php:368
 msgid "Color cloud"
 msgstr ""
 
 #: ../../godmode/reporting/visual_console_builder.elements.php:352
-#: ../../include/rest-api/models/VisualConsole/Item.php:2155
+#: ../../include/rest-api/models/VisualConsole/Item.php:2156
 #: ../../operation/visual_console/view.php:313
 msgid "Basic chart"
 msgstr ""
 
 #: ../../godmode/reporting/visual_console_builder.elements.php:360
-#: ../../include/rest-api/models/VisualConsole/Item.php:2151
+#: ../../include/rest-api/models/VisualConsole/Item.php:2152
 #: ../../operation/visual_console/view.php:378
 msgid "Odometer"
 msgstr ""
@@ -39167,8 +39195,8 @@ msgstr ""
 #: ../../godmode/reporting/visual_console_builder.elements.php:368
 #: ../../include/functions_visual_map_editor.php:69
 #: ../../include/functions_visual_map_editor.php:1396
-#: ../../include/functions_visual_map.php:4219
-#: ../../include/rest-api/models/VisualConsole/Item.php:2103
+#: ../../include/functions_visual_map.php:4170
+#: ../../include/rest-api/models/VisualConsole/Item.php:2104
 #: ../../include/lib/Dashboard/Widgets/clock.php:158
 #: ../../include/lib/Dashboard/Widgets/clock.php:310
 #: ../../operation/visual_console/view.php:348
@@ -39225,7 +39253,7 @@ msgstr ""
 
 #: ../../godmode/reporting/reporting_builder.php:551
 #: ../../godmode/reporting/reporting_builder.php:3538
-#: ../../operation/menu.php:328
+#: ../../operation/menu.php:332
 #: ../../operation/reporting/custom_reporting.php:23
 msgid "Custom reporting"
 msgstr ""
@@ -39270,8 +39298,8 @@ msgstr ""
 #: ../../godmode/reporting/visual_console_builder.wizard.php:129
 #: ../../mobile/operation/home.php:102
 #: ../../include/functions_visual_map_editor.php:397
-#: ../../include/functions_visual_map.php:4214
-#: ../../include/rest-api/models/VisualConsole/Item.php:2099
+#: ../../include/functions_visual_map.php:4165
+#: ../../include/rest-api/models/VisualConsole/Item.php:2100
 msgid "Module graph"
 msgstr ""
 
@@ -39289,7 +39317,7 @@ msgid "Size (px)"
 msgstr ""
 
 #: ../../godmode/reporting/visual_console_builder.wizard.php:228
-#: ../../include/functions_config.php:1051
+#: ../../include/functions_config.php:1032
 msgid "Font size"
 msgstr ""
 
@@ -39407,19 +39435,19 @@ msgstr ""
 
 #: ../../godmode/reporting/graph_builder.main.php:218
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:356
-#: ../../operation/reporting/graph_viewer.php:374
+#: ../../operation/reporting/graph_viewer.php:346
 msgid "Bullet chart"
 msgstr ""
 
 #: ../../godmode/reporting/graph_builder.main.php:219
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:357
-#: ../../operation/reporting/graph_viewer.php:375
+#: ../../operation/reporting/graph_viewer.php:347
 msgid "Gauge"
 msgstr ""
 
 #: ../../godmode/reporting/graph_builder.main.php:222
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:360
-#: ../../operation/reporting/graph_viewer.php:378
+#: ../../operation/reporting/graph_viewer.php:350
 msgid "Pie"
 msgstr ""
 
@@ -39525,101 +39553,106 @@ msgid ""
 "event response"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:266
+#: ../../godmode/events/event_edit_filter.php:276
 msgid "Update Filter"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:268
+#: ../../godmode/events/event_edit_filter.php:278
 msgid "Create Filter"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:278
+#: ../../godmode/events/event_edit_filter.php:288
 #: ../../include/ajax/custom_fields.php:573
 #: ../../include/ajax/custom_fields.php:620
-#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:781
+#: ../../include/ajax/custom_fields.php:664 ../../include/ajax/events.php:782
 msgid "Filter name"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:281
+#: ../../godmode/events/event_edit_filter.php:291
 msgid "Save in group"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:281
+#: ../../godmode/events/event_edit_filter.php:291
 msgid ""
 "This group will be use to restrict the visibility of this filter with ACLs"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:443
+#: ../../godmode/events/event_edit_filter.php:453
 msgid "Choose between the users who have validated an event. "
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:467
+#: ../../godmode/events/event_edit_filter.php:477
 msgid "Owner."
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:479
+#: ../../godmode/events/event_edit_filter.php:489
 #: ../../operation/events/events.php:1708
 msgid "All events"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:480
+#: ../../godmode/events/event_edit_filter.php:490
 #: ../../operation/events/events.php:1709
 #: ../../operation/events/events.php:2375
 msgid "Group events"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:481
+#: ../../godmode/events/event_edit_filter.php:491
 #: ../../include/ajax/heatmap.ajax.php:78
 #: ../../operation/events/events.php:1710
 msgid "Group agents"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:482
+#: ../../godmode/events/event_edit_filter.php:492
 #: ../../operation/events/events.php:1711
 msgid "Group extra id"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:648
+#: ../../godmode/events/event_edit_filter.php:658
 #: ../../operation/events/events.php:1984
 msgid "Filter alert events"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:649
+#: ../../godmode/events/event_edit_filter.php:659
 #: ../../operation/events/events.php:1985
 msgid "Only alert events"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:676
+#: ../../godmode/events/event_edit_filter.php:686
 #: ../../operation/events/events.php:1855
 msgid "Extra ID"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:682
+#: ../../godmode/events/event_edit_filter.php:692
 msgid "Custom data filter type"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:685
+#: ../../godmode/events/event_edit_filter.php:695
 msgid "Filter custom data by name field"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:686
+#: ../../godmode/events/event_edit_filter.php:696
 msgid "Filter custom data by value field"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:696
+#: ../../godmode/events/event_edit_filter.php:706
 #: ../../godmode/events/custom_events.php:119
 #: ../../include/functions_reporting_html.php:1069
 #: ../../include/functions_reporting_html.php:1330
 #: ../../include/functions_reporting_html.php:2557
-#: ../../include/ajax/events.php:1718 ../../include/functions_events.php:221
+#: ../../include/ajax/events.php:1725 ../../include/functions_events.php:221
 #: ../../include/functions_events.php:323
 msgid "Custom data"
 msgstr ""
 
-#: ../../godmode/events/event_edit_filter.php:700
+#: ../../godmode/events/event_edit_filter.php:710
 msgid "Id souce event"
 msgstr ""
 
+#: ../../godmode/events/event_edit_filter.php:735
+#: ../../operation/events/events.php:256
+msgid "Metaconsola"
+msgstr ""
+
 #: ../../godmode/events/event_responses.list.php:32
 msgid "No responses found"
 msgstr ""
@@ -39686,7 +39719,7 @@ msgstr ""
 
 #: ../../godmode/events/custom_events.php:118
 #: ../../include/functions_events.php:307
-#: ../../include/functions_events.php:4911
+#: ../../include/functions_events.php:4890
 msgid "Module custom ID"
 msgstr ""
 
@@ -39876,27 +39909,27 @@ msgid ""
 "mysecret,1234"
 msgstr ""
 
-#: ../../godmode/wizards/HostDevices.class.php:1375
+#: ../../godmode/wizards/HostDevices.class.php:1374
 msgid "OS detection"
 msgstr ""
 
-#: ../../godmode/wizards/HostDevices.class.php:1387
+#: ../../godmode/wizards/HostDevices.class.php:1386
 msgid "Name resolution"
 msgstr ""
 
-#: ../../godmode/wizards/HostDevices.class.php:1398
+#: ../../godmode/wizards/HostDevices.class.php:1397
 msgid "Parent detection"
 msgstr ""
 
-#: ../../godmode/wizards/HostDevices.class.php:1409
+#: ../../godmode/wizards/HostDevices.class.php:1408
 msgid "Parent recursion"
 msgstr ""
 
-#: ../../godmode/wizards/HostDevices.class.php:1420
+#: ../../godmode/wizards/HostDevices.class.php:1419
 msgid "VLAN enabled"
 msgstr ""
 
-#: ../../godmode/wizards/HostDevices.class.php:1431
+#: ../../godmode/wizards/HostDevices.class.php:1430
 msgid "WMI enabled"
 msgstr ""
 
@@ -40900,7 +40933,7 @@ msgid "Modules by status"
 msgstr ""
 
 #: ../../mobile/operation/agent.php:268
-#: ../../include/functions_treeview.php:829
+#: ../../include/functions_treeview.php:824
 msgid "Events (24h)"
 msgstr ""
 
@@ -40918,7 +40951,7 @@ msgstr ""
 msgid "Last Fired"
 msgstr ""
 
-#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2395
+#: ../../mobile/operation/alerts.php:357 ../../include/ajax/events.php:2406
 msgid "No alerts"
 msgstr ""
 
@@ -40995,7 +41028,7 @@ msgstr ""
 #: ../../include/functions_reporting_html.php:1359
 #: ../../include/functions_reporting_html.php:2582
 #: ../../include/functions_events.php:2569
-#: ../../include/functions_events.php:4568
+#: ../../include/functions_events.php:4547
 #: ../../operation/events/events.php:749
 msgid "New event"
 msgstr ""
@@ -41005,7 +41038,7 @@ msgstr ""
 #: ../../include/functions_reporting_html.php:1364
 #: ../../include/functions_reporting_html.php:2587
 #: ../../include/functions_events.php:2574
-#: ../../include/functions_events.php:4574
+#: ../../include/functions_events.php:4553
 #: ../../operation/events/events.php:762
 msgid "Event validated"
 msgstr ""
@@ -41015,7 +41048,7 @@ msgstr ""
 #: ../../include/functions_reporting_html.php:1369
 #: ../../include/functions_reporting_html.php:2592
 #: ../../include/functions_events.php:2579
-#: ../../include/functions_events.php:4580
+#: ../../include/functions_events.php:4559
 #: ../../operation/events/events.php:774
 msgid "Event in process"
 msgstr ""
@@ -41033,12 +41066,12 @@ msgid "Event detail"
 msgstr ""
 
 #: ../../mobile/operation/events.php:800
-#: ../../include/functions_events.php:4721
+#: ../../include/functions_events.php:4700
 msgid "Event ID"
 msgstr ""
 
 #: ../../mobile/operation/events.php:828
-#: ../../include/functions_events.php:4831
+#: ../../include/functions_events.php:4810
 msgid "Acknowledged by"
 msgstr ""
 
@@ -41060,10 +41093,10 @@ msgid "Preset Filters"
 msgstr ""
 
 #: ../../mobile/operation/events.php:1144
-#: ../../include/functions_reporting_html.php:6107
-#: ../../include/functions_reporting_html.php:6266
-#: ../../include/functions_reporting.php:2151
-#: ../../include/functions_reporting.php:2441
+#: ../../include/functions_reporting_html.php:6126
+#: ../../include/functions_reporting_html.php:6285
+#: ../../include/functions_reporting.php:2184
+#: ../../include/functions_reporting.php:2559
 #: ../../include/functions_events.php:2493
 #: ../../include/functions_events.php:2496
 msgid "No events"
@@ -41174,25 +41207,25 @@ msgid "Enable link"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:350
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:463
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:518
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:366
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:508
 msgid "White"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:351
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:464
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:519
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:367
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:509
 msgid "Black"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:352
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:465
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:520
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:368
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:510
 msgid "Transparent"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:378
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:499
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:402
 msgid "Grid color"
 msgstr ""
 
@@ -41201,32 +41234,31 @@ msgid "Data image"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:503
-#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:258
 msgid "Resume data color"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:517
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:269
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:274
 msgid "24h"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:518
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:271
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:276
 msgid "8h"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:519
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:272
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
 msgid "2h"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:520
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:273
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:278
 msgid "1h"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:524
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:277
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:282
 msgid "Max. Time"
 msgstr ""
 
@@ -41247,14 +41279,16 @@ msgid "Height proportional"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:688
+#: ../../include/functions_visual_map.php:4190
 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:460
-msgid "Circular porgress bar"
+#: ../../include/rest-api/models/VisualConsole/Item.php:2124
+msgid "Circular progress bar"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:689
-#: ../../include/functions_visual_map.php:4244
+#: ../../include/functions_visual_map.php:4195
 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:462
-#: ../../include/rest-api/models/VisualConsole/Item.php:2127
+#: ../../include/rest-api/models/VisualConsole/Item.php:2128
 msgid "Circular progress bar (interior)"
 msgstr ""
 
@@ -41297,7 +41331,7 @@ msgid "To value"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:815
-#: ../../include/rest-api/index.php:375
+#: ../../include/rest-api/index.php:376
 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:471
 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:530
 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:487
@@ -41329,32 +41363,32 @@ msgid "For use the original image file size, set 0 width and 0 height."
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:974
-#: ../../include/rest-api/models/VisualConsole/Item.php:2438
+#: ../../include/rest-api/models/VisualConsole/Item.php:2439
 msgid "Linked visual console"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:1081
-#: ../../include/rest-api/models/VisualConsole/Item.php:2489
+#: ../../include/rest-api/models/VisualConsole/Item.php:2490
 msgid "By status weight"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:1082
-#: ../../include/rest-api/models/VisualConsole/Item.php:2490
+#: ../../include/rest-api/models/VisualConsole/Item.php:2491
 msgid "By critical elements"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:1097
-#: ../../include/rest-api/models/VisualConsole/Item.php:2497
+#: ../../include/rest-api/models/VisualConsole/Item.php:2498
 msgid "Type of the status calculation of the linked visual console"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:1102
-#: ../../include/rest-api/models/VisualConsole/Item.php:2488
+#: ../../include/rest-api/models/VisualConsole/Item.php:2489
 msgid "By default"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:1122
-#: ../../include/rest-api/models/VisualConsole/Item.php:2513
+#: ../../include/rest-api/models/VisualConsole/Item.php:2514
 msgid "Linked visual console weight"
 msgstr ""
 
@@ -41363,7 +41397,7 @@ msgid "Lines haven't advanced options"
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:1206
-#: ../../include/rest-api/models/VisualConsole/Item.php:2188
+#: ../../include/rest-api/models/VisualConsole/Item.php:2189
 msgid "Restrict access to group"
 msgstr ""
 
@@ -41375,7 +41409,7 @@ msgid ""
 msgstr ""
 
 #: ../../include/functions_visual_map_editor.php:1248
-#: ../../include/rest-api/models/VisualConsole/Item.php:2201
+#: ../../include/rest-api/models/VisualConsole/Item.php:2202
 msgid "Cache expiration"
 msgstr ""
 
@@ -41511,27 +41545,28 @@ msgstr ""
 
 #: ../../include/graphs/functions_gd.php:183
 #: ../../include/graphs/functions_gd.php:466
-#: ../../include/functions_graph.php:2907
-#: ../../include/functions_graph.php:2955
+#: ../../include/functions_graph.php:2775
+#: ../../include/functions_graph.php:2823
 msgid "Out of limits"
 msgstr ""
 
-#: ../../include/graphs/functions_flot.php:365
+#: ../../include/graphs/functions_flot.php:370
 msgid "Cancel zoom"
 msgstr ""
 
-#: ../../include/graphs/functions_flot.php:367
+#: ../../include/graphs/functions_flot.php:372
 msgid "Warning and Critical thresholds"
 msgstr ""
 
-#: ../../include/graphs/functions_flot.php:372
+#: ../../include/graphs/functions_flot.php:377
 msgid "Overview graph"
 msgstr ""
 
-#: ../../include/graphs/functions_flot.php:509
-#: ../../include/functions_reporting_html.php:659
+#: ../../include/graphs/functions_flot.php:514
+#: ../../include/functions_reporting_html.php:660
 #: ../../include/functions_reporting_html.php:4596
-#: ../../include/ajax/events.php:1259 ../../include/functions_treeview.php:315
+#: ../../include/ajax/events.php:1260 ../../include/functions_graph.php:4836
+#: ../../include/functions_treeview.php:315
 msgid "No data"
 msgstr ""
 
@@ -41595,15 +41630,15 @@ msgstr ""
 msgid "Satellite server"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:109
+#: ../../include/functions_reporting_html.php:110
 msgid "Label: "
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:584
+#: ../../include/functions_reporting_html.php:585
 msgid "Time Failed"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:588
+#: ../../include/functions_reporting_html.php:589
 msgid "Downtime"
 msgstr ""
 
@@ -41669,12 +41704,26 @@ msgstr ""
 msgid "Remote conf."
 msgstr ""
 
+#: ../../include/functions_reporting_html.php:1831
+#: ../../include/functions_inventory.php:885
+#: ../../include/functions_inventory.php:948
+msgid "Added"
+msgstr ""
+
+#: ../../include/functions_reporting_html.php:1842
+#: ../../include/functions_inventory.php:891
+#: ../../include/functions_inventory.php:956
+#: ../../include/functions_filemanager.php:342
+#: ../../include/functions_filemanager.php:359
+msgid "Deleted"
+msgstr ""
+
 #: ../../include/functions_reporting_html.php:2198
 msgid "Cell turns grey when the module is in 'not initialize' status"
 msgstr ""
 
 #: ../../include/functions_reporting_html.php:2490
-#: ../../include/functions_reporting_html.php:5585
+#: ../../include/functions_reporting_html.php:5604
 msgid "Monitors"
 msgstr ""
 
@@ -41687,7 +41736,7 @@ msgid "Events validated by user"
 msgstr ""
 
 #: ../../include/functions_reporting_html.php:2692
-#: ../../include/functions_reporting_html.php:5874
+#: ../../include/functions_reporting_html.php:5893
 msgid "Events by severity"
 msgstr ""
 
@@ -41745,389 +41794,389 @@ msgid "Primary"
 msgstr ""
 
 #: ../../include/functions_reporting_html.php:5130
-#: ../../include/functions_reporting.php:11614
-#: ../../include/functions_reporting.php:11635
+#: ../../include/functions_reporting.php:11900
+#: ../../include/functions_reporting.php:11921
 msgid "Alert level"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5359
+#: ../../include/functions_reporting_html.php:5378
 #, php-format
 msgid "Agents in group: %s"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5461
+#: ../../include/functions_reporting_html.php:5480
 msgid "Last failure"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5551
+#: ../../include/functions_reporting_html.php:5570
 msgid "N/A(*)"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5799
-#: ../../include/functions_reporting.php:11846
+#: ../../include/functions_reporting_html.php:5818
+#: ../../include/functions_reporting.php:12132
 msgid "Monitor checks"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5806
-#: ../../include/functions_reporting.php:11865
+#: ../../include/functions_reporting_html.php:5825
+#: ../../include/functions_reporting.php:12151
 msgid "Total agents and monitors"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5825
-#: ../../include/functions_reporting_html.php:5830
+#: ../../include/functions_reporting_html.php:5844
+#: ../../include/functions_reporting_html.php:5849
 msgid "Node overview"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5850
-#: ../../include/functions_reporting_html.php:5862
+#: ../../include/functions_reporting_html.php:5869
+#: ../../include/functions_reporting_html.php:5881
 msgid "Critical events"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5853
-#: ../../include/functions_reporting_html.php:5864
+#: ../../include/functions_reporting_html.php:5872
+#: ../../include/functions_reporting_html.php:5883
 msgid "Warning events"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5856
-#: ../../include/functions_reporting_html.php:5866
+#: ../../include/functions_reporting_html.php:5875
+#: ../../include/functions_reporting_html.php:5885
 msgid "OK events"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5859
-#: ../../include/functions_reporting_html.php:5868
+#: ../../include/functions_reporting_html.php:5878
+#: ../../include/functions_reporting_html.php:5887
 msgid "Unknown events"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5884
+#: ../../include/functions_reporting_html.php:5903
 msgid "Important Events by Criticity"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5910
+#: ../../include/functions_reporting_html.php:5929
 #, php-format
 msgid "Last activity in %s console"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:5997
-#: ../../include/functions_reporting_html.php:6139
+#: ../../include/functions_reporting_html.php:6016
+#: ../../include/functions_reporting_html.php:6158
 msgid "Events info (1hr.)"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:6296
+#: ../../include/functions_reporting_html.php:6315
 msgid "This SLA has been affected by the following scheduled downtimes"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:6297
+#: ../../include/functions_reporting_html.php:6316
 msgid ""
 "If the duration of the scheduled downtime is less than 5 minutes it will not "
 "be represented in the graph"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:6304
+#: ../../include/functions_reporting_html.php:6323
 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:380
 msgid "Dates"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:6335
+#: ../../include/functions_reporting_html.php:6354
 msgid "This item is affected by a malformed scheduled downtime"
 msgstr ""
 
-#: ../../include/functions_reporting_html.php:6335
+#: ../../include/functions_reporting_html.php:6354
 msgid "Go to the scheduled downtimes section to solve this"
 msgstr ""
 
-#: ../../include/functions.php:484 ../../include/functions.php:636
+#: ../../include/functions.php:488 ../../include/functions.php:640
 msgid "s"
 msgstr ""
 
-#: ../../include/functions.php:485 ../../include/functions.php:637
+#: ../../include/functions.php:489 ../../include/functions.php:641
 msgid "d"
 msgstr ""
 
-#: ../../include/functions.php:486 ../../include/functions.php:638
+#: ../../include/functions.php:490 ../../include/functions.php:642
 msgid "M"
 msgstr ""
 
-#: ../../include/functions.php:487 ../../include/functions.php:639
+#: ../../include/functions.php:491 ../../include/functions.php:643
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:259
-#: ../../include/rest-api/models/VisualConsole/Item.php:2036
+#: ../../include/rest-api/models/VisualConsole/Item.php:2037
 msgid "Y"
 msgstr ""
 
-#: ../../include/functions.php:488 ../../include/functions.php:640
+#: ../../include/functions.php:492 ../../include/functions.php:644
 msgid "m"
 msgstr ""
 
-#: ../../include/functions.php:489 ../../include/functions.php:641
+#: ../../include/functions.php:493 ../../include/functions.php:645
 msgid "h"
 msgstr ""
 
-#: ../../include/functions.php:490 ../../include/functions.php:642
+#: ../../include/functions.php:494 ../../include/functions.php:646
 msgid "N"
 msgstr ""
 
-#: ../../include/functions.php:1043 ../../include/functions.php:1289
-#: ../../include/functions.php:1323 ../../include/functions_graph.php:3477
-#: ../../include/functions_graph.php:3478
-#: ../../include/functions_graph.php:5060
+#: ../../include/functions.php:1069 ../../include/functions.php:1315
+#: ../../include/functions.php:1349 ../../include/functions_graph.php:3318
+#: ../../include/functions_graph.php:3320
+#: ../../include/functions_graph.php:4848
 #: ../../include/functions_incidents.php:34
 #: ../../include/functions_incidents.php:75
-#: ../../include/functions_events.php:3090
+#: ../../include/functions_events.php:3069
 #: ../../operation/visual_console/view.php:433
 msgid "Maintenance"
 msgstr ""
 
-#: ../../include/functions.php:1047 ../../include/functions.php:1290
-#: ../../include/functions.php:1327 ../../include/functions_graph.php:3482
-#: ../../include/functions_graph.php:3483
-#: ../../include/functions_graph.php:5064
-#: ../../include/functions_events.php:3094
+#: ../../include/functions.php:1073 ../../include/functions.php:1316
+#: ../../include/functions.php:1353 ../../include/functions_graph.php:3324
+#: ../../include/functions_graph.php:3326
+#: ../../include/functions_graph.php:4852
+#: ../../include/functions_events.php:3073
 msgid "Informational"
 msgstr ""
 
-#: ../../include/functions.php:1063 ../../include/functions.php:1292
-#: ../../include/functions.php:1343 ../../include/functions_graph.php:3492
-#: ../../include/functions_graph.php:3493
-#: ../../include/functions_graph.php:5080
+#: ../../include/functions.php:1089 ../../include/functions.php:1318
+#: ../../include/functions.php:1369 ../../include/functions_graph.php:3336
+#: ../../include/functions_graph.php:3338
+#: ../../include/functions_graph.php:4868
 msgid "Minor"
 msgstr ""
 
-#: ../../include/functions.php:1067 ../../include/functions.php:1294
-#: ../../include/functions.php:1347 ../../include/functions_graph.php:3502
-#: ../../include/functions_graph.php:3503
-#: ../../include/functions_graph.php:5084
+#: ../../include/functions.php:1093 ../../include/functions.php:1320
+#: ../../include/functions.php:1373 ../../include/functions_graph.php:3348
+#: ../../include/functions_graph.php:3350
+#: ../../include/functions_graph.php:4872
 msgid "Major"
 msgstr ""
 
-#: ../../include/functions.php:1242 ../../include/functions_events.php:3010
+#: ../../include/functions.php:1268 ../../include/functions_events.php:2989
 msgid "Monitor Critical"
 msgstr ""
 
-#: ../../include/functions.php:1243 ../../include/functions_events.php:3014
+#: ../../include/functions.php:1269 ../../include/functions_events.php:2993
 msgid "Monitor Warning"
 msgstr ""
 
-#: ../../include/functions.php:1244 ../../include/functions_events.php:3018
+#: ../../include/functions.php:1270 ../../include/functions_events.php:2997
 msgid "Monitor Normal"
 msgstr ""
 
-#: ../../include/functions.php:1246
+#: ../../include/functions.php:1272
 msgid "Monitor Unknown"
 msgstr ""
 
-#: ../../include/functions.php:1249 ../../include/functions_events.php:2794
-#: ../../include/functions_events.php:3026
+#: ../../include/functions.php:1275 ../../include/functions_events.php:2773
+#: ../../include/functions_events.php:3005
 msgid "Alert recovered"
 msgstr ""
 
-#: ../../include/functions.php:1250 ../../include/functions_events.php:2842
-#: ../../include/functions_events.php:3030
+#: ../../include/functions.php:1276 ../../include/functions_events.php:2821
+#: ../../include/functions_events.php:3009
 msgid "Alert ceased"
 msgstr ""
 
-#: ../../include/functions.php:1251 ../../include/functions_events.php:3034
+#: ../../include/functions.php:1277 ../../include/functions_events.php:3013
 msgid "Alert manual validation"
 msgstr ""
 
-#: ../../include/functions.php:1253
+#: ../../include/functions.php:1279
 msgid "Agent created"
 msgstr ""
 
-#: ../../include/functions.php:1254 ../../include/functions_events.php:3038
+#: ../../include/functions.php:1280 ../../include/functions_events.php:3017
 msgid "Recon host detected"
 msgstr ""
 
-#: ../../include/functions.php:1257 ../../include/functions_events.php:2838
-#: ../../include/functions_events.php:3050
+#: ../../include/functions.php:1283 ../../include/functions_events.php:2817
+#: ../../include/functions_events.php:3029
 msgid "Configuration change"
 msgstr ""
 
-#: ../../include/functions.php:1374 ../../include/functions.php:1404
+#: ../../include/functions.php:1400 ../../include/functions.php:1430
 msgid "ALERT FIRED"
 msgstr ""
 
-#: ../../include/functions.php:1377 ../../include/functions.php:1414
-#: ../../include/functions_modules.php:4148
+#: ../../include/functions.php:1403 ../../include/functions.php:1440
+#: ../../include/functions_modules.php:4223
 #: ../../include/class/Tree.class.php:646 ../../include/lib/Module.php:567
 #: ../../operation/agentes/status_monitor.php:1669
 #: ../../operation/agentes/status_monitor.php:1682
 msgid "NO DATA"
 msgstr ""
 
-#: ../../include/functions.php:2714
+#: ../../include/functions.php:2740
 #, php-format
 msgid "%s seconds"
 msgstr ""
 
-#: ../../include/functions.php:2717 ../../include/functions.php:2718
+#: ../../include/functions.php:2743 ../../include/functions.php:2744
 #, php-format
 msgid "%s minutes"
 msgstr ""
 
-#: ../../include/functions.php:2726 ../../include/functions.php:2727
+#: ../../include/functions.php:2752 ../../include/functions.php:2753
 #, php-format
 msgid "%s months"
 msgstr ""
 
-#: ../../include/functions.php:2729 ../../include/functions.php:2730
+#: ../../include/functions.php:2755 ../../include/functions.php:2756
 #, php-format
 msgid "%s years"
 msgstr ""
 
-#: ../../include/functions.php:2732
+#: ../../include/functions.php:2758
 msgid "Default values will be used"
 msgstr ""
 
-#: ../../include/functions.php:2917 ../../include/functions.php:2922
+#: ../../include/functions.php:2943 ../../include/functions.php:2948
 msgid "The file exceeds the maximum size"
 msgstr ""
 
-#: ../../include/functions.php:2918
+#: ../../include/functions.php:2944
 msgid ""
 "Please check this PHP runtime variable values: 
  upload_max_filesize "
 "(currently "
 msgstr ""
 
-#: ../../include/functions.php:2926
+#: ../../include/functions.php:2952
 msgid "The uploaded file was only partially uploaded"
 msgstr ""
 
-#: ../../include/functions.php:2930
+#: ../../include/functions.php:2956
 msgid "No file was uploaded"
 msgstr ""
 
-#: ../../include/functions.php:2934
+#: ../../include/functions.php:2960
 msgid "Missing a temporary folder"
 msgstr ""
 
-#: ../../include/functions.php:2938
+#: ../../include/functions.php:2964
 msgid "Failed to write file to disk"
 msgstr ""
 
-#: ../../include/functions.php:2942
+#: ../../include/functions.php:2968
 msgid "File upload stopped by extension"
 msgstr ""
 
-#: ../../include/functions.php:2946
+#: ../../include/functions.php:2972
 msgid "Unknown upload error"
 msgstr ""
 
-#: ../../include/functions.php:3057
+#: ../../include/functions.php:3083
 msgid "No data found to export"
 msgstr ""
 
-#: ../../include/functions.php:3378
+#: ../../include/functions.php:3404
 #: ../../operation/gis_maps/render_view.php:149
 msgid "5 seconds"
 msgstr ""
 
-#: ../../include/functions.php:3379
+#: ../../include/functions.php:3405
 #: ../../operation/gis_maps/render_view.php:150
 msgid "10 seconds"
 msgstr ""
 
-#: ../../include/functions.php:3380
+#: ../../include/functions.php:3406
 msgid "15 seconds"
 msgstr ""
 
-#: ../../include/functions.php:3381 ../../include/ajax/heatmap.ajax.php:50
+#: ../../include/functions.php:3407 ../../include/ajax/heatmap.ajax.php:50
 #: ../../include/class/AgentsAlerts.class.php:804
 #: ../../operation/heatmap.php:175 ../../operation/gis_maps/render_view.php:151
 msgid "30 seconds"
 msgstr ""
 
-#: ../../include/functions.php:3382 ../../include/ajax/heatmap.ajax.php:51
+#: ../../include/functions.php:3408 ../../include/ajax/heatmap.ajax.php:51
 #: ../../include/class/AgentsAlerts.class.php:805
 #: ../../operation/heatmap.php:176 ../../operation/gis_maps/render_view.php:152
 msgid "1 minute"
 msgstr ""
 
-#: ../../include/functions.php:3383
+#: ../../include/functions.php:3409
 #: ../../include/class/AgentsAlerts.class.php:806
 #: ../../operation/gis_maps/render_view.php:153
 msgid "2 minutes"
 msgstr ""
 
-#: ../../include/functions.php:3384 ../../include/ajax/heatmap.ajax.php:53
+#: ../../include/functions.php:3410 ../../include/ajax/heatmap.ajax.php:53
 #: ../../include/ajax/module.php:205
 #: ../../include/class/AgentsAlerts.class.php:807
 #: ../../operation/heatmap.php:178 ../../operation/gis_maps/render_view.php:154
 msgid "5 minutes"
 msgstr ""
 
-#: ../../include/functions.php:3385
+#: ../../include/functions.php:3411
 msgid "15 minutes"
 msgstr ""
 
-#: ../../include/functions.php:3386 ../../include/ajax/module.php:206
+#: ../../include/functions.php:3412 ../../include/ajax/module.php:206
 msgid "30 minutes"
 msgstr ""
 
-#: ../../include/functions.php:3901
+#: ../../include/functions.php:3927
 msgid "Summatory series"
 msgstr ""
 
-#: ../../include/functions.php:3905
+#: ../../include/functions.php:3931
 msgid "Average series"
 msgstr ""
 
-#: ../../include/functions.php:3933 ../../include/functions.php:3952
-#: ../../include/functions.php:3966 ../../include/functions.php:3988
-#: ../../include/functions.php:4069 ../../include/functions.php:4146
+#: ../../include/functions.php:3959 ../../include/functions.php:3978
+#: ../../include/functions.php:3992 ../../include/functions.php:4014
+#: ../../include/functions.php:4095 ../../include/functions.php:4172
 msgid "Unit "
 msgstr ""
 
-#: ../../include/functions.php:4014 ../../include/functions.php:4079
+#: ../../include/functions.php:4040 ../../include/functions.php:4105
 msgid "Min:"
 msgstr ""
 
-#: ../../include/functions.php:4021 ../../include/functions.php:4088
+#: ../../include/functions.php:4047 ../../include/functions.php:4114
 msgid "Max:"
 msgstr ""
 
-#: ../../include/functions.php:4028 ../../include/functions.php:4097
+#: ../../include/functions.php:4054 ../../include/functions.php:4123
 msgid "Avg:"
 msgstr ""
 
-#: ../../include/functions.php:4143 ../../include/functions.php:4151
+#: ../../include/functions.php:4169 ../../include/functions.php:4177
 msgid "of module"
 msgstr ""
 
-#: ../../include/functions.php:4170
+#: ../../include/functions.php:4196
 msgid "Projection"
 msgstr ""
 
-#: ../../include/functions.php:5990
+#: ../../include/functions.php:6039
 msgid "Testing Pandora FMS email"
 msgstr ""
 
-#: ../../include/functions.php:6003
+#: ../../include/functions.php:6052
 msgid ""
 "This is an email test sent from Pandora FMS. If you can read this, your "
 "configuration works."
 msgstr ""
 
-#: ../../include/functions.php:6237
-#: ../../include/class/ConsoleSupervisor.php:1494
-#: ../../include/class/ConsoleSupervisor.php:1518
-#: ../../include/class/ConsoleSupervisor.php:1547
-#: ../../include/class/ConsoleSupervisor.php:1629
+#: ../../include/functions.php:6286
+#: ../../include/class/ConsoleSupervisor.php:1490
+#: ../../include/class/ConsoleSupervisor.php:1514
+#: ../../include/class/ConsoleSupervisor.php:1543
+#: ../../include/class/ConsoleSupervisor.php:1624
 #, php-format
 msgid "Not recommended '%s' value in PHP configuration"
 msgstr ""
 
-#: ../../include/functions.php:6238
+#: ../../include/functions.php:6287
 msgid "Recommended value is: -1"
 msgstr ""
 
-#: ../../include/functions.php:6239
-#: ../../include/class/ConsoleSupervisor.php:1553
-#: ../../include/class/ConsoleSupervisor.php:1635
+#: ../../include/functions.php:6288
+#: ../../include/class/ConsoleSupervisor.php:1549
+#: ../../include/class/ConsoleSupervisor.php:1630
 msgid ""
 "Please, change it on your PHP configuration file (php.ini) or contact with "
 "administrator"
 msgstr ""
 
-#: ../../include/functions.php:6240 ../../general/login_help_dialog.php:96
+#: ../../include/functions.php:6289 ../../general/login_help_dialog.php:96
 #: ../../general/login_help_dialog.php:101 ../../general/mysqlerr.php:142
 msgid "Documentation"
 msgstr ""
@@ -42246,9 +42295,9 @@ msgstr ""
 msgid "Successful delete of alert template."
 msgstr ""
 
-#: ../../include/functions_api.php:6453 ../../include/functions_api.php:11966
-#: ../../include/functions_api.php:12032 ../../include/functions_api.php:12313
-#: ../../include/functions_api.php:12393
+#: ../../include/functions_api.php:6453 ../../include/functions_api.php:11971
+#: ../../include/functions_api.php:12037 ../../include/functions_api.php:12318
+#: ../../include/functions_api.php:12398
 #, php-format
 msgid "%d agents affected"
 msgstr ""
@@ -42344,159 +42393,159 @@ msgstr ""
 msgid "Successful deletion"
 msgstr ""
 
-#: ../../include/functions_api.php:9613
+#: ../../include/functions_api.php:9614
 msgid "User created."
 msgstr ""
 
-#: ../../include/functions_api.php:9706
+#: ../../include/functions_api.php:9707
 msgid "User updated."
 msgstr ""
 
-#: ../../include/functions_api.php:9783
+#: ../../include/functions_api.php:9784
 msgid "Enabled user."
 msgstr ""
 
-#: ../../include/functions_api.php:9791
+#: ../../include/functions_api.php:9792
 msgid "Disabled user."
 msgstr ""
 
-#: ../../include/functions_api.php:10086
+#: ../../include/functions_api.php:10087
 #, php-format
 msgid "Template have been inserted in %d agents."
 msgstr ""
 
-#: ../../include/functions_api.php:10258
+#: ../../include/functions_api.php:10263
 msgid "XML file was generated successfully in path: "
 msgstr ""
 
-#: ../../include/functions_api.php:10398
+#: ../../include/functions_api.php:10403
 #, php-format
 msgid "Module has been created in %d agents."
 msgstr ""
 
-#: ../../include/functions_api.php:10526
+#: ../../include/functions_api.php:10531
 #, php-format
 msgid "Action has been set for %d agents."
 msgstr ""
 
-#: ../../include/functions_api.php:11566
+#: ../../include/functions_api.php:11571
 msgid "User deleted."
 msgstr ""
 
-#: ../../include/functions_api.php:11625
+#: ../../include/functions_api.php:11630
 msgid "User profile added."
 msgstr ""
 
-#: ../../include/functions_api.php:11690
+#: ../../include/functions_api.php:11695
 msgid "User profile deleted."
 msgstr ""
 
-#: ../../include/functions_api.php:11973
+#: ../../include/functions_api.php:11978
 msgid "Module disabled successfully."
 msgstr ""
 
-#: ../../include/functions_api.php:11975
+#: ../../include/functions_api.php:11980
 msgid "The module could not be disabled."
 msgstr ""
 
-#: ../../include/functions_api.php:12039
+#: ../../include/functions_api.php:12044
 msgid "Module enabled successfully."
 msgstr ""
 
-#: ../../include/functions_api.php:12041
+#: ../../include/functions_api.php:12046
 msgid "The module could not be enabled."
 msgstr ""
 
-#: ../../include/functions_api.php:12089 ../../include/functions_api.php:12142
+#: ../../include/functions_api.php:12094 ../../include/functions_api.php:12147
 msgid "The alert could not be disabled."
 msgstr ""
 
-#: ../../include/functions_api.php:12189 ../../include/functions_api.php:12242
+#: ../../include/functions_api.php:12194 ../../include/functions_api.php:12247
 msgid "The alert could not be enabled."
 msgstr ""
 
-#: ../../include/functions_api.php:13519
+#: ../../include/functions_api.php:13524
 msgid "Enabled agent."
 msgstr ""
 
-#: ../../include/functions_api.php:13527
+#: ../../include/functions_api.php:13532
 msgid "Disabled agent."
 msgstr ""
 
-#: ../../include/functions_api.php:14506
+#: ../../include/functions_api.php:14511
 msgid "Metaconsole and the licenses of all nodes were updated."
 msgstr ""
 
-#: ../../include/functions_api.php:14508
+#: ../../include/functions_api.php:14513
 #, php-format
 msgid "Metaconsole license updated but %d of %d node failed to sync."
 msgstr ""
 
-#: ../../include/functions_api.php:14511
+#: ../../include/functions_api.php:14516
 msgid "This function is for metaconsole only."
 msgstr ""
 
-#: ../../include/functions_api.php:14901 ../../include/functions_api.php:14972
+#: ../../include/functions_api.php:14906 ../../include/functions_api.php:14977
 msgid "Successfully deleted."
 msgstr ""
 
-#: ../../include/functions_api.php:14931
+#: ../../include/functions_api.php:14936
 msgid "The user cannot access the cluster."
 msgstr ""
 
-#: ../../include/functions_api.php:15817
+#: ../../include/functions_api.php:15822
 msgid "Event filter successfully created."
 msgstr ""
 
-#: ../../include/functions_api.php:16050
+#: ../../include/functions_api.php:16055
 msgid "Event filter successfully updated."
 msgstr ""
 
-#: ../../include/functions_api.php:16091
+#: ../../include/functions_api.php:16096
 msgid "Event filter successfully deleted."
 msgstr ""
 
-#: ../../include/functions_api.php:16407
+#: ../../include/functions_api.php:16412
 msgid "Validated traps."
 msgstr ""
 
-#: ../../include/functions_api.php:16434
+#: ../../include/functions_api.php:16439
 msgid "Deleted traps."
 msgstr ""
 
-#: ../../include/functions_api.php:16627
+#: ../../include/functions_api.php:16632
 #, php-format
 msgid "Successfully updated module/alert count in id agent %d."
 msgstr ""
 
-#: ../../include/functions_api.php:16629
+#: ../../include/functions_api.php:16634
 msgid "Successfully updated module/alert count in all agents"
 msgstr ""
 
-#: ../../include/functions_api.php:17103
+#: ../../include/functions_api.php:17108
 #, php-format
 msgid "Successfully added to delete pending id agent %d to id policy %d."
 msgstr ""
 
-#: ../../include/functions_api.php:17292
+#: ../../include/functions_api.php:17297
 msgid "Error enable/disable discovery task. Id_user cannot be left blank."
 msgstr ""
 
-#: ../../include/functions_api.php:17300
+#: ../../include/functions_api.php:17305
 msgid ""
 "Error enable/disable discovery task. Enable/disable value cannot be left "
 "blank."
 msgstr ""
 
-#: ../../include/functions_api.php:17325
+#: ../../include/functions_api.php:17330
 msgid "Error in discovery task enabling/disabling."
 msgstr ""
 
-#: ../../include/functions_api.php:17333
+#: ../../include/functions_api.php:17338
 msgid "Enabled discovery task."
 msgstr ""
 
-#: ../../include/functions_api.php:17341
+#: ../../include/functions_api.php:17346
 msgid "Disabled discovery task."
 msgstr ""
 
@@ -42527,11 +42576,11 @@ msgstr ""
 
 #: ../../include/functions_networkmap.php:2068
 #: ../../include/functions_maps.php:73
-#: ../../include/functions_planned_downtimes.php:966
+#: ../../include/functions_planned_downtimes.php:967
 msgid "Copy of "
 msgstr ""
 
-#: ../../include/functions_networkmap.php:3505
+#: ../../include/functions_networkmap.php:3508
 msgid "Map not found."
 msgstr ""
 
@@ -42649,10 +42698,10 @@ msgid "F."
 msgstr ""
 
 #: ../../include/ajax/alert_list.ajax.php:341
-#: ../../operation/agentes/alerts_status.php:367
-#: ../../operation/agentes/alerts_status.php:368
-#: ../../operation/agentes/alerts_status.php:408
-#: ../../operation/agentes/alerts_status.php:409
+#: ../../operation/agentes/alerts_status.php:374
+#: ../../operation/agentes/alerts_status.php:375
+#: ../../operation/agentes/alerts_status.php:415
+#: ../../operation/agentes/alerts_status.php:416
 msgid "No alerts found"
 msgstr ""
 
@@ -42806,124 +42855,124 @@ msgstr ""
 msgid "Error delete filter."
 msgstr ""
 
-#: ../../include/ajax/events.php:95
+#: ../../include/ajax/events.php:96
 msgid "Failed to retrieve comments"
 msgstr ""
 
-#: ../../include/ajax/events.php:766
+#: ../../include/ajax/events.php:767
 msgid "New filter"
 msgstr ""
 
-#: ../../include/ajax/events.php:784
+#: ../../include/ajax/events.php:785
 msgid "Save in Group"
 msgstr ""
 
-#: ../../include/ajax/events.php:820
+#: ../../include/ajax/events.php:821
 msgid "Overwrite filter"
 msgstr ""
 
-#: ../../include/ajax/events.php:891
+#: ../../include/ajax/events.php:892
 msgid "Filter name cannot be left blank"
 msgstr ""
 
-#: ../../include/ajax/events.php:1242
+#: ../../include/ajax/events.php:1243
 msgid "unauthorized"
 msgstr ""
 
-#: ../../include/ajax/events.php:1348
+#: ../../include/ajax/events.php:1349
 msgid "Error executing response"
 msgstr ""
 
-#: ../../include/ajax/events.php:1666
+#: ../../include/ajax/events.php:1673
 msgid "Related"
 msgstr ""
 
-#: ../../include/ajax/events.php:1678
+#: ../../include/ajax/events.php:1685
 msgid "Agent fields"
 msgstr ""
 
-#: ../../include/ajax/events.php:1816
+#: ../../include/ajax/events.php:1823
 msgid "Error adding comment"
 msgstr ""
 
-#: ../../include/ajax/events.php:1823
+#: ../../include/ajax/events.php:1830
 msgid "Comment added successfully"
 msgstr ""
 
-#: ../../include/ajax/events.php:1830
+#: ../../include/ajax/events.php:1837
 msgid "Error changing event status"
 msgstr ""
 
-#: ../../include/ajax/events.php:1837
+#: ../../include/ajax/events.php:1844
 msgid "Event status changed successfully"
 msgstr ""
 
-#: ../../include/ajax/events.php:1844
+#: ../../include/ajax/events.php:1851
 msgid "Error changing event owner"
 msgstr ""
 
-#: ../../include/ajax/events.php:1851
+#: ../../include/ajax/events.php:1858
 msgid "Event owner changed successfully"
 msgstr ""
 
-#: ../../include/ajax/events.php:1858
+#: ../../include/ajax/events.php:1865
 msgid "Error deleting event"
 msgstr ""
 
-#: ../../include/ajax/events.php:1984
+#: ../../include/ajax/events.php:1991
 msgid "Show all Events 24h"
 msgstr ""
 
-#: ../../include/ajax/events.php:2074
+#: ../../include/ajax/events.php:2085
 msgid "These commands will apply to all selected events"
 msgstr ""
 
-#: ../../include/ajax/events.php:2136
+#: ../../include/ajax/events.php:2147
 msgid "Total number of events in this node reached"
 msgstr ""
 
-#: ../../include/ajax/events.php:2170
+#: ../../include/ajax/events.php:2181
 msgid "Total Events per node"
 msgstr ""
 
-#: ../../include/ajax/events.php:2224 ../../operation/events/events.php:1549
+#: ../../include/ajax/events.php:2235 ../../operation/events/events.php:1549
 msgid "Events list"
 msgstr ""
 
-#: ../../include/ajax/events.php:2235
+#: ../../include/ajax/events.php:2246
 msgid "Console configuration"
 msgstr ""
 
-#: ../../include/ajax/events.php:2242
+#: ../../include/ajax/events.php:2253
 msgid "Set condition"
 msgstr ""
 
-#: ../../include/ajax/events.php:2249
+#: ../../include/ajax/events.php:2260
 #: ../../operation/events/sound_events.php:192
 msgid "All new events"
 msgstr ""
 
-#: ../../include/ajax/events.php:2286
+#: ../../include/ajax/events.php:2297
 msgid "Sound duration"
 msgstr ""
 
-#: ../../include/ajax/events.php:2317
+#: ../../include/ajax/events.php:2328
 msgid "Sound melody"
 msgstr ""
 
-#: ../../include/ajax/events.php:2331
+#: ../../include/ajax/events.php:2342
 msgid "Test sound"
 msgstr ""
 
-#: ../../include/ajax/events.php:2355
+#: ../../include/ajax/events.php:2366
 msgid "Discovered alerts"
 msgstr ""
 
-#: ../../include/ajax/events.php:2362
+#: ../../include/ajax/events.php:2373
 msgid "No alerts discovered"
 msgstr ""
 
-#: ../../include/ajax/events.php:2367
+#: ../../include/ajax/events.php:2378
 msgid "Congrats! there’s nothing to show"
 msgstr ""
 
@@ -42946,28 +42995,28 @@ msgstr ""
 #: ../../include/functions_agents.php:2974
 #: ../../include/functions_agents.php:3029
 #: ../../include/functions_agents.php:3084
-#: ../../include/functions_reporting.php:12635
+#: ../../include/functions_reporting.php:12921
 msgid "At least one module in CRITICAL status"
 msgstr ""
 
 #: ../../include/functions_agents.php:2980
 #: ../../include/functions_agents.php:3039
 #: ../../include/functions_agents.php:3092
-#: ../../include/functions_reporting.php:12642
+#: ../../include/functions_reporting.php:12928
 msgid "At least one module in WARNING status"
 msgstr ""
 
 #: ../../include/functions_agents.php:2986
 #: ../../include/functions_agents.php:3049
 #: ../../include/functions_agents.php:3100
-#: ../../include/functions_reporting.php:12649
+#: ../../include/functions_reporting.php:12935
 msgid "At least one module is in UKNOWN status"
 msgstr ""
 
 #: ../../include/functions_agents.php:2992
 #: ../../include/functions_agents.php:3059
 #: ../../include/functions_agents.php:3108
-#: ../../include/functions_reporting.php:12656
+#: ../../include/functions_reporting.php:12942
 msgid "All Monitors OK"
 msgstr ""
 
@@ -42979,6 +43028,15 @@ msgstr ""
 msgid "Dialog response time"
 msgstr ""
 
+#: ../../include/functions_inventory.php:115
+#: ../../include/functions_inventory.php:868
+msgid "No changes found"
+msgstr ""
+
+#: ../../include/functions_inventory.php:214
+msgid "Get CSV file"
+msgstr ""
+
 #: ../../include/functions_plugins.php:58
 #, php-format
 msgid "Failed to erase module %d: %s"
@@ -43027,98 +43085,70 @@ msgstr ""
 msgid "File has an invalid extension"
 msgstr ""
 
-#: ../../include/functions_modules.php:4075
+#: ../../include/functions_modules.php:4150
 msgid "Realtime SNMP graph"
 msgstr ""
 
-#: ../../include/functions_modules.php:4140
+#: ../../include/functions_modules.php:4215
 msgid "ALL"
 msgstr ""
 
-#: ../../include/functions_modules.php:4156
+#: ../../include/functions_modules.php:4231
 msgid "NOT NORMAL"
 msgstr ""
 
-#: ../../include/auth/mysql.php:335 ../../include/auth/mysql.php:363
+#: ../../include/auth/mysql.php:305 ../../include/auth/mysql.php:333
 msgid ""
 "Problems with configuration permissions. Please contact with Administrator"
 msgstr ""
 
-#: ../../include/auth/mysql.php:350 ../../include/auth/mysql.php:413
-#: ../../include/auth/mysql.php:428 ../../include/auth/mysql.php:459
+#: ../../include/auth/mysql.php:320 ../../include/auth/mysql.php:383
+#: ../../include/auth/mysql.php:398 ../../include/auth/mysql.php:429
 msgid "User not found in database or incorrect password"
 msgstr ""
 
-#: ../../include/auth/mysql.php:376
+#: ../../include/auth/mysql.php:346
 msgid ""
 "Ooops User not found in\n"
 "\t\t\t\tdatabase or incorrect password"
 msgstr ""
 
-#: ../../include/auth/mysql.php:781
+#: ../../include/auth/mysql.php:769
 msgid "Could not changes password on remote pandora"
 msgstr ""
 
-#: ../../include/auth/mysql.php:866
+#: ../../include/auth/mysql.php:854
 msgid "Your installation of PHP does not support LDAP"
 msgstr ""
 
-#: ../../include/api.php:237
+#: ../../include/api.php:257
 msgid "User or group not specified"
 msgstr ""
 
-#: ../../include/api.php:238
+#: ../../include/api.php:258
 msgid "User, group not specified"
 msgstr ""
 
-#: ../../include/api.php:269
+#: ../../include/api.php:289
 msgid "User, group or profile not specified"
 msgstr ""
 
-#: ../../include/api.php:270
+#: ../../include/api.php:290
 msgid "User, group or profile status not specified"
 msgstr ""
 
-#: ../../include/functions_graph.php:1089
-#: ../../include/functions_reporting.php:4678
-#: ../../include/functions_reporting.php:4721
-msgid "No data to display within the selected interval"
-msgstr ""
-
-#: ../../include/functions_graph.php:2639
+#: ../../include/functions_graph.php:2608
 msgid "Not fired alerts"
 msgstr ""
 
-#: ../../include/functions_graph.php:2658
-#: ../../include/functions_graph.php:2794
-#: ../../include/functions_graph.php:2892
-#: ../../include/functions_graph.php:3862
-#: ../../include/functions_reporting.php:1952
-#: ../../include/functions_reporting.php:2199
-#: ../../include/functions_reporting.php:2214
-#: ../../include/functions_reporting.php:2242
-#: ../../include/functions_reporting.php:2274
-#: ../../include/functions_reporting.php:3833
-#: ../../include/functions_reporting.php:4201
-#: ../../include/functions_reporting.php:4229
-#: ../../include/functions_reporting.php:4261
-#: ../../include/functions_reporting.php:5234
-#: ../../include/functions_reporting.php:10881
-#: ../../include/functions_reporting.php:10909
-#: ../../include/functions_reporting.php:10941
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:514
-#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:479
-msgid "other"
-msgstr ""
-
-#: ../../include/functions_graph.php:3399 ../../include/functions_ui.php:3833
+#: ../../include/functions_graph.php:3236 ../../include/functions_ui.php:3837
 #: ../../include/functions_events.php:108
-#: ../../include/functions_events.php:2826
+#: ../../include/functions_events.php:2805
 #: ../../operation/events/events.php:668
 msgid "SYSTEM"
 msgstr ""
 
-#: ../../include/functions_graph.php:5463
+#: ../../include/functions_graph.php:5251
 msgid "Main node"
 msgstr ""
 
@@ -43159,43 +43189,43 @@ msgstr ""
 msgid "Next agent contact"
 msgstr ""
 
-#: ../../include/functions_treeview.php:702
-msgid "Edit cluster"
+#: ../../include/functions_treeview.php:697
+msgid "Go to cluster edition"
 msgstr ""
 
-#: ../../include/functions_treeview.php:705
+#: ../../include/functions_treeview.php:700
 msgid "Go to agent edition"
 msgstr ""
 
-#: ../../include/functions_treeview.php:717
+#: ../../include/functions_treeview.php:712
 msgid "Agent data"
 msgstr ""
 
-#: ../../include/functions_treeview.php:748
+#: ../../include/functions_treeview.php:743
 #: ../../operation/agentes/estado_generalagente.php:471
 msgid "Position (Long, Lat)"
 msgstr ""
 
-#: ../../include/functions_treeview.php:765
+#: ../../include/functions_treeview.php:760
 #: ../../operation/agentes/estado_generalagente.php:513
 msgid "Timezone Offset"
 msgstr ""
 
-#: ../../include/functions_treeview.php:797
+#: ../../include/functions_treeview.php:792
 msgid "Advanced information"
 msgstr ""
 
-#: ../../include/functions_treeview.php:810
+#: ../../include/functions_treeview.php:805
 msgid "Agent access rate (24h)"
 msgstr ""
 
-#: ../../include/functions_treeview.php:876
-#: ../../operation/agentes/pandora_networkmap.view.php:1273
+#: ../../include/functions_treeview.php:871
+#: ../../operation/agentes/pandora_networkmap.view.php:1277
 #: ../../operation/agentes/estado_generalagente.php:735
 msgid "Interface traffic"
 msgstr ""
 
-#: ../../include/functions_treeview.php:899
+#: ../../include/functions_treeview.php:894
 msgid "Interface information"
 msgstr ""
 
@@ -43283,14 +43313,10 @@ msgstr ""
 msgid "Manage export targets"
 msgstr ""
 
-#: ../../include/functions_menu.php:525 ../../operation/menu.php:138
+#: ../../include/functions_menu.php:525 ../../operation/menu.php:142
 msgid "SNMP trap generator"
 msgstr ""
 
-#: ../../include/functions_menu.php:526 ../../operation/menu.php:127
-msgid "SNMP console"
-msgstr ""
-
 #: ../../include/functions_menu.php:528
 msgid "Manage incident"
 msgstr ""
@@ -43303,6 +43329,51 @@ msgstr ""
 msgid "Administration"
 msgstr ""
 
+#: ../../include/functions_menu.php:817 ../../include/functions_ui.php:287
+msgid "Information"
+msgstr ""
+
+#: ../../include/functions_menu.php:819 ../../include/functions_menu.php:961
+#: ../../include/class/Diagnostics.class.php:243
+msgid "System Info"
+msgstr ""
+
+#: ../../include/functions_menu.php:820
+msgid "PHP System"
+msgstr ""
+
+#: ../../include/functions_menu.php:835
+msgid "MR version"
+msgstr ""
+
+#: ../../include/functions_menu.php:841
+msgid "Update manager"
+msgstr ""
+
+#: ../../include/functions_menu.php:842
+msgid "System report"
+msgstr ""
+
+#: ../../include/functions_menu.php:858
+#: ../../include/class/Diagnostics.class.php:235
+msgid "Database health status"
+msgstr ""
+
+#: ../../include/functions_menu.php:888
+#: ../../include/class/Diagnostics.class.php:239
+msgid "Database status info"
+msgstr ""
+
+#: ../../include/functions_menu.php:926
+#: ../../include/class/Diagnostics.class.php:252
+#, php-format
+msgid "Tables fragmentation in the %s database"
+msgstr ""
+
+#: ../../include/functions_menu.php:1012
+msgid "PHP system"
+msgstr ""
+
 #: ../../include/functions_incidents.php:29
 #: ../../include/functions_incidents.php:55
 msgid "Informative"
@@ -43731,8 +43802,8 @@ msgid "Please check if the email configuration is correct."
 msgstr ""
 
 #: ../../include/functions_profile.php:188
-#: ../../operation/users/user_edit.php:812
-#: ../../operation/users/user_edit.php:821
+#: ../../operation/users/user_edit.php:886
+#: ../../operation/users/user_edit.php:895
 msgid "Profiles/Groups assigned to this user"
 msgstr ""
 
@@ -43752,10 +43823,6 @@ msgstr ""
 msgid "Top UDP protocols"
 msgstr ""
 
-#: ../../include/functions_ui.php:287
-msgid "Information"
-msgstr ""
-
 #: ../../include/functions_ui.php:465
 msgid "Request successfully processed"
 msgstr ""
@@ -43786,7 +43853,7 @@ msgstr ""
 msgid "Unknown option."
 msgstr ""
 
-#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2494
+#: ../../include/functions_ui.php:1735 ../../include/functions_config.php:2470
 msgid "the Flexible Monitoring System"
 msgstr ""
 
@@ -43795,86 +43862,86 @@ msgstr ""
 msgid "Total items: %s"
 msgstr ""
 
-#: ../../include/functions_ui.php:2540
+#: ../../include/functions_ui.php:2544
 msgid "Unknown type"
 msgstr ""
 
-#: ../../include/functions_ui.php:3443
+#: ../../include/functions_ui.php:3447
 msgid "No matching records found"
 msgstr ""
 
-#: ../../include/functions_ui.php:3444
+#: ../../include/functions_ui.php:3448
 msgid "No data available in table"
 msgstr ""
 
-#: ../../include/functions_ui.php:3539 ../../include/functions_ui.php:3540
+#: ../../include/functions_ui.php:3543 ../../include/functions_ui.php:3544
 msgid "Export current page to CSV"
 msgstr ""
 
-#: ../../include/functions_ui.php:3824 ../../include/functions_events.php:75
+#: ../../include/functions_ui.php:3828 ../../include/functions_events.php:75
 #: ../../include/functions_events.php:101 ../../operation/events/events.php:659
 #: ../../operation/events/events.php:723
 msgid "ALERT"
 msgstr ""
 
-#: ../../include/functions_ui.php:3902 ../../include/functions_events.php:167
+#: ../../include/functions_ui.php:3906 ../../include/functions_events.php:167
 #: ../../operation/events/events.php:583
 msgid "MAINTENANCE"
 msgstr ""
 
-#: ../../include/functions_ui.php:3907 ../../include/functions_events.php:170
+#: ../../include/functions_ui.php:3911 ../../include/functions_events.php:170
 #: ../../operation/events/events.php:588
 msgid "INFORMATIONAL"
 msgstr ""
 
-#: ../../include/functions_ui.php:3927 ../../include/functions_events.php:176
+#: ../../include/functions_ui.php:3931 ../../include/functions_events.php:176
 #: ../../operation/events/events.php:598
 msgid "MINOR"
 msgstr ""
 
-#: ../../include/functions_ui.php:3932 ../../include/functions_events.php:173
+#: ../../include/functions_ui.php:3936 ../../include/functions_events.php:173
 #: ../../operation/events/events.php:593
 msgid "MAJOR"
 msgstr ""
 
-#: ../../include/functions_ui.php:4751 ../../include/functions_html.php:930
+#: ../../include/functions_ui.php:4755 ../../include/functions_html.php:930
 #: ../../include/functions_html.php:3392 ../../include/functions_html.php:3884
-#: ../../include/functions_reporting.php:11686
-#: ../../include/functions_reporting.php:11843
-#: ../../include/functions_reporting.php:11857
-#: ../../include/functions_reporting.php:14196
-#: ../../include/functions_reporting.php:14271
+#: ../../include/functions_reporting.php:11972
+#: ../../include/functions_reporting.php:12129
+#: ../../include/functions_reporting.php:12143
+#: ../../include/functions_reporting.php:14482
+#: ../../include/functions_reporting.php:14557
 msgid "Enterprise version not installed"
 msgstr ""
 
-#: ../../include/functions_ui.php:5133
+#: ../../include/functions_ui.php:5137
 msgid "Type at least two characters to search."
 msgstr ""
 
-#: ../../include/functions_ui.php:6072
+#: ../../include/functions_ui.php:6076
 msgid "Unhandled error"
 msgstr ""
 
-#: ../../include/functions_ui.php:6073
+#: ../../include/functions_ui.php:6077
 msgid "An unhandled error occurs"
 msgstr ""
 
-#: ../../include/functions_ui.php:6344
+#: ../../include/functions_ui.php:6348
 #, php-format
 msgid ""
 "These controls are using the timezone of the system (%s) instead of yours "
 "(%s). The difference with your time zone in hours is %s."
 msgstr ""
 
-#: ../../include/functions_ui.php:6680
+#: ../../include/functions_ui.php:6684
 msgid "Execute query"
 msgstr ""
 
-#: ../../include/functions_ui.php:6702
+#: ../../include/functions_ui.php:6706
 msgid "Results"
 msgstr ""
 
-#: ../../include/functions_ui.php:6766
+#: ../../include/functions_ui.php:6770
 msgid "Show password"
 msgstr ""
 
@@ -43885,37 +43952,32 @@ msgstr ""
 msgid "Last value: "
 msgstr ""
 
-#: ../../include/functions_visual_map.php:2632
+#: ../../include/functions_visual_map.php:2634
 msgid "Agent successfully added to layout"
 msgstr ""
 
-#: ../../include/functions_visual_map.php:2824
+#: ../../include/functions_visual_map.php:2826
 msgid "Modules successfully added to layout"
 msgstr ""
 
-#: ../../include/functions_visual_map.php:3157
+#: ../../include/functions_visual_map.php:3108
 msgid "Agents successfully added to layout"
 msgstr ""
 
-#: ../../include/functions_visual_map.php:3553
+#: ../../include/functions_visual_map.php:3504
 msgid "Cannot load the visualmap"
 msgstr ""
 
-#: ../../include/functions_visual_map.php:4224
-#: ../../include/rest-api/models/VisualConsole/Item.php:2107
+#: ../../include/functions_visual_map.php:4175
+#: ../../include/rest-api/models/VisualConsole/Item.php:2108
 msgid "Bars graph"
 msgstr ""
 
-#: ../../include/functions_visual_map.php:4234
-#: ../../include/rest-api/models/VisualConsole/Item.php:2115
+#: ../../include/functions_visual_map.php:4185
+#: ../../include/rest-api/models/VisualConsole/Item.php:2116
 msgid "Percentile bar"
 msgstr ""
 
-#: ../../include/functions_visual_map.php:4239
-#: ../../include/rest-api/models/VisualConsole/Item.php:2123
-msgid "Circular progress bar"
-msgstr ""
-
 #: ../../include/functions_clippy.php:152
 #, php-format
 msgid "%s assistant"
@@ -43962,7 +44024,7 @@ msgstr ""
 msgid "No actions defined"
 msgstr ""
 
-#: ../../include/functions_alerts.php:2661
+#: ../../include/functions_alerts.php:2665
 msgid "Alert and command group does not match"
 msgstr ""
 
@@ -44079,6 +44141,10 @@ msgstr ""
 msgid "Time (ms)"
 msgstr ""
 
+#: ../../include/functions_users.php:916
+msgid "NONE"
+msgstr ""
+
 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:438
 msgid "Add new range"
 msgstr ""
@@ -44088,24 +44154,24 @@ msgid "Current ranges"
 msgstr ""
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:217
-#: ../../include/rest-api/models/VisualConsole/Item.php:1994
+#: ../../include/rest-api/models/VisualConsole/Item.php:1995
 msgid "width"
 msgstr ""
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:227
-#: ../../include/rest-api/models/VisualConsole/Item.php:2004
+#: ../../include/rest-api/models/VisualConsole/Item.php:2005
 msgid "height"
 msgstr ""
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:249
-#: ../../include/rest-api/models/VisualConsole/Item.php:2026
+#: ../../include/rest-api/models/VisualConsole/Item.php:2027
 msgid "X"
 msgstr ""
 
 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:273
 #: ../../include/rest-api/models/VisualConsole/Items/Line.php:499
 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:950
-#: ../../include/rest-api/models/VisualConsole/Item.php:2063
+#: ../../include/rest-api/models/VisualConsole/Item.php:2064
 msgid "Show on top"
 msgstr ""
 
@@ -44129,20 +44195,20 @@ msgstr ""
 msgid "Avg Value"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:487
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:658
+#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:390
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:648
 msgid "Graph Type"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:270
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:275
 msgid "12h"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:290
+#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:295
 msgid "Legend color"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:672
+#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:662
 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:376
 #: ../../include/lib/Dashboard/Widgets/single_graph.php:336
 msgid "Show legend"
@@ -44151,8 +44217,8 @@ msgstr ""
 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:538
 #: ../../include/rest-api/models/VisualConsole/Items/NetworkLink.php:619
 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:280
-#: ../../include/rest-api/models/VisualConsole/View.php:712
-#: ../../include/rest-api/models/VisualConsole/View.php:791
+#: ../../include/rest-api/models/VisualConsole/View.php:713
+#: ../../include/rest-api/models/VisualConsole/View.php:792
 msgid "Failed to connect to node"
 msgstr ""
 
@@ -44183,59 +44249,59 @@ msgstr ""
 msgid "Item type has no getFormInputs method ["
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/View.php:729
+#: ../../include/rest-api/models/VisualConsole/View.php:730
 msgid "NetworkLink from"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/View.php:733
-#: ../../include/rest-api/models/VisualConsole/View.php:812
+#: ../../include/rest-api/models/VisualConsole/View.php:734
+#: ../../include/rest-api/models/VisualConsole/View.php:813
 #, php-format
 msgid "Interface %s status"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/View.php:738
-#: ../../include/rest-api/models/VisualConsole/View.php:817
+#: ../../include/rest-api/models/VisualConsole/View.php:739
+#: ../../include/rest-api/models/VisualConsole/View.php:818
 #: ../../operation/agentes/interface_traffic_graph_win.php:78
 msgid "In"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/View.php:739
-#: ../../include/rest-api/models/VisualConsole/View.php:818
+#: ../../include/rest-api/models/VisualConsole/View.php:740
+#: ../../include/rest-api/models/VisualConsole/View.php:819
 #: ../../operation/agentes/interface_traffic_graph_win.php:79
 msgid "Out"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/View.php:808
+#: ../../include/rest-api/models/VisualConsole/View.php:809
 msgid "NetworkLink to"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/View.php:860
+#: ../../include/rest-api/models/VisualConsole/View.php:861
 #, php-format
 msgid "Failed to generate charts: %s"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:1964
+#: ../../include/rest-api/models/VisualConsole/Item.php:1965
 msgid "Label position"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2051
+#: ../../include/rest-api/models/VisualConsole/Item.php:2052
 msgid "Link enabled"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2093
+#: ../../include/rest-api/models/VisualConsole/Item.php:2094
 msgid "Static graph"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2111
+#: ../../include/rest-api/models/VisualConsole/Item.php:2112
 msgid "Event History Graph"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2119
+#: ../../include/rest-api/models/VisualConsole/Item.php:2120
 msgid "Percentile bubble"
 msgstr ""
 
-#: ../../include/rest-api/models/VisualConsole/Item.php:2589
 #: ../../include/rest-api/models/VisualConsole/Item.php:2590
+#: ../../include/rest-api/models/VisualConsole/Item.php:2591
 msgid "Image Vc"
 msgstr ""
 
@@ -44288,14 +44354,14 @@ msgstr ""
 #: ../../include/functions_groups.php:123
 #: ../../include/functions_groups.php:187
 #: ../../operation/search_results.php:120
-#: ../../operation/agentes/ver_agente.php:1572
+#: ../../operation/agentes/ver_agente.php:1590
 msgid "Graphs"
 msgstr ""
 
 #: ../../include/functions_reports.php:639
 #: ../../include/functions_reports.php:1090
-#: ../../include/functions_reporting.php:10317
-#: ../../include/functions_reporting.php:10477
+#: ../../include/functions_reporting.php:10535
+#: ../../include/functions_reporting.php:10695
 msgid "Simple graph"
 msgstr ""
 
@@ -44416,12 +44482,12 @@ msgid "Inventory changes"
 msgstr ""
 
 #: ../../include/functions_reports.php:906
-#: ../../include/functions_reporting.php:6602
+#: ../../include/functions_reporting.php:6817
 msgid "Agent configuration"
 msgstr ""
 
 #: ../../include/functions_reports.php:910
-#: ../../include/functions_reporting.php:4863
+#: ../../include/functions_reporting.php:5126
 msgid "Group configuration"
 msgstr ""
 
@@ -44487,8 +44553,8 @@ msgstr ""
 msgid "Type at least two characters to search the module."
 msgstr ""
 
-#: ../../include/functions_html.php:4818 ../../index.php:521
-#: ../../index.php:804 ../../index.php:878
+#: ../../include/functions_html.php:4818 ../../index.php:524
+#: ../../index.php:807 ../../index.php:881
 #, php-format
 msgid "%s cannot verify the origin of the request. Try again, please."
 msgstr ""
@@ -44551,7 +44617,7 @@ msgid "Failed updated: User is not admin."
 msgstr ""
 
 #: ../../include/functions_config.php:188
-msgid "phantomjs config directory"
+msgid "Chromium config directory"
 msgstr ""
 
 #: ../../include/functions_config.php:204
@@ -44567,7 +44633,7 @@ msgid "Integria inventory"
 msgstr ""
 
 #: ../../include/functions_config.php:248
-#: ../../include/functions_config.php:1797
+#: ../../include/functions_config.php:1778
 msgid "Integria API password"
 msgstr ""
 
@@ -44626,39 +44692,39 @@ msgstr ""
 msgid "Module Custom ID read only"
 msgstr ""
 
-#: ../../include/functions_config.php:419
+#: ../../include/functions_config.php:424
 msgid "Replication DB host"
 msgstr ""
 
-#: ../../include/functions_config.php:423
+#: ../../include/functions_config.php:428
 msgid "Replication DB database"
 msgstr ""
 
-#: ../../include/functions_config.php:427
+#: ../../include/functions_config.php:432
 msgid "Replication DB user"
 msgstr ""
 
-#: ../../include/functions_config.php:431
+#: ../../include/functions_config.php:436
 msgid "Replication DB password"
 msgstr ""
 
-#: ../../include/functions_config.php:435
+#: ../../include/functions_config.php:440
 msgid "Replication DB port"
 msgstr ""
 
-#: ../../include/functions_config.php:439
+#: ../../include/functions_config.php:444
 msgid "Metaconsole agent cache"
 msgstr ""
 
-#: ../../include/functions_config.php:447
+#: ../../include/functions_config.php:452
 msgid "Enable Update Manager"
 msgstr ""
 
-#: ../../include/functions_config.php:451
+#: ../../include/functions_config.php:456
 msgid "Ipam Ocuppied Manager Critical"
 msgstr ""
 
-#: ../../include/functions_config.php:455
+#: ../../include/functions_config.php:460
 msgid "Ipam Ocuppied Manager Warning"
 msgstr ""
 
@@ -44718,328 +44784,328 @@ msgstr ""
 msgid "SNMP Interface Agent Wizard"
 msgstr ""
 
-#: ../../include/functions_config.php:1039
+#: ../../include/functions_config.php:1020
 msgid "Show QR code header"
 msgstr ""
 
-#: ../../include/functions_config.php:1067
+#: ../../include/functions_config.php:1048
 msgid "Custom logo white background"
 msgstr ""
 
-#: ../../include/functions_config.php:1095
+#: ../../include/functions_config.php:1076
 msgid "Custom title header"
 msgstr ""
 
-#: ../../include/functions_config.php:1099
+#: ../../include/functions_config.php:1080
 msgid "Custom subtitle header"
 msgstr ""
 
-#: ../../include/functions_config.php:1123
-#: ../../include/functions_config.php:1163
+#: ../../include/functions_config.php:1104
+#: ../../include/functions_config.php:1144
 msgid "Custom Docs url"
 msgstr ""
 
-#: ../../include/functions_config.php:1127
-#: ../../include/functions_config.php:1167
+#: ../../include/functions_config.php:1108
+#: ../../include/functions_config.php:1148
 msgid "Custom support url"
 msgstr ""
 
-#: ../../include/functions_config.php:1139
+#: ../../include/functions_config.php:1120
 msgid "Custom logo metaconsole (white background)"
 msgstr ""
 
-#: ../../include/functions_config.php:1143
+#: ../../include/functions_config.php:1124
 msgid "Custom logo login metaconsole"
 msgstr ""
 
-#: ../../include/functions_config.php:1147
+#: ../../include/functions_config.php:1128
 msgid "Custom splash login metaconsole"
 msgstr ""
 
-#: ../../include/functions_config.php:1151
+#: ../../include/functions_config.php:1132
 msgid "Custom title1 login metaconsole"
 msgstr ""
 
-#: ../../include/functions_config.php:1155
+#: ../../include/functions_config.php:1136
 msgid "Custom title2 login metaconsole"
 msgstr ""
 
-#: ../../include/functions_config.php:1159
+#: ../../include/functions_config.php:1140
 msgid "Login background metaconsole"
 msgstr ""
 
-#: ../../include/functions_config.php:1183
+#: ../../include/functions_config.php:1164
 msgid "Default line favourite_view for the Visual Console"
 msgstr ""
 
-#: ../../include/functions_config.php:1187
+#: ../../include/functions_config.php:1168
 msgid "Default line menu items for the Visual Console"
 msgstr ""
 
-#: ../../include/functions_config.php:1199
+#: ../../include/functions_config.php:1180
 msgid "Default line menu items for the Services"
 msgstr ""
 
-#: ../../include/functions_config.php:1231
+#: ../../include/functions_config.php:1212
 msgid "Show units in values report"
 msgstr ""
 
-#: ../../include/functions_config.php:1239
+#: ../../include/functions_config.php:1220
 msgid "Autohidden menu"
 msgstr ""
 
-#: ../../include/functions_config.php:1243
+#: ../../include/functions_config.php:1224
 msgid "visual_animation"
 msgstr ""
 
-#: ../../include/functions_config.php:1251
+#: ../../include/functions_config.php:1232
 msgid "Fixed graph"
 msgstr ""
 
-#: ../../include/functions_config.php:1259
+#: ../../include/functions_config.php:1240
 msgid "Paginate module"
 msgstr ""
 
-#: ../../include/functions_config.php:1263
+#: ../../include/functions_config.php:1244
 #: ../../include/class/ExternalTools.class.php:303
 msgid "Custom graphviz directory"
 msgstr ""
 
-#: ../../include/functions_config.php:1271
+#: ../../include/functions_config.php:1252
 msgid "Shortened module graph data"
 msgstr ""
 
-#: ../../include/functions_config.php:1279
+#: ../../include/functions_config.php:1260
 msgid "Show empty groups in group view."
 msgstr ""
 
-#: ../../include/functions_config.php:1287
+#: ../../include/functions_config.php:1268
 msgid "Default type of module charts."
 msgstr ""
 
-#: ../../include/functions_config.php:1291
+#: ../../include/functions_config.php:1272
 msgid "Default Number of elements in Custom Graph."
 msgstr ""
 
-#: ../../include/functions_config.php:1295
+#: ../../include/functions_config.php:1276
 msgid "Default type of interface charts."
 msgstr ""
 
-#: ../../include/functions_config.php:1311
+#: ../../include/functions_config.php:1292
 msgid "Display lateral menus with left click"
 msgstr ""
 
-#: ../../include/functions_config.php:1320
+#: ../../include/functions_config.php:1301
 msgid "Service item padding size"
 msgstr ""
 
-#: ../../include/functions_config.php:1325
+#: ../../include/functions_config.php:1306
 msgid "Default percentil"
 msgstr ""
 
-#: ../../include/functions_config.php:1329
+#: ../../include/functions_config.php:1310
 msgid "Default full scale (TIP)"
 msgstr ""
 
-#: ../../include/functions_config.php:1333
+#: ../../include/functions_config.php:1314
 msgid "Default soft graphs"
 msgstr ""
 
-#: ../../include/functions_config.php:1337
+#: ../../include/functions_config.php:1318
 msgid "Default zoom graphs"
 msgstr ""
 
-#: ../../include/functions_config.php:1346
+#: ../../include/functions_config.php:1327
 msgid "Default height of the chart image"
 msgstr ""
 
-#: ../../include/functions_config.php:1368
+#: ../../include/functions_config.php:1349
 msgid "Add the custom post process"
 msgstr ""
 
-#: ../../include/functions_config.php:1376
+#: ../../include/functions_config.php:1357
 msgid "Delete the custom post process"
 msgstr ""
 
-#: ../../include/functions_config.php:1430
+#: ../../include/functions_config.php:1411
 msgid "Add custom module unit"
 msgstr ""
 
-#: ../../include/functions_config.php:1436
+#: ../../include/functions_config.php:1417
 msgid "Delete custom module unit"
 msgstr ""
 
-#: ../../include/functions_config.php:1493
+#: ../../include/functions_config.php:1474
 msgid "Thousand separator"
 msgstr ""
 
-#: ../../include/functions_config.php:1538
+#: ../../include/functions_config.php:1519
 msgid "IP ElasticSearch server"
 msgstr ""
 
-#: ../../include/functions_config.php:1542
+#: ../../include/functions_config.php:1523
 msgid "Port ElasticSearch server"
 msgstr ""
 
-#: ../../include/functions_config.php:1589
+#: ../../include/functions_config.php:1570
 msgid "Enable history trap"
 msgstr ""
 
-#: ../../include/functions_config.php:1609
+#: ../../include/functions_config.php:1590
 msgid "Enable history database advanced"
 msgstr ""
 
-#: ../../include/functions_config.php:1618
+#: ../../include/functions_config.php:1599
 msgid "String Days"
 msgstr ""
 
-#: ../../include/functions_config.php:1634
+#: ../../include/functions_config.php:1615
 msgid "Trap Days"
 msgstr ""
 
-#: ../../include/functions_config.php:1642
+#: ../../include/functions_config.php:1623
 msgid "Trap history purge"
 msgstr ""
 
-#: ../../include/functions_config.php:1714
+#: ../../include/functions_config.php:1695
 msgid "Historical database traps purge"
 msgstr ""
 
-#: ../../include/functions_config.php:1737
+#: ../../include/functions_config.php:1718
 msgid "eHorus user login"
 msgstr ""
 
-#: ../../include/functions_config.php:1749
+#: ../../include/functions_config.php:1730
 msgid "eHorus API hostname"
 msgstr ""
 
-#: ../../include/functions_config.php:1753
+#: ../../include/functions_config.php:1734
 msgid "eHorus API port"
 msgstr ""
 
-#: ../../include/functions_config.php:1757
+#: ../../include/functions_config.php:1738
 msgid "eHorus request timeout"
 msgstr ""
 
-#: ../../include/functions_config.php:1761
+#: ../../include/functions_config.php:1742
 msgid "eHorus id custom field"
 msgstr ""
 
-#: ../../include/functions_config.php:1767
+#: ../../include/functions_config.php:1748
 msgid "Integria user login"
 msgstr ""
 
-#: ../../include/functions_config.php:1775
+#: ../../include/functions_config.php:1756
 msgid "Integria user"
 msgstr ""
 
-#: ../../include/functions_config.php:1779
+#: ../../include/functions_config.php:1760
 msgid "Integria password"
 msgstr ""
 
-#: ../../include/functions_config.php:1793
+#: ../../include/functions_config.php:1774
 msgid "integria API hostname"
 msgstr ""
 
-#: ../../include/functions_config.php:1801
+#: ../../include/functions_config.php:1782
 msgid "Integria request timeout"
 msgstr ""
 
-#: ../../include/functions_config.php:1805
+#: ../../include/functions_config.php:1786
 msgid "Integria default group"
 msgstr ""
 
-#: ../../include/functions_config.php:1809
+#: ../../include/functions_config.php:1790
 msgid "Integria custom response default group"
 msgstr ""
 
-#: ../../include/functions_config.php:1813
+#: ../../include/functions_config.php:1794
 msgid "Integria default priority"
 msgstr ""
 
-#: ../../include/functions_config.php:1817
+#: ../../include/functions_config.php:1798
 msgid "Integria custom response default priority"
 msgstr ""
 
-#: ../../include/functions_config.php:1821
+#: ../../include/functions_config.php:1802
 msgid "Integria default creator"
 msgstr ""
 
-#: ../../include/functions_config.php:1825
+#: ../../include/functions_config.php:1806
 msgid "Integria default owner"
 msgstr ""
 
-#: ../../include/functions_config.php:1829
+#: ../../include/functions_config.php:1810
 msgid "Integria custom response default owner"
 msgstr ""
 
-#: ../../include/functions_config.php:1833
+#: ../../include/functions_config.php:1814
 msgid "Integria default ticket type"
 msgstr ""
 
-#: ../../include/functions_config.php:1837
+#: ../../include/functions_config.php:1818
 msgid "Integria custom response default ticket type"
 msgstr ""
 
-#: ../../include/functions_config.php:1841
+#: ../../include/functions_config.php:1822
 msgid "Integria default ticket status"
 msgstr ""
 
-#: ../../include/functions_config.php:1845
+#: ../../include/functions_config.php:1826
 msgid "Integria custom response default ticket status"
 msgstr ""
 
-#: ../../include/functions_config.php:1849
+#: ../../include/functions_config.php:1830
 msgid "Integria default ticket title"
 msgstr ""
 
-#: ../../include/functions_config.php:1853
+#: ../../include/functions_config.php:1834
 msgid "Integria custom response default ticket title"
 msgstr ""
 
-#: ../../include/functions_config.php:1857
+#: ../../include/functions_config.php:1838
 msgid "Integria default ticket content"
 msgstr ""
 
-#: ../../include/functions_config.php:1861
+#: ../../include/functions_config.php:1842
 msgid "Integria custom response default ticket content"
 msgstr ""
 
-#: ../../include/functions_config.php:1867
+#: ../../include/functions_config.php:1848
 msgid "Module Library User"
 msgstr ""
 
-#: ../../include/functions_config.php:1871
+#: ../../include/functions_config.php:1852
 msgid "Module Library Password"
 msgstr ""
 
-#: ../../include/functions_config.php:1877
+#: ../../include/functions_config.php:1858
 msgid "WebSocket bind address"
 msgstr ""
 
-#: ../../include/functions_config.php:1881
+#: ../../include/functions_config.php:1862
 msgid "WebSocket port"
 msgstr ""
 
-#: ../../include/functions_config.php:1904
+#: ../../include/functions_config.php:1885
 #, php-format
 msgid "Update failed. The next values could not be updated: 
-%s" msgstr "" -#: ../../include/functions_config.php:2490 +#: ../../include/functions_config.php:2466 #: ../../operation/agentes/networkmap.dinamic.php:226 msgid "Pandora FMS" msgstr "" -#: ../../include/functions_config.php:2498 +#: ../../include/functions_config.php:2474 msgid "PandoraFMS Metaconsole" msgstr "" -#: ../../include/functions_config.php:2502 +#: ../../include/functions_config.php:2478 msgid "Centralized operation console" msgstr "" -#: ../../include/functions_config.php:2506 +#: ../../include/functions_config.php:2482 msgid "PANDORA FMS" msgstr "" @@ -45286,7 +45352,7 @@ msgid "Something is wrong" msgstr "" #: ../../include/class/HelpFeedBack.class.php:172 -#: ../../include/class/Diagnostics.class.php:1897 +#: ../../include/class/Diagnostics.class.php:1902 msgid "What happened?" msgstr "" @@ -45299,7 +45365,7 @@ msgid "Submit" msgstr "" #: ../../include/class/HelpFeedBack.class.php:214 -#: ../../include/class/Diagnostics.class.php:1970 ../../general/header.php:356 +#: ../../include/class/Diagnostics.class.php:1975 ../../general/header.php:356 #: ../../general/header.php:358 msgid "Feedback" msgstr "" @@ -45342,27 +45408,10 @@ msgstr "" msgid "PHP setup" msgstr "" -#: ../../include/class/Diagnostics.class.php:235 -msgid "Database health status" -msgstr "" - -#: ../../include/class/Diagnostics.class.php:239 -msgid "Database status info" -msgstr "" - -#: ../../include/class/Diagnostics.class.php:243 -msgid "System Info" -msgstr "" - #: ../../include/class/Diagnostics.class.php:247 msgid "MySQL Performance metrics" msgstr "" -#: ../../include/class/Diagnostics.class.php:252 -#, php-format -msgid "Tables fragmentation in the %s database" -msgstr "" - #: ../../include/class/Diagnostics.class.php:258 #, php-format msgid "%s logs dates" @@ -45779,141 +45828,141 @@ msgstr "" msgid "Total files in the attached folder" msgstr "" -#: ../../include/class/Diagnostics.class.php:1280 +#: ../../include/class/Diagnostics.class.php:1285 msgid "" "The tagente_datos table contains too much data. A historical database is " "recommended." msgstr "" -#: ../../include/class/Diagnostics.class.php:1285 +#: ../../include/class/Diagnostics.class.php:1290 msgid "The tagente_datos table contains an acceptable amount of data." msgstr "" -#: ../../include/class/Diagnostics.class.php:1294 +#: ../../include/class/Diagnostics.class.php:1299 msgid "Total data in tagente_datos table" msgstr "" -#: ../../include/class/Diagnostics.class.php:1298 +#: ../../include/class/Diagnostics.class.php:1303 msgid "Tagente_datos table status" msgstr "" -#: ../../include/class/Diagnostics.class.php:1334 +#: ../../include/class/Diagnostics.class.php:1339 msgid "Threads" msgstr "" -#: ../../include/class/Diagnostics.class.php:1344 +#: ../../include/class/Diagnostics.class.php:1349 msgid "Total threads" msgstr "" -#: ../../include/class/Diagnostics.class.php:1351 +#: ../../include/class/Diagnostics.class.php:1356 msgid "Current pandora_server running threads" msgstr "" -#: ../../include/class/Diagnostics.class.php:1355 +#: ../../include/class/Diagnostics.class.php:1360 msgid "" "There's more pandora_server threads than configured, are you running " "multiple servers simultaneusly?." msgstr "" -#: ../../include/class/Diagnostics.class.php:1489 +#: ../../include/class/Diagnostics.class.php:1494 msgid "" "Please check your Pandora Server setup and make sure that the database " "maintenance daemon is running." msgstr "" -#: ../../include/class/Diagnostics.class.php:1493 +#: ../../include/class/Diagnostics.class.php:1498 msgid "" "It' is very important to keep the database up-to-date to get the best " "performance and results in Pandora" msgstr "" -#: ../../include/class/Diagnostics.class.php:1755 +#: ../../include/class/Diagnostics.class.php:1760 msgid "You have more than 10 MB of logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1758 +#: ../../include/class/Diagnostics.class.php:1763 msgid "You have less than 10 MB of logs" msgstr "" -#: ../../include/class/Diagnostics.class.php:1925 +#: ../../include/class/Diagnostics.class.php:1930 msgid "Include installation data" msgstr "" -#: ../../include/class/Diagnostics.class.php:1962 +#: ../../include/class/Diagnostics.class.php:1967 msgid "Hello Feedback-Men" msgstr "" -#: ../../include/class/Diagnostics.class.php:1972 +#: ../../include/class/Diagnostics.class.php:1977 msgid "Hello" msgstr "" -#: ../../include/class/Diagnostics.class.php:1976 +#: ../../include/class/Diagnostics.class.php:1981 #, php-format msgid "User %s is reporting an issue in its %s experience" msgstr "" -#: ../../include/class/Diagnostics.class.php:1985 +#: ../../include/class/Diagnostics.class.php:1990 msgid "Find some files attached to this mail" msgstr "" -#: ../../include/class/Diagnostics.class.php:1988 +#: ../../include/class/Diagnostics.class.php:1993 msgid "PDF is the diagnostic information retrieved at report time" msgstr "" -#: ../../include/class/Diagnostics.class.php:1991 +#: ../../include/class/Diagnostics.class.php:1996 msgid "CSV contains the statuses of every product file" msgstr "" -#: ../../include/class/Diagnostics.class.php:1996 +#: ../../include/class/Diagnostics.class.php:2001 #, php-format msgid "" "If you think this report must be escalated, feel free to forward this mail " "to \"%s\"" msgstr "" -#: ../../include/class/Diagnostics.class.php:2000 +#: ../../include/class/Diagnostics.class.php:2005 msgid "LEGAL WARNING" msgstr "" -#: ../../include/class/Diagnostics.class.php:2002 +#: ../../include/class/Diagnostics.class.php:2007 msgid "" "The information contained in this transmission is privileged and " "confidential information intended only for the use of the individual or " "entity named above" msgstr "" -#: ../../include/class/Diagnostics.class.php:2006 +#: ../../include/class/Diagnostics.class.php:2011 msgid "" "If the reader of this message is not the intended recipient, you are hereby " "notified that any dissemination, distribution or copying of this " "communication is strictly prohibited" msgstr "" -#: ../../include/class/Diagnostics.class.php:2010 +#: ../../include/class/Diagnostics.class.php:2015 msgid "If you have received this transmission in error, do not read it" msgstr "" -#: ../../include/class/Diagnostics.class.php:2014 +#: ../../include/class/Diagnostics.class.php:2019 msgid "" "Please immediately reply to the sender that you have received this " "communication in error and then delete it" msgstr "" -#: ../../include/class/Diagnostics.class.php:2093 +#: ../../include/class/Diagnostics.class.php:2098 msgid "Invalid cron task" msgstr "" -#: ../../include/class/Diagnostics.class.php:2094 +#: ../../include/class/Diagnostics.class.php:2099 msgid "Sending of information has been processed" msgstr "" -#: ../../include/class/Diagnostics.class.php:2129 -#: ../../include/class/Diagnostics.class.php:2139 +#: ../../include/class/Diagnostics.class.php:2134 +#: ../../include/class/Diagnostics.class.php:2144 msgid "Diagnostics Info" msgstr "" -#: ../../include/class/Diagnostics.class.php:2247 -#: ../../include/class/Diagnostics.class.php:2257 +#: ../../include/class/Diagnostics.class.php:2252 +#: ../../include/class/Diagnostics.class.php:2262 msgid "PHP Info" msgstr "" @@ -46243,7 +46292,7 @@ msgstr "" #: ../../include/class/CredentialStore.class.php:989 #: ../../include/class/SnmpConsole.class.php:231 #: ../../operation/snmpconsole/snmp_statistics.php:102 -#: ../../operation/menu.php:143 +#: ../../operation/menu.php:147 msgid "SNMP" msgstr "" @@ -46358,9 +46407,9 @@ msgid "Trap subtype" msgstr "" #: ../../include/class/SnmpConsole.class.php:354 -#: ../../include/functions_reporting.php:5571 -#: ../../include/functions_reporting.php:5588 -#: ../../include/functions_reporting.php:5605 +#: ../../include/functions_reporting.php:5786 +#: ../../include/functions_reporting.php:5803 +#: ../../include/functions_reporting.php:5820 msgid "Not triggered" msgstr "" @@ -46370,25 +46419,25 @@ msgstr "" #: ../../include/class/SnmpConsole.class.php:372 #: ../../include/class/SnmpConsole.class.php:521 -#: ../../include/class/SnmpConsole.class.php:794 -#: ../../include/functions_reporting.php:2258 -#: ../../include/functions_reporting.php:4245 -#: ../../include/functions_reporting.php:10925 +#: ../../include/class/SnmpConsole.class.php:795 +#: ../../include/functions_reporting.php:2361 +#: ../../include/functions_reporting.php:4493 +#: ../../include/functions_reporting.php:11196 msgid "Not validated" msgstr "" #: ../../include/class/SnmpConsole.class.php:373 #: ../../include/class/SnmpConsole.class.php:512 -#: ../../include/class/SnmpConsole.class.php:804 -#: ../../include/functions_reporting.php:2257 -#: ../../include/functions_reporting.php:4244 -#: ../../include/functions_reporting.php:10924 +#: ../../include/class/SnmpConsole.class.php:805 +#: ../../include/functions_reporting.php:2360 +#: ../../include/functions_reporting.php:4492 +#: ../../include/functions_reporting.php:11195 #: ../../include/functions_events.php:2546 -#: ../../include/functions_events.php:3149 -#: ../../include/functions_events.php:3421 -#: ../../include/functions_events.php:3430 -#: ../../include/functions_events.php:3437 -#: ../../include/functions_events.php:3444 +#: ../../include/functions_events.php:3128 +#: ../../include/functions_events.php:3400 +#: ../../include/functions_events.php:3409 +#: ../../include/functions_events.php:3416 +#: ../../include/functions_events.php:3423 msgid "Validated" msgstr "" @@ -46396,37 +46445,37 @@ msgstr "" msgid "Group by Enterprise String/IP" msgstr "" -#: ../../include/class/SnmpConsole.class.php:816 +#: ../../include/class/SnmpConsole.class.php:817 #: ../../operation/snmpconsole/snmp_statistics.php:197 msgid "View agent details" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1362 +#: ../../include/class/SnmpConsole.class.php:1363 msgid "Count:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1362 +#: ../../include/class/SnmpConsole.class.php:1363 msgid "First trap:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1362 +#: ../../include/class/SnmpConsole.class.php:1363 msgid "Last trap:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1400 +#: ../../include/class/SnmpConsole.class.php:1401 msgid "Type:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1414 +#: ../../include/class/SnmpConsole.class.php:1415 msgid "Enterprise String:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1423 -#: ../../include/class/SnmpConsole.class.php:1437 +#: ../../include/class/SnmpConsole.class.php:1424 +#: ../../include/class/SnmpConsole.class.php:1438 msgid "Variable bindings:" msgstr "" -#: ../../include/class/SnmpConsole.class.php:1433 +#: ../../include/class/SnmpConsole.class.php:1434 msgid "See more details" msgstr "" @@ -46610,281 +46659,281 @@ msgstr "" msgid "Do you want delete the selected templates?" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:838 +#: ../../include/class/ConsoleSupervisor.php:834 msgid "Limited mode." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:852 +#: ../../include/class/ConsoleSupervisor.php:848 msgid "License is about to expire" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:855 +#: ../../include/class/ConsoleSupervisor.php:851 msgid "Support is about to expire" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:873 +#: ../../include/class/ConsoleSupervisor.php:869 msgid "Expired license" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:874 +#: ../../include/class/ConsoleSupervisor.php:870 msgid "Your license has expired. Please, contact our sales department." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:876 +#: ../../include/class/ConsoleSupervisor.php:872 msgid "Support expired" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:877 +#: ../../include/class/ConsoleSupervisor.php:873 msgid "" "This license is outside of support. Please, contact our sales department." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:958 +#: ../../include/class/ConsoleSupervisor.php:954 msgid "Attachment directory is not writable" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:960 +#: ../../include/class/ConsoleSupervisor.php:956 #, php-format msgid "" "Directory %s is not writable. Please, configure corresponding permissions." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:980 +#: ../../include/class/ConsoleSupervisor.php:976 msgid "There are too many files in attachment directory" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:982 +#: ../../include/class/ConsoleSupervisor.php:978 #, php-format msgid "" "There are more than %d files in attachment, consider cleaning up attachment " "directory manually." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1014 +#: ../../include/class/ConsoleSupervisor.php:1010 msgid "Remote configuration directory is not readable" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1016 +#: ../../include/class/ConsoleSupervisor.php:1012 #, php-format msgid "" "Remote configuration directory %s is not readable. Please, adjust " "configuration." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1033 +#: ../../include/class/ConsoleSupervisor.php:1029 msgid "Remote configuration directory is not writable" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1035 +#: ../../include/class/ConsoleSupervisor.php:1031 #, php-format msgid "" "Remote configuration directory %s is not writable. Please, adjust " "configuration." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1051 +#: ../../include/class/ConsoleSupervisor.php:1047 msgid "Remote collections directory is not writable" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1053 +#: ../../include/class/ConsoleSupervisor.php:1049 #, php-format msgid "Collections directory %s is not writable. Please, adjust configuration." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1069 +#: ../../include/class/ConsoleSupervisor.php:1065 msgid "Remote md5 directory is not writable" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1071 +#: ../../include/class/ConsoleSupervisor.php:1067 #, php-format msgid "MD5 directory %s is not writable. Please, adjust configuration." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1099 +#: ../../include/class/ConsoleSupervisor.php:1095 msgid "There are too much files in spool" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1101 +#: ../../include/class/ConsoleSupervisor.php:1097 #, php-format msgid "" "There are more than %d files in %s. Consider checking DataServer performance" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1122 +#: ../../include/class/ConsoleSupervisor.php:1118 msgid "There are too many BADXML files in spool" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1124 +#: ../../include/class/ConsoleSupervisor.php:1120 #, php-format msgid "There are more than %d files in %s. Consider checking software agents." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1211 +#: ../../include/class/ConsoleSupervisor.php:1207 #, php-format msgid "%s (%s) is lacking performance." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1279 +#: ../../include/class/ConsoleSupervisor.php:1275 msgid "No servers available." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1280 +#: ../../include/class/ConsoleSupervisor.php:1276 msgid "" "There are no servers registered in this console. Please, check installation " "guide." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1325 +#: ../../include/class/ConsoleSupervisor.php:1321 #, php-format msgid "%s (%s) has crashed." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1331 +#: ../../include/class/ConsoleSupervisor.php:1327 #, php-format msgid "%s (%s) has crashed, please check log files." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1338 +#: ../../include/class/ConsoleSupervisor.php:1334 #, php-format msgid "%s (%s) is not running." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1343 +#: ../../include/class/ConsoleSupervisor.php:1339 #, php-format msgid "" "%s (%s) is not running. Please, check configuration file or remove this " "server from server list." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1395 +#: ../../include/class/ConsoleSupervisor.php:1391 msgid "No master servers found." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1396 +#: ../../include/class/ConsoleSupervisor.php:1392 msgid "" "At least one server must be defined to run as master. Please, check " "documentation." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1451 +#: ../../include/class/ConsoleSupervisor.php:1447 msgid "PHP safe mode is enabled. Some features may not work properly" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1452 +#: ../../include/class/ConsoleSupervisor.php:1448 msgid "" "To disable it, go to your PHP configuration file (php.ini) and put safe_mode " "= Off (Do not forget to restart apache process after changes)" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1470 +#: ../../include/class/ConsoleSupervisor.php:1466 #, php-format msgid "%s value in PHP configuration is not recommended" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1474 +#: ../../include/class/ConsoleSupervisor.php:1470 #, php-format msgid "Recommended value is %s" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1475 -#: ../../include/class/ConsoleSupervisor.php:1499 +#: ../../include/class/ConsoleSupervisor.php:1471 +#: ../../include/class/ConsoleSupervisor.php:1495 msgid "Unlimited" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1476 +#: ../../include/class/ConsoleSupervisor.php:1472 msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator (Do not forget to restart Apache process after)" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1498 -#: ../../include/class/ConsoleSupervisor.php:1522 -#: ../../include/class/ConsoleSupervisor.php:1551 -#: ../../include/class/ConsoleSupervisor.php:1633 +#: ../../include/class/ConsoleSupervisor.php:1494 +#: ../../include/class/ConsoleSupervisor.php:1518 +#: ../../include/class/ConsoleSupervisor.php:1547 +#: ../../include/class/ConsoleSupervisor.php:1628 #, php-format msgid "Recommended value is: %s" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1500 -#: ../../include/class/ConsoleSupervisor.php:1524 -#: ../../include/class/ConsoleSupervisor.php:1571 +#: ../../include/class/ConsoleSupervisor.php:1496 +#: ../../include/class/ConsoleSupervisor.php:1520 +#: ../../include/class/ConsoleSupervisor.php:1567 msgid "" "Please, change it on your PHP configuration file (php.ini) or contact with " "administrator (Dont forget restart apache process after changes)" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1523 -#: ../../include/class/ConsoleSupervisor.php:1552 +#: ../../include/class/ConsoleSupervisor.php:1519 +#: ../../include/class/ConsoleSupervisor.php:1548 #, php-format msgid "%s or greater" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1570 +#: ../../include/class/ConsoleSupervisor.php:1566 msgid "Problems with disable_functions in php.ini" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1571 +#: ../../include/class/ConsoleSupervisor.php:1567 msgid "" "The variable disable_functions contains functions system() or exec() in PHP " "configuration file (php.ini)" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1588 -msgid "PhantomJS is not installed" +#: ../../include/class/ConsoleSupervisor.php:1583 +msgid "chromium is not installed" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1589 +#: ../../include/class/ConsoleSupervisor.php:1584 msgid "" "To be able to create images of the graphs for PDFs, please install the " -"PhantomJS extension. For that, it is necessary to follow these steps:" +"chromium extension. For that, it is necessary to follow these steps:" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1610 +#: ../../include/class/ConsoleSupervisor.php:1605 msgid "PHP UPDATE REQUIRED" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:30 msgid "" "For a correct operation of PandoraFMS, PHP must be updated to version 8.0 or " "higher." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:31 msgid "Otherwise, functionalities will be lost." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:33 msgid "Report download in PDF format" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:34 msgid "Emails Sending" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1611 +#: ../../include/class/ConsoleSupervisor.php:1606 #: ../../general/php_message.php:35 msgid "Metaconsole Collections" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1677 +#: ../../include/class/ConsoleSupervisor.php:1672 msgid "Historical database not available" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1678 +#: ../../include/class/ConsoleSupervisor.php:1673 msgid "" "Historical database is enabled, though not accessible with the current " "configuration." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1721 +#: ../../include/class/ConsoleSupervisor.php:1716 msgid "Database maintenance problem" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1723 +#: ../../include/class/ConsoleSupervisor.php:1718 #, php-format msgid "" "Your database hasn't been through maintenance for 48hrs. Please, check " @@ -46892,11 +46941,11 @@ msgid "" "as soon as possible." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1783 +#: ../../include/class/ConsoleSupervisor.php:1778 msgid "Historical database maintenance problem." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1785 +#: ../../include/class/ConsoleSupervisor.php:1780 #, php-format msgid "" "Your historical database hasn't been through maintenance for 48hrs. Please, " @@ -46904,86 +46953,86 @@ msgid "" "enable it as soon as possible." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1823 +#: ../../include/class/ConsoleSupervisor.php:1818 msgid "Historical database MR mismatch" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1824 +#: ../../include/class/ConsoleSupervisor.php:1819 msgid "" "Your historical database is not using the same schema as the main DB. This " "could produce anomalies while storing historical data." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1864 +#: ../../include/class/ConsoleSupervisor.php:1859 msgid "Log collector cannot connect to ElasticSearch" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1865 +#: ../../include/class/ConsoleSupervisor.php:1860 msgid "ElasticSearch is not available using current configuration." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1934 +#: ../../include/class/ConsoleSupervisor.php:1929 msgid "Metaconsole DB is not available." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1935 +#: ../../include/class/ConsoleSupervisor.php:1930 msgid "Cannot connect with Metaconsole DB using current configuration." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1963 +#: ../../include/class/ConsoleSupervisor.php:1958 msgid "Scheduled downtime running." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:1964 +#: ../../include/class/ConsoleSupervisor.php:1959 msgid "" "A scheduled downtime is running. Some monitoring data won't be available " "while downtime is taking place." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2120 +#: ../../include/class/ConsoleSupervisor.php:2115 msgid "Downtime scheduled soon." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2122 +#: ../../include/class/ConsoleSupervisor.php:2117 #, php-format msgid "" "A scheduled downtime is going to be executed from %s to %s. Some monitoring " "data won't be available while downtime is taking place." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2152 +#: ../../include/class/ConsoleSupervisor.php:2147 msgid "This instance is not registered in the Update manager section" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2153 +#: ../../include/class/ConsoleSupervisor.php:2148 msgid "Click here to start the registration process" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2185 +#: ../../include/class/ConsoleSupervisor.php:2180 msgid "Default password for \"Admin\" user has not been changed" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2186 +#: ../../include/class/ConsoleSupervisor.php:2181 msgid "" "Please, change the default password since it is a commonly reported " "vulnerability." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2221 +#: ../../include/class/ConsoleSupervisor.php:2216 msgid "Default font doesn't exist" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2222 +#: ../../include/class/ConsoleSupervisor.php:2217 msgid "" "Your defined font doesn't exist or is not defined. Please, check font " "parameters in your config" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2247 +#: ../../include/class/ConsoleSupervisor.php:2242 msgid "Developer mode is enabled" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2249 +#: ../../include/class/ConsoleSupervisor.php:2244 #, php-format msgid "" "Your %s has the \"develop_bypass\" mode enabled. This is a developer mode " @@ -46991,77 +47040,77 @@ msgid "" "the main index.php file" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2273 +#: ../../include/class/ConsoleSupervisor.php:2268 msgid "Event storm protection is enabled." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2274 +#: ../../include/class/ConsoleSupervisor.php:2269 msgid "" "Some events may get lost while this mode is enabled. The server must be " "restarted after altering this setting." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2300 +#: ../../include/class/ConsoleSupervisor.php:2295 msgid "Failed to retrieve updates, please configure utility" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2318 +#: ../../include/class/ConsoleSupervisor.php:2313 #, php-format msgid "New %s Console update" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2321 +#: ../../include/class/ConsoleSupervisor.php:2316 msgid "There is a new update available. Please.About minor release update." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2385 +#: ../../include/class/ConsoleSupervisor.php:2380 msgid "Discovery relies on an appropriate cron setup." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2401 +#: ../../include/class/ConsoleSupervisor.php:2396 msgid "Please, make sure process is not locked." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2412 +#: ../../include/class/ConsoleSupervisor.php:2407 msgid "DiscoveryConsoleTasks is not configured." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2503 +#: ../../include/class/ConsoleSupervisor.php:2498 #, php-format msgid "%s version misaligned with Console" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2507 +#: ../../include/class/ConsoleSupervisor.php:2502 #, php-format msgid "" "Server %s and this console have different versions. This might cause several " "malfunctions. Please, update this server." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2570 +#: ../../include/class/ConsoleSupervisor.php:2565 msgid "AllowOverride is disabled" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2616 +#: ../../include/class/ConsoleSupervisor.php:2611 msgid "Desynchronized operation on the node " msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2639 +#: ../../include/class/ConsoleSupervisor.php:2634 msgid "Pandora FMS console log file changed location" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2643 +#: ../../include/class/ConsoleSupervisor.php:2638 #, php-format msgid "" "Pandora FMS console log file has been moved to new location %s/log. " @@ -47069,11 +47118,11 @@ msgid "" "Please, consider deleting it." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2678 +#: ../../include/class/ConsoleSupervisor.php:2673 msgid "Pandora FMS audit log file changed location" msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2682 +#: ../../include/class/ConsoleSupervisor.php:2677 #, php-format msgid "" "Pandora FMS audit log file has been moved to new location %s/log. Currently " @@ -47081,24 +47130,24 @@ msgid "" "consider deleting it." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2768 +#: ../../include/class/ConsoleSupervisor.php:2735 #, php-format msgid "Node %s sync queue length exceeded, " msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2770 +#: ../../include/class/ConsoleSupervisor.php:2737 #, php-format msgid "" "Synchronization queue lenght for node %s is %d items, this value should be 0 " "or lower than %d, please check the queue status." msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2823 +#: ../../include/class/ConsoleSupervisor.php:2790 #, php-format msgid "Node %s sync queue failed, " msgstr "" -#: ../../include/class/ConsoleSupervisor.php:2825 +#: ../../include/class/ConsoleSupervisor.php:2792 #, php-format msgid "" "Node %s cannot process synchronization queue due %s, please check the queue " @@ -47557,451 +47606,456 @@ msgstr "" msgid " modules" msgstr "" -#: ../../include/functions_reporting.php:1519 +#: ../../include/functions_reporting.php:1520 msgid "Top N" msgstr "" -#: ../../include/functions_reporting.php:1705 +#: ../../include/functions_reporting.php:1706 msgid "Insuficient data" msgstr "" -#: ../../include/functions_reporting.php:2039 +#: ../../include/functions_reporting.php:2072 msgid "Event Report Group" msgstr "" -#: ../../include/functions_reporting.php:2069 +#: ../../include/functions_reporting.php:2102 msgid "Exclude " msgstr "" -#: ../../include/functions_reporting.php:2325 +#: ../../include/functions_reporting.php:2443 msgid "Event Report Module" msgstr "" -#: ../../include/functions_reporting.php:3113 +#: ../../include/functions_reporting.php:3231 msgid "Agent/Modules" msgstr "" -#: ../../include/functions_reporting.php:3210 +#: ../../include/functions_reporting.php:3328 msgid "Agent/Modules Status" msgstr "" -#: ../../include/functions_reporting.php:3359 +#: ../../include/functions_reporting.php:3477 msgid "Exception - Everything" msgstr "" -#: ../../include/functions_reporting.php:3365 +#: ../../include/functions_reporting.php:3483 #, php-format msgid "Exception - Modules over or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3368 +#: ../../include/functions_reporting.php:3486 #, php-format msgid "Modules over or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3373 +#: ../../include/functions_reporting.php:3491 #, php-format msgid "Exception - Modules under or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3376 +#: ../../include/functions_reporting.php:3494 #, php-format msgid "Modules under or equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3381 +#: ../../include/functions_reporting.php:3499 #, php-format msgid "Exception - Modules under %s" msgstr "" -#: ../../include/functions_reporting.php:3384 +#: ../../include/functions_reporting.php:3502 #, php-format msgid "Modules under %s" msgstr "" -#: ../../include/functions_reporting.php:3389 +#: ../../include/functions_reporting.php:3507 #, php-format msgid "Exception - Modules over %s" msgstr "" -#: ../../include/functions_reporting.php:3392 +#: ../../include/functions_reporting.php:3510 #, php-format msgid "Modules over %s" msgstr "" -#: ../../include/functions_reporting.php:3397 +#: ../../include/functions_reporting.php:3515 #, php-format msgid "Exception - Equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3400 +#: ../../include/functions_reporting.php:3518 #, php-format msgid "Equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3405 +#: ../../include/functions_reporting.php:3523 #, php-format msgid "Exception - Not equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3408 +#: ../../include/functions_reporting.php:3526 #, php-format msgid "Not equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3412 +#: ../../include/functions_reporting.php:3530 msgid "Exception - Modules at normal status" msgstr "" -#: ../../include/functions_reporting.php:3413 +#: ../../include/functions_reporting.php:3531 msgid "Modules at normal status" msgstr "" -#: ../../include/functions_reporting.php:3417 +#: ../../include/functions_reporting.php:3535 msgid "Exception - Modules at critical or warning status" msgstr "" -#: ../../include/functions_reporting.php:3418 +#: ../../include/functions_reporting.php:3536 msgid "Modules at critical or warning status" msgstr "" -#: ../../include/functions_reporting.php:3698 +#: ../../include/functions_reporting.php:3816 msgid "There are no Modules under those conditions." msgstr "" -#: ../../include/functions_reporting.php:3702 +#: ../../include/functions_reporting.php:3820 #, php-format msgid "There are no Modules over or equal to %s." msgstr "" -#: ../../include/functions_reporting.php:3706 +#: ../../include/functions_reporting.php:3824 #, php-format msgid "There are no Modules less or equal to %s." msgstr "" -#: ../../include/functions_reporting.php:3710 +#: ../../include/functions_reporting.php:3828 #, php-format msgid "There are no Modules less %s." msgstr "" -#: ../../include/functions_reporting.php:3714 +#: ../../include/functions_reporting.php:3832 #, php-format msgid "There are no Modules over %s." msgstr "" -#: ../../include/functions_reporting.php:3718 +#: ../../include/functions_reporting.php:3836 #, php-format msgid "There are no Modules equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3722 +#: ../../include/functions_reporting.php:3840 #, php-format msgid "There are no Modules not equal to %s" msgstr "" -#: ../../include/functions_reporting.php:3726 +#: ../../include/functions_reporting.php:3844 msgid "There are no Modules normal status" msgstr "" -#: ../../include/functions_reporting.php:3730 +#: ../../include/functions_reporting.php:3848 msgid "There are no Modules at critial or warning status" msgstr "" -#: ../../include/functions_reporting.php:4081 +#: ../../include/functions_reporting.php:4276 msgid "Event Report Agent" msgstr "" -#: ../../include/functions_reporting.php:4432 +#: ../../include/functions_reporting.php:4695 msgid "Database Serialized" msgstr "" -#: ../../include/functions_reporting.php:4628 +#: ../../include/functions_reporting.php:4891 msgid "Last Value" msgstr "" -#: ../../include/functions_reporting.php:4952 +#: ../../include/functions_reporting.php:4941 +#: ../../include/functions_reporting.php:4984 +msgid "No data to display within the selected interval" +msgstr "" + +#: ../../include/functions_reporting.php:5215 msgid "Network interfaces report" msgstr "" -#: ../../include/functions_reporting.php:5046 +#: ../../include/functions_reporting.php:5309 msgid "Custom render report" msgstr "" -#: ../../include/functions_reporting.php:5086 -#: ../../include/functions_reporting.php:5112 +#: ../../include/functions_reporting.php:5349 +#: ../../include/functions_reporting.php:5375 msgid "" "This query is insecure, it could apply unwanted modiffications on the schema" msgstr "" -#: ../../include/functions_reporting.php:5343 +#: ../../include/functions_reporting.php:5554 msgid "The group has no agents or none of the agents has any network interface" msgstr "" -#: ../../include/functions_reporting.php:5364 +#: ../../include/functions_reporting.php:5579 msgid "bytes/s" msgstr "" -#: ../../include/functions_reporting.php:6031 +#: ../../include/functions_reporting.php:6246 msgid "SQL Graph Vertical Bars" msgstr "" -#: ../../include/functions_reporting.php:6035 +#: ../../include/functions_reporting.php:6250 msgid "SQL Graph Horizontal Bars" msgstr "" -#: ../../include/functions_reporting.php:6039 +#: ../../include/functions_reporting.php:6254 msgid "SQL Graph Pie" msgstr "" -#: ../../include/functions_reporting.php:6266 +#: ../../include/functions_reporting.php:6481 msgid "Netflow Area" msgstr "" -#: ../../include/functions_reporting.php:6270 +#: ../../include/functions_reporting.php:6485 msgid "Netflow Summary" msgstr "" -#: ../../include/functions_reporting.php:6274 +#: ../../include/functions_reporting.php:6489 msgid "Netflow Data" msgstr "" -#: ../../include/functions_reporting.php:6282 +#: ../../include/functions_reporting.php:6497 msgid "Unknown report" msgstr "" -#: ../../include/functions_reporting.php:6376 +#: ../../include/functions_reporting.php:6591 msgid "Prediction Date" msgstr "" -#: ../../include/functions_reporting.php:7295 +#: ../../include/functions_reporting.php:7510 msgid "" "Illegal query: Due security restrictions, there are some tokens or words you " "cannot use: *, delete, drop, alter, modify, password, pass, insert or update." msgstr "" -#: ../../include/functions_reporting.php:8706 -#: ../../include/functions_reporting.php:9424 +#: ../../include/functions_reporting.php:8924 +#: ../../include/functions_reporting.php:9642 msgid "No Address" msgstr "" -#: ../../include/functions_reporting.php:9723 +#: ../../include/functions_reporting.php:9941 msgid "" "The monitor have no data in this range of dates or monitor type is not " "numeric" msgstr "" -#: ../../include/functions_reporting.php:9741 +#: ../../include/functions_reporting.php:9959 msgid "The monitor type is not numeric" msgstr "" -#: ../../include/functions_reporting.php:10167 +#: ../../include/functions_reporting.php:10385 msgid "Maximum" msgstr "" -#: ../../include/functions_reporting.php:10245 +#: ../../include/functions_reporting.php:10463 msgid "Automatic combined graph" msgstr "" -#: ../../include/functions_reporting.php:11599 -#: ../../include/functions_reporting.php:11623 +#: ../../include/functions_reporting.php:11885 +#: ../../include/functions_reporting.php:11909 msgid "Server health" msgstr "" -#: ../../include/functions_reporting.php:11599 +#: ../../include/functions_reporting.php:11885 #, php-format msgid "%d Downed servers" msgstr "" -#: ../../include/functions_reporting.php:11604 -#: ../../include/functions_reporting.php:11627 +#: ../../include/functions_reporting.php:11890 +#: ../../include/functions_reporting.php:11913 msgid "Monitor health" msgstr "" -#: ../../include/functions_reporting.php:11604 +#: ../../include/functions_reporting.php:11890 #, php-format msgid "%d Not Normal monitors" msgstr "" -#: ../../include/functions_reporting.php:11604 -#: ../../include/functions_reporting.php:11628 +#: ../../include/functions_reporting.php:11890 +#: ../../include/functions_reporting.php:11914 msgid "of monitors up" msgstr "" -#: ../../include/functions_reporting.php:11609 -#: ../../include/functions_reporting.php:11631 +#: ../../include/functions_reporting.php:11895 +#: ../../include/functions_reporting.php:11917 msgid "Module sanity" msgstr "" -#: ../../include/functions_reporting.php:11609 +#: ../../include/functions_reporting.php:11895 #, php-format msgid "%d Not inited monitors" msgstr "" -#: ../../include/functions_reporting.php:11609 -#: ../../include/functions_reporting.php:11632 +#: ../../include/functions_reporting.php:11895 +#: ../../include/functions_reporting.php:11918 msgid "of total modules inited" msgstr "" -#: ../../include/functions_reporting.php:11614 -#: ../../include/functions_reporting.php:12726 -#: ../../include/functions_reporting.php:12736 +#: ../../include/functions_reporting.php:11900 +#: ../../include/functions_reporting.php:13012 +#: ../../include/functions_reporting.php:13022 #, php-format msgid "%d Fired alerts" msgstr "" -#: ../../include/functions_reporting.php:11614 -#: ../../include/functions_reporting.php:11636 +#: ../../include/functions_reporting.php:11900 +#: ../../include/functions_reporting.php:11922 msgid "of defined alerts not fired" msgstr "" -#: ../../include/functions_reporting.php:11708 +#: ../../include/functions_reporting.php:11994 msgid "Defined and fired alerts" msgstr "" -#: ../../include/functions_reporting.php:11887 +#: ../../include/functions_reporting.php:12173 msgid "Defined users" msgstr "" -#: ../../include/functions_reporting.php:12583 +#: ../../include/functions_reporting.php:12869 msgid "Agent without data" msgstr "" -#: ../../include/functions_reporting.php:12722 +#: ../../include/functions_reporting.php:13008 #, php-format msgid "%d Normal modules" msgstr "" -#: ../../include/functions_reporting.php:12723 +#: ../../include/functions_reporting.php:13009 #, php-format msgid "%d Critical modules" msgstr "" -#: ../../include/functions_reporting.php:12724 +#: ../../include/functions_reporting.php:13010 #, php-format msgid "%d Warning modules" msgstr "" -#: ../../include/functions_reporting.php:12725 +#: ../../include/functions_reporting.php:13011 #, php-format msgid "%d Unknown modules" msgstr "" -#: ../../include/functions_reporting.php:12730 +#: ../../include/functions_reporting.php:13016 #, php-format msgid "%d Total agents" msgstr "" -#: ../../include/functions_reporting.php:12731 +#: ../../include/functions_reporting.php:13017 #, php-format msgid "%d Normal agents" msgstr "" -#: ../../include/functions_reporting.php:12732 +#: ../../include/functions_reporting.php:13018 #, php-format msgid "%d Critical agents" msgstr "" -#: ../../include/functions_reporting.php:12733 +#: ../../include/functions_reporting.php:13019 #, php-format msgid "%d Warning agents" msgstr "" -#: ../../include/functions_reporting.php:12734 +#: ../../include/functions_reporting.php:13020 #, php-format msgid "%d Unknown agents" msgstr "" -#: ../../include/functions_reporting.php:12735 +#: ../../include/functions_reporting.php:13021 #, php-format msgid "%d not init agents" msgstr "" -#: ../../include/functions_reporting.php:14163 +#: ../../include/functions_reporting.php:14449 msgid "Total running modules" msgstr "" -#: ../../include/functions_reporting.php:14166 -#: ../../include/functions_reporting.php:14181 -#: ../../include/functions_reporting.php:14193 -#: ../../include/functions_reporting.php:14211 -#: ../../include/functions_reporting.php:14223 -#: ../../include/functions_reporting.php:14235 -#: ../../include/functions_reporting.php:14247 +#: ../../include/functions_reporting.php:14452 +#: ../../include/functions_reporting.php:14467 +#: ../../include/functions_reporting.php:14479 +#: ../../include/functions_reporting.php:14497 +#: ../../include/functions_reporting.php:14509 +#: ../../include/functions_reporting.php:14521 +#: ../../include/functions_reporting.php:14533 msgid "Ratio" msgstr "" -#: ../../include/functions_reporting.php:14166 -#: ../../include/functions_reporting.php:14181 -#: ../../include/functions_reporting.php:14193 -#: ../../include/functions_reporting.php:14211 -#: ../../include/functions_reporting.php:14223 -#: ../../include/functions_reporting.php:14235 -#: ../../include/functions_reporting.php:14247 +#: ../../include/functions_reporting.php:14452 +#: ../../include/functions_reporting.php:14467 +#: ../../include/functions_reporting.php:14479 +#: ../../include/functions_reporting.php:14497 +#: ../../include/functions_reporting.php:14509 +#: ../../include/functions_reporting.php:14521 +#: ../../include/functions_reporting.php:14533 msgid "Modules by second" msgstr "" -#: ../../include/functions_reporting.php:14178 +#: ../../include/functions_reporting.php:14464 msgid "Local modules" msgstr "" -#: ../../include/functions_reporting.php:14188 +#: ../../include/functions_reporting.php:14474 msgid "Network modules" msgstr "" -#: ../../include/functions_reporting.php:14207 +#: ../../include/functions_reporting.php:14493 msgid "Plugin modules" msgstr "" -#: ../../include/functions_reporting.php:14219 +#: ../../include/functions_reporting.php:14505 msgid "Prediction modules" msgstr "" -#: ../../include/functions_reporting.php:14231 +#: ../../include/functions_reporting.php:14517 msgid "WMI modules" msgstr "" -#: ../../include/functions_reporting.php:14243 +#: ../../include/functions_reporting.php:14529 msgid "Web modules" msgstr "" -#: ../../include/functions_reporting.php:14281 +#: ../../include/functions_reporting.php:14567 #: ../../include/lib/Dashboard/Widgets/tactical.php:287 msgid "Server performance" msgstr "" -#: ../../include/functions_reporting.php:14394 +#: ../../include/functions_reporting.php:14680 msgid "Start condition" msgstr "" -#: ../../include/functions_reporting.php:14394 +#: ../../include/functions_reporting.php:14680 msgid "Stop condition" msgstr "" -#: ../../include/functions_reporting.php:14404 +#: ../../include/functions_reporting.php:14690 msgid "Weekly:" msgstr "" -#: ../../include/functions_reporting.php:14446 +#: ../../include/functions_reporting.php:14732 msgid "Monthly:" msgstr "" -#: ../../include/functions_reporting.php:14447 +#: ../../include/functions_reporting.php:14733 msgid "From day" msgstr "" -#: ../../include/functions_reporting.php:14448 +#: ../../include/functions_reporting.php:14734 msgid "To day" msgstr "" -#: ../../include/functions_reporting.php:14999 +#: ../../include/functions_reporting.php:15283 msgid "Module Histogram Graph" msgstr "" -#: ../../include/functions_reporting.php:15391 +#: ../../include/functions_reporting.php:15646 msgid "Attached to this email there's a PDF file of the" msgstr "" -#: ../../include/functions_reporting.php:15392 +#: ../../include/functions_reporting.php:15647 msgid "report" msgstr "" @@ -48142,11 +48196,11 @@ msgstr "" msgid "Copy of %s" msgstr "" -#: ../../include/lib/Dashboard/Manager.php:999 +#: ../../include/lib/Dashboard/Manager.php:992 msgid "Error create or update dashboard" msgstr "" -#: ../../include/lib/Dashboard/Manager.php:1480 +#: ../../include/lib/Dashboard/Manager.php:1473 msgid "Icon image dashboard" msgstr "" @@ -48382,7 +48436,7 @@ msgstr "" #: ../../include/lib/Dashboard/Widgets/network_map.php:173 #: ../../include/lib/Dashboard/Widgets/network_map.php:515 -#: ../../operation/menu.php:171 +#: ../../operation/menu.php:175 msgid "Network map" msgstr "" @@ -48434,15 +48488,15 @@ msgid "Custom filters" msgstr "" #: ../../include/lib/Dashboard/Widgets/events_list.php:383 -#: ../../include/functions_events.php:3141 -#: ../../include/functions_events.php:3147 -#: ../../include/functions_events.php:3169 +#: ../../include/functions_events.php:3120 +#: ../../include/functions_events.php:3126 +#: ../../include/functions_events.php:3148 msgid "All event" msgstr "" #: ../../include/lib/Dashboard/Widgets/events_list.php:384 -#: ../../include/functions_events.php:3143 -#: ../../include/functions_events.php:3177 +#: ../../include/functions_events.php:3122 +#: ../../include/functions_events.php:3156 msgid "Only validated" msgstr "" @@ -48503,7 +48557,7 @@ msgid "Global status" msgstr "" #: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:537 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:536 msgid "Top N events by module" msgstr "" @@ -48603,12 +48657,12 @@ msgid "This graph has been deleted." msgstr "" #: ../../include/lib/Dashboard/Widgets/custom_graph.php:358 -#: ../../operation/reporting/graph_viewer.php:376 +#: ../../operation/reporting/graph_viewer.php:348 msgid "Horizontal Bars" msgstr "" #: ../../include/lib/Dashboard/Widgets/custom_graph.php:359 -#: ../../operation/reporting/graph_viewer.php:377 +#: ../../operation/reporting/graph_viewer.php:349 msgid "Vertical Bars" msgstr "" @@ -48692,7 +48746,7 @@ msgid "Groups found" msgstr "" #: ../../include/lib/Dashboard/Widgets/top_n.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n.php:536 +#: ../../include/lib/Dashboard/Widgets/top_n.php:540 msgid "Top N of agent modules" msgstr "" @@ -48723,45 +48777,45 @@ msgid "Digital" msgstr "" #: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:163 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:502 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:501 msgid "Top N events by agent" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterManager.php:225 +#: ../../include/lib/ClusterViewer/ClusterManager.php:224 msgid "Cluster not found: " msgstr "" -#: ../../include/lib/ClusterViewer/ClusterManager.php:234 +#: ../../include/lib/ClusterViewer/ClusterManager.php:233 msgid "Cluster agent not found: " msgstr "" -#: ../../include/lib/ClusterViewer/ClusterManager.php:271 +#: ../../include/lib/ClusterViewer/ClusterManager.php:270 #, php-format msgid "Error while deleting, reason: %s" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterManager.php:279 +#: ../../include/lib/ClusterViewer/ClusterManager.php:278 msgid "Cluster successfully deleted." msgstr "" -#: ../../include/lib/ClusterViewer/ClusterManager.php:305 +#: ../../include/lib/ClusterViewer/ClusterManager.php:304 #, php-format msgid "Error while forcing, reason: %s" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterManager.php:313 +#: ../../include/lib/ClusterViewer/ClusterManager.php:312 msgid "Cluster successfully forced." msgstr "" -#: ../../include/lib/ClusterViewer/ClusterManager.php:571 +#: ../../include/lib/ClusterViewer/ClusterManager.php:568 msgid "Not set" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterManager.php:581 +#: ../../include/lib/ClusterViewer/ClusterManager.php:578 msgid "Active-Active" msgstr "" -#: ../../include/lib/ClusterViewer/ClusterManager.php:583 +#: ../../include/lib/ClusterViewer/ClusterManager.php:580 msgid "Active-Passive" msgstr "" @@ -48972,7 +49026,7 @@ msgid " to apply" msgstr "" #: ../../include/functions_snmp_browser.php:1542 -#: ../../operation/snmpconsole/snmp_browser.php:541 +#: ../../operation/snmpconsole/snmp_browser.php:539 msgid "Create new policy" msgstr "" @@ -48980,6 +49034,15 @@ msgstr "" msgid "Undo" msgstr "" +#: ../../include/chart_generator.php:113 +#: ../../operation/agentes/stat_win.php:51 +#: ../../operation/agentes/stat_win.php:176 +#: ../../operation/agentes/realtime_win.php:51 +#: ../../operation/agentes/interface_traffic_graph_win.php:54 +#: ../../operation/inventory/inventory.php:206 +msgid "There was a problem connecting with the node" +msgstr "" + #: ../../include/functions_groups.php:75 msgid "Alert Actions" msgstr "" @@ -49044,172 +49107,158 @@ msgid "Could not connect: %s" msgstr "" #: ../../include/functions_events.php:2506 -#: ../../operation/agentes/tactical.php:228 +#: ../../operation/agentes/tactical.php:229 msgid "Latest events" msgstr "" -#: ../../include/functions_events.php:2643 -msgid "Events -by module-" -msgstr "" - -#: ../../include/functions_events.php:2649 -#: ../../operation/agentes/tactical.php:245 -msgid "Event graph" -msgstr "" - -#: ../../include/functions_events.php:2651 -#: ../../operation/agentes/tactical.php:248 -msgid "Event graph by agent" -msgstr "" - -#: ../../include/functions_events.php:2790 +#: ../../include/functions_events.php:2769 msgid "Going to unknown" msgstr "" -#: ../../include/functions_events.php:2798 +#: ../../include/functions_events.php:2777 msgid "Alert manually validated" msgstr "" -#: ../../include/functions_events.php:2802 +#: ../../include/functions_events.php:2781 msgid "Going from critical to warning" msgstr "" -#: ../../include/functions_events.php:2808 +#: ../../include/functions_events.php:2787 msgid "Going up to critical state" msgstr "" -#: ../../include/functions_events.php:2814 +#: ../../include/functions_events.php:2793 msgid "Going up to normal state" msgstr "" -#: ../../include/functions_events.php:2818 +#: ../../include/functions_events.php:2797 msgid "Going down from normal to warning" msgstr "" -#: ../../include/functions_events.php:2830 +#: ../../include/functions_events.php:2809 msgid "Discovery server detected a new host" msgstr "" -#: ../../include/functions_events.php:2834 +#: ../../include/functions_events.php:2813 msgid "New agent created" msgstr "" -#: ../../include/functions_events.php:2851 +#: ../../include/functions_events.php:2830 msgid "Unknown type:" msgstr "" -#: ../../include/functions_events.php:3142 -#: ../../include/functions_events.php:3173 +#: ../../include/functions_events.php:3121 +#: ../../include/functions_events.php:3152 msgid "Only new" msgstr "" -#: ../../include/functions_events.php:3144 -#: ../../include/functions_events.php:3181 +#: ../../include/functions_events.php:3123 +#: ../../include/functions_events.php:3160 msgid "Only in process" msgstr "" -#: ../../include/functions_events.php:3145 -#: ../../include/functions_events.php:3185 +#: ../../include/functions_events.php:3124 +#: ../../include/functions_events.php:3164 msgid "Only not validated" msgstr "" -#: ../../include/functions_events.php:3150 -#: ../../include/functions_events.php:3420 -#: ../../include/functions_events.php:3429 +#: ../../include/functions_events.php:3129 +#: ../../include/functions_events.php:3399 +#: ../../include/functions_events.php:3408 msgid "In process" msgstr "" -#: ../../include/functions_events.php:3151 +#: ../../include/functions_events.php:3130 msgid "Not Validated" msgstr "" -#: ../../include/functions_events.php:3343 +#: ../../include/functions_events.php:3322 msgid "Change owner" msgstr "" -#: ../../include/functions_events.php:3405 +#: ../../include/functions_events.php:3384 msgid "Change status" msgstr "" -#: ../../include/functions_events.php:3499 -#: ../../include/functions_events.php:5126 +#: ../../include/functions_events.php:3478 +#: ../../include/functions_events.php:5139 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:314 msgid "Add comment" msgstr "" -#: ../../include/functions_events.php:3519 -#: ../../include/functions_events.php:3523 +#: ../../include/functions_events.php:3498 +#: ../../include/functions_events.php:3502 #: ../../operation/events/events.php:948 msgid "Delete event" msgstr "" -#: ../../include/functions_events.php:3543 +#: ../../include/functions_events.php:3522 msgid "Custom responses" msgstr "" -#: ../../include/functions_events.php:4149 +#: ../../include/functions_events.php:4128 msgid "Extended information" msgstr "" -#: ../../include/functions_events.php:4180 +#: ../../include/functions_events.php:4159 msgid "There was an error connecting to the node" msgstr "" -#: ../../include/functions_events.php:4201 +#: ../../include/functions_events.php:4180 msgid "Agent details" msgstr "" -#: ../../include/functions_events.php:4215 +#: ../../include/functions_events.php:4194 msgid "This agent belongs to metaconsole, is not possible display it" msgstr "" -#: ../../include/functions_events.php:4266 +#: ../../include/functions_events.php:4245 msgid "View custom fields" msgstr "" -#: ../../include/functions_events.php:4289 +#: ../../include/functions_events.php:4268 msgid "Module details" msgstr "" -#: ../../include/functions_events.php:4305 +#: ../../include/functions_events.php:4284 msgid "No assigned" msgstr "" -#: ../../include/functions_events.php:4389 -#: ../../include/functions_events.php:4398 +#: ../../include/functions_events.php:4368 +#: ../../include/functions_events.php:4377 msgid "Go to data overview" msgstr "" -#: ../../include/functions_events.php:4514 +#: ../../include/functions_events.php:4493 #, php-format msgid "Invalid custom data: %s" msgstr "" -#: ../../include/functions_events.php:4743 +#: ../../include/functions_events.php:4722 msgid "First event" msgstr "" -#: ../../include/functions_events.php:4746 +#: ../../include/functions_events.php:4725 msgid "Last event" msgstr "" -#: ../../include/functions_events.php:4835 +#: ../../include/functions_events.php:4814 msgid "Autovalidated" msgstr "" -#: ../../include/functions_events.php:4901 +#: ../../include/functions_events.php:4880 msgid "ID extra" msgstr "" -#: ../../include/functions_events.php:4975 +#: ../../include/functions_events.php:4988 msgid "There are no comments" msgstr "" -#: ../../include/functions_events.php:5039 ../../general/logon_ok.php:208 +#: ../../include/functions_events.php:5052 ../../general/logon_ok.php:208 msgid "by" msgstr "" -#: ../../include/functions_events.php:5136 +#: ../../include/functions_events.php:5149 msgid "" "If event replication is ongoing, it won't be possible to enter comments " "here. This option is only to allow local pandora users to see comments, but " @@ -49217,81 +49266,81 @@ msgid "" "must be done only in the Metaconsole." msgstr "" -#: ../../include/functions_events.php:5706 +#: ../../include/functions_events.php:5719 #, php-format msgid "Event # %d" msgstr "" -#: ../../include/functions_events.php:5709 +#: ../../include/functions_events.php:5722 msgid "Executing command: " msgstr "" -#: ../../include/functions_planned_downtimes.php:577 +#: ../../include/functions_planned_downtimes.php:578 msgid "Succesful stopped the Downtime" msgstr "" -#: ../../include/functions_planned_downtimes.php:578 +#: ../../include/functions_planned_downtimes.php:579 msgid "Unsuccesful stopped the Downtime" msgstr "" -#: ../../include/functions_planned_downtimes.php:733 +#: ../../include/functions_planned_downtimes.php:734 #, php-format msgid "Enabled %s elements from the downtime" msgstr "" -#: ../../include/functions_planned_downtimes.php:792 +#: ../../include/functions_planned_downtimes.php:793 msgid "The downtime must be quiet, disable_agents or disable_agents_alerts" msgstr "" -#: ../../include/functions_planned_downtimes.php:797 +#: ../../include/functions_planned_downtimes.php:798 msgid "The execution must be once or periodically" msgstr "" -#: ../../include/functions_planned_downtimes.php:802 +#: ../../include/functions_planned_downtimes.php:803 msgid "The periodicity must be weekly or monthly" msgstr "" -#: ../../include/functions_planned_downtimes.php:807 +#: ../../include/functions_planned_downtimes.php:808 msgid "There is no user with such id" msgstr "" -#: ../../include/functions_planned_downtimes.php:812 +#: ../../include/functions_planned_downtimes.php:813 msgid "There is no group with such id" msgstr "" -#: ../../include/functions_planned_downtimes.php:817 +#: ../../include/functions_planned_downtimes.php:818 msgid "Date is wrong formatted" msgstr "" -#: ../../include/functions_planned_downtimes.php:924 +#: ../../include/functions_planned_downtimes.php:925 msgid "This scheduled downtime are executed now. Can't delete in this moment." msgstr "" -#: ../../include/functions_planned_downtimes.php:931 +#: ../../include/functions_planned_downtimes.php:932 msgid "Deleted this scheduled downtime successfully." msgstr "" -#: ../../include/functions_planned_downtimes.php:933 +#: ../../include/functions_planned_downtimes.php:934 msgid "Problems for deleted this scheduled downtime." msgstr "" -#: ../../include/functions_planned_downtimes.php:993 +#: ../../include/functions_planned_downtimes.php:994 msgid "Error adding agents to copied downtime" msgstr "" -#: ../../include/functions_planned_downtimes.php:1016 +#: ../../include/functions_planned_downtimes.php:1017 msgid "Error adding module to copied downtime" msgstr "" -#: ../../index.php:990 +#: ../../index.php:993 msgid "User doesn\\'t exist." msgstr "" -#: ../../index.php:1012 +#: ../../index.php:1015 msgid "User only can use the API." msgstr "" -#: ../../index.php:1214 +#: ../../index.php:1217 #, php-format msgid "Metaconsole MR (%d) is different than this one (%d)" msgstr "" @@ -49364,83 +49413,98 @@ msgstr "" msgid "Tree search" msgstr "" -#: ../../operation/users/user_edit.php:156 +#: ../../operation/users/user_edit.php:31 +msgid "User detail editor" +msgstr "" + +#: ../../operation/users/user_edit.php:159 msgid "Current password of user is required to perform password change" msgstr "" -#: ../../operation/users/user_edit.php:158 +#: ../../operation/users/user_edit.php:161 msgid "Current password of user is not correct" msgstr "" -#: ../../operation/users/user_edit.php:162 +#: ../../operation/users/user_edit.php:165 msgid "" "Passwords didn't match or other problem encountered while updating passwords" msgstr "" -#: ../../operation/users/user_edit.php:175 -#: ../../operation/users/user_edit.php:190 +#: ../../operation/users/user_edit.php:178 +#: ../../operation/users/user_edit.php:197 msgid "Password successfully updated" msgstr "" -#: ../../operation/users/user_edit.php:185 -#: ../../operation/users/user_edit.php:233 +#: ../../operation/users/user_edit.php:188 +#: ../../operation/users/user_edit.php:240 msgid "Error updating user info" msgstr "" -#: ../../operation/users/user_edit.php:192 +#: ../../operation/users/user_edit.php:199 msgid "Skin successfully updated" msgstr "" -#: ../../operation/users/user_edit.php:206 +#: ../../operation/users/user_edit.php:213 msgid "Please enter a valid email" msgstr "" -#: ../../operation/users/user_edit.php:208 +#: ../../operation/users/user_edit.php:215 msgid "Please enter a valid phone number" msgstr "" -#: ../../operation/users/user_edit.php:214 +#: ../../operation/users/user_edit.php:221 msgid "Error updating passwords: " msgstr "" -#: ../../operation/users/user_edit.php:238 +#: ../../operation/users/user_edit.php:245 msgid "Edit my User" msgstr "" -#: ../../operation/users/user_edit.php:303 +#: ../../operation/users/user_edit.php:328 +msgid "" +"Directive HTTP_AUTHORIZATION=$1 is not set. Please, add it to /etc/httpd/" +"conf.d/php.conf" +msgstr "" + +#: ../../operation/users/user_edit.php:377 msgid "Current password" msgstr "" -#: ../../operation/users/user_edit.php:305 +#: ../../operation/users/user_edit.php:379 msgid "You cannot change your password under the current authentication scheme" msgstr "" -#: ../../operation/users/user_edit.php:320 +#: ../../operation/users/user_edit.php:394 msgid "If checkbox is clicked then block size global configuration is used" msgstr "" -#: ../../operation/users/user_edit.php:414 +#: ../../operation/users/user_edit.php:478 +#: ../../operation/users/user_edit.php:487 +msgid "Theme" +msgstr "" + +#: ../../operation/users/user_edit.php:488 msgid "This change will only apply to nodes" msgstr "" -#: ../../operation/users/user_edit.php:710 +#: ../../operation/users/user_edit.php:784 msgid "eHorus user configuration" msgstr "" -#: ../../operation/users/user_edit.php:715 +#: ../../operation/users/user_edit.php:789 msgid "eHorus user acces enabled" msgstr "" -#: ../../operation/users/user_edit.php:762 +#: ../../operation/users/user_edit.php:836 msgid "Integria user configuration" msgstr "" -#: ../../operation/users/user_edit.php:799 +#: ../../operation/users/user_edit.php:873 msgid "" "You can not change your user info under the current authentication scheme" msgstr "" -#: ../../operation/users/user_edit.php:876 +#: ../../operation/users/user_edit.php:950 msgid "This user doesn't have any assigned profile/group." msgstr "" @@ -49451,7 +49515,7 @@ msgstr "" #: ../../operation/users/user_edit_header.php:127 #: ../../operation/messages/message_list.php:86 -#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:481 +#: ../../operation/messages/message_edit.php:99 ../../operation/menu.php:485 msgid "Workspace" msgstr "" @@ -49562,7 +49626,7 @@ msgstr "" #: ../../operation/agentes/stat_win.php:428 #: ../../operation/agentes/interface_traffic_graph_win.php:215 #: ../../operation/agentes/graphs.php:218 -#: ../../operation/reporting/graph_viewer.php:360 +#: ../../operation/reporting/graph_viewer.php:332 msgid "Time range" msgstr "" @@ -49584,26 +49648,26 @@ msgstr "" msgid "Graph configuration menu" msgstr "" -#: ../../operation/agentes/alerts_status.php:340 +#: ../../operation/agentes/alerts_status.php:347 msgid "No actions" msgstr "" -#: ../../operation/agentes/alerts_status.php:373 +#: ../../operation/agentes/alerts_status.php:380 #: ../../operation/agentes/estado_monitores.php:539 #: ../../operation/agentes/alerts_status.functions.php:160 msgid "Free text for search (*):" msgstr "" -#: ../../operation/agentes/alerts_status.php:374 +#: ../../operation/agentes/alerts_status.php:381 #: ../../operation/agentes/alerts_status.functions.php:161 msgid "Filter by module name, template name or action name" msgstr "" -#: ../../operation/agentes/alerts_status.php:443 +#: ../../operation/agentes/alerts_status.php:450 msgid "Full list of alerts" msgstr "" -#: ../../operation/agentes/alerts_status.php:534 +#: ../../operation/agentes/alerts_status.php:541 msgid "You must select at least one alert." msgstr "" @@ -49722,14 +49786,14 @@ msgid "Latest events for this agent" msgstr "" #: ../../operation/agentes/networkmap.dinamic.php:102 -#: ../../operation/agentes/pandora_networkmap.view.php:2310 +#: ../../operation/agentes/pandora_networkmap.view.php:2314 #: ../../operation/snmpconsole/snmp_statistics.php:45 #: ../../operation/snmpconsole/snmp_browser.php:56 msgid "Normal screen" msgstr "" #: ../../operation/agentes/networkmap.dinamic.php:126 -#: ../../operation/agentes/pandora_networkmap.view.php:2338 +#: ../../operation/agentes/pandora_networkmap.view.php:2342 msgid "List of networkmap" msgstr "" @@ -50042,7 +50106,7 @@ msgstr "" msgid "Current data at %s" msgstr "" -#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:544 +#: ../../operation/agentes/exportdata.php:34 ../../operation/menu.php:548 msgid "Export data" msgstr "" @@ -50109,17 +50173,17 @@ msgid "Data Type" msgstr "" #: ../../operation/agentes/status_monitor.php:1444 -#: ../../operation/agentes/pandora_networkmap.view.php:1782 +#: ../../operation/agentes/pandora_networkmap.view.php:1786 msgid "(Adopt) " msgstr "" #: ../../operation/agentes/status_monitor.php:1452 -#: ../../operation/agentes/pandora_networkmap.view.php:1790 +#: ../../operation/agentes/pandora_networkmap.view.php:1794 msgid "(Unlinked) (Adopt) " msgstr "" #: ../../operation/agentes/status_monitor.php:1455 -#: ../../operation/agentes/pandora_networkmap.view.php:1793 +#: ../../operation/agentes/pandora_networkmap.view.php:1797 msgid "(Unlinked) " msgstr "" @@ -50166,43 +50230,43 @@ msgid "Not Normal" msgstr "" #: ../../operation/agentes/estado_monitores.php:540 -msgid "Search by module name, list matches." +msgid "Search by module name or alert name, list matches." msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1650 +#: ../../operation/agentes/pandora_networkmap.view.php:1654 msgid "Success be updated." msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1747 +#: ../../operation/agentes/pandora_networkmap.view.php:1751 msgid "Name: " msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1797 +#: ../../operation/agentes/pandora_networkmap.view.php:1801 msgid "Policy: " msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1894 +#: ../../operation/agentes/pandora_networkmap.view.php:1898 msgid "Data: " msgstr "" -#: ../../operation/agentes/pandora_networkmap.view.php:1896 +#: ../../operation/agentes/pandora_networkmap.view.php:1900 #: ../../operation/agentes/estado_generalagente.php:832 msgid "Last contact: " msgstr "" -#: ../../operation/agentes/ver_agente.php:1244 +#: ../../operation/agentes/ver_agente.php:1250 msgid "Sons" msgstr "" -#: ../../operation/agentes/ver_agente.php:1594 +#: ../../operation/agentes/ver_agente.php:1612 msgid "Log Viewer" msgstr "" -#: ../../operation/agentes/ver_agente.php:1633 +#: ../../operation/agentes/ver_agente.php:1651 msgid "Terminal" msgstr "" -#: ../../operation/agentes/ver_agente.php:1655 +#: ../../operation/agentes/ver_agente.php:1673 msgid "Processes" msgstr "" @@ -50250,6 +50314,15 @@ msgstr "" msgid "Interface information (SNMP)" msgstr "" +#: ../../operation/agentes/agent_inventory.php:73 +msgid "This agent has not modules inventory" +msgstr "" + +#: ../../operation/agentes/agent_inventory.php:193 +#: ../../operation/agentes/agent_inventory.php:194 +msgid "Diff view" +msgstr "" + #: ../../operation/agentes/alerts_status.functions.php:48 msgid "Alert(s) validated" msgstr "" @@ -50262,10 +50335,18 @@ msgstr "" msgid "Filter by agent name, module name, template name or action name" msgstr "" -#: ../../operation/agentes/tactical.php:201 +#: ../../operation/agentes/tactical.php:202 msgid "Report of State" msgstr "" +#: ../../operation/agentes/tactical.php:246 +msgid "Event graph" +msgstr "" + +#: ../../operation/agentes/tactical.php:251 +msgid "Event graph by agent" +msgstr "" + #: ../../operation/messages/message_list.php:46 #: ../../operation/messages/message_list.php:55 #: ../../operation/messages/message_edit.php:66 @@ -50424,7 +50505,7 @@ msgid "Filtered by IP %s. Click here to remove the filter." msgstr "" #: ../../operation/network/network_usage_map.php:29 -#: ../../operation/menu.php:108 +#: ../../operation/menu.php:112 msgid "Network usage map" msgstr "" @@ -50510,7 +50591,7 @@ msgstr "" msgid "No filter selected" msgstr "" -#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:94 +#: ../../operation/netflow/netflow_explorer.php:37 ../../operation/menu.php:98 msgid "Netflow explorer" msgstr "" @@ -50527,15 +50608,15 @@ msgid "Traps received by source" msgstr "" #: ../../operation/snmpconsole/snmp_statistics.php:183 -#: ../../operation/snmpconsole/snmp_statistics.php:251 +#: ../../operation/snmpconsole/snmp_statistics.php:256 msgid "Number" msgstr "" -#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_statistics.php:242 msgid "Traps received by Enterprise String" msgstr "" -#: ../../operation/snmpconsole/snmp_statistics.php:250 +#: ../../operation/snmpconsole/snmp_statistics.php:255 msgid "Trap Enterprise String" msgstr "" @@ -50547,16 +50628,16 @@ msgstr "" msgid "Adding modules in progress" msgstr "" -#: ../../operation/snmpconsole/snmp_browser.php:552 +#: ../../operation/snmpconsole/snmp_browser.php:550 msgid "Create policy" msgstr "" -#: ../../operation/snmpconsole/snmp_browser.php:644 +#: ../../operation/snmpconsole/snmp_browser.php:642 msgid "Are you sure you want add module?" msgstr "" #: ../../operation/snmpconsole/snmp_mib_uploader.php:47 -#: ../../operation/menu.php:133 +#: ../../operation/menu.php:137 msgid "MIB uploader" msgstr "" @@ -50566,59 +50647,59 @@ msgid "" "on other MIB. To customize trap definitions use the SNMP trap editor." msgstr "" -#: ../../operation/menu.php:98 +#: ../../operation/menu.php:102 msgid "Netflow Live View" msgstr "" -#: ../../operation/menu.php:128 +#: ../../operation/menu.php:132 msgid "SNMP browser" msgstr "" -#: ../../operation/menu.php:137 +#: ../../operation/menu.php:141 msgid "SNMP filters" msgstr "" -#: ../../operation/menu.php:270 ../../operation/gis_maps/gis_map.php:35 +#: ../../operation/menu.php:274 ../../operation/gis_maps/gis_map.php:35 msgid "GIS Maps" msgstr "" -#: ../../operation/menu.php:275 +#: ../../operation/menu.php:279 msgid "List of Gis maps" msgstr "" -#: ../../operation/menu.php:426 +#: ../../operation/menu.php:430 msgid "RSS" msgstr "" -#: ../../operation/menu.php:470 ../../operation/events/events.php:1583 +#: ../../operation/menu.php:474 ../../operation/events/events.php:1583 msgid "Sound Alerts" msgstr "" -#: ../../operation/menu.php:493 +#: ../../operation/menu.php:497 msgid "Configure user notifications" msgstr "" -#: ../../operation/menu.php:513 +#: ../../operation/menu.php:517 msgid "Integria IMS statistics" msgstr "" -#: ../../operation/menu.php:514 +#: ../../operation/menu.php:518 msgid "Integria IMS ticket list" msgstr "" -#: ../../operation/menu.php:527 +#: ../../operation/menu.php:531 msgid "Messages List" msgstr "" -#: ../../operation/menu.php:528 +#: ../../operation/menu.php:532 msgid "New message" msgstr "" -#: ../../operation/menu.php:550 +#: ../../operation/menu.php:554 msgid "Scheduled downtime" msgstr "" -#: ../../operation/menu.php:624 +#: ../../operation/menu.php:628 msgid "Tools" msgstr "" @@ -50841,6 +50922,18 @@ msgstr "" msgid "No tickets to show" msgstr "" +#: ../../operation/inventory/inventory.php:292 +msgid "You must select at least one filter." +msgstr "" + +#: ../../operation/inventory/inventory.php:441 +msgid "Order by agent" +msgstr "" + +#: ../../operation/inventory/inventory.php:485 +msgid "Export this list to CSV" +msgstr "" + #: ../../operation/search_main.php:55 ../../operation/search_main.php:57 #: ../../operation/search_main.php:65 ../../operation/search_main.php:67 #: ../../operation/search_main.php:69 ../../operation/search_main.php:71 @@ -50879,47 +50972,47 @@ msgid "Invalid date selected. Initial date must be before end date." msgstr "" #: ../../operation/reporting/reporting_viewer.php:426 -#: ../../operation/reporting/graph_viewer.php:505 +#: ../../operation/reporting/graph_viewer.php:502 msgid "Invalid date selected" msgstr "" #: ../../operation/reporting/custom_reporting.php:28 -#: ../../operation/reporting/graph_viewer.php:539 +#: ../../operation/reporting/graph_viewer.php:536 msgid "There are no defined reportings" msgstr "" -#: ../../operation/reporting/graph_viewer.php:335 -msgid "No data." -msgstr "" - -#: ../../operation/reporting/graph_viewer.php:369 -#: ../../operation/reporting/graph_viewer.php:391 +#: ../../operation/reporting/graph_viewer.php:341 +#: ../../operation/reporting/graph_viewer.php:363 msgid "Graph defined" msgstr "" -#: ../../operation/reporting/graph_viewer.php:383 +#: ../../operation/reporting/graph_viewer.php:355 msgid "Equalize maxiddmum thresholds" msgstr "" -#: ../../operation/reporting/graph_viewer.php:383 +#: ../../operation/reporting/graph_viewer.php:355 msgid "" "If an option is selected, all graphs will have the highest value from all " "modules included in the graph as a maximum threshold" msgstr "" -#: ../../operation/reporting/graph_viewer.php:392 +#: ../../operation/reporting/graph_viewer.php:364 msgid "Zoom x1" msgstr "" -#: ../../operation/reporting/graph_viewer.php:393 +#: ../../operation/reporting/graph_viewer.php:365 msgid "Zoom x2" msgstr "" -#: ../../operation/reporting/graph_viewer.php:394 +#: ../../operation/reporting/graph_viewer.php:366 msgid "Zoom x3" msgstr "" -#: ../../operation/reporting/graph_viewer.php:513 +#: ../../operation/reporting/graph_viewer.php:400 +msgid "No data." +msgstr "" + +#: ../../operation/reporting/graph_viewer.php:510 msgid "Custom graph viewer" msgstr "" @@ -50947,10 +51040,6 @@ msgstr "" msgid "The URL of your feed has bad hash." msgstr "" -#: ../../operation/events/events.php:256 -msgid "Metaconsola" -msgstr "" - #: ../../operation/events/events.php:854 msgid "Validate events" msgstr "" From 0f42a5fa886a96326ebf0ab8659ba8db75244bd9 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Wed, 18 Jan 2023 11:29:06 +0100 Subject: [PATCH 60/72] #9783 Fixed networkmap 4 --- .../include/functions_networkmap.php | 102 ++++++++++++++---- .../functions_pandora_networkmap.js | 3 +- .../agentes/pandora_networkmap.view.php | 2 +- 3 files changed, 82 insertions(+), 25 deletions(-) diff --git a/pandora_console/include/functions_networkmap.php b/pandora_console/include/functions_networkmap.php index 06d5fdbf76..7d9122dbe5 100644 --- a/pandora_console/include/functions_networkmap.php +++ b/pandora_console/include/functions_networkmap.php @@ -4161,33 +4161,91 @@ function networkmap_get_new_nodes_and_links($networkmap, $x, $y) $agents = get_discovery_agents($id_recon, true); $relations_discovery = modules_get_relations(['id_rt' => $id_recon, 'distinct' => true]); - $relations_maps = db_get_all_rows_sql( - sprintf( - 'SELECT * FROM trel_item WHERE id_map = %s AND parent_type = 1 AND child_type = 1', - $id_networkmap - ) - ); + $array_aux = $relations_discovery; + $target_aux = $relations_discovery; - $id_recon = $id_networkmap; + foreach ($relations_discovery as $key => $rel) { + foreach ($array_aux as $key2 => $rel2) { + if ($key2 <= $key) { + continue; + } - foreach ($relations_discovery as $key => $discovery) { - foreach ($relations_maps as $key2 => $map) { - if ($map['id_parent_source_data'] == $discovery['module_a'] - && $map['id_child_source_data'] == $discovery['module_b'] - ) { - unset($relations_discovery[$key]); - unset($relations_maps[$key2]); - continue 2; - } else if ($map['id_parent_source_data'] == $discovery['module_b'] - && $map['id_child_source_data'] == $discovery['module_a'] - ) { - unset($relations_discovery[$key]); - unset($relations_maps[$key2]); - continue 2; + if ($rel['module_a'] === $rel2['module_a']) { + $agent1 = modules_get_agentmodule_agent($rel['module_b']); + $agent2 = modules_get_agentmodule_agent($rel2['module_b']); + + if ($agent1 === $agent2) { + $name1 = modules_get_agentmodule_name($rel['module_b']); + $name2 = modules_get_agentmodule_name($rel2['module_b']); + if ($name1 == 'Host Alive') { + unset($target_aux[$key]); + } else if ($name2 == 'Host Alive') { + unset($target_aux[$key2]); + } + + continue; + } + } + + if ($rel['module_b'] === $rel2['module_b']) { + $agent1 = modules_get_agentmodule_agent($rel['module_a']); + $agent2 = modules_get_agentmodule_agent($rel2['module_a']); + + if ($agent1 === $agent2) { + $name1 = modules_get_agentmodule_name($rel['module_a']); + $name2 = modules_get_agentmodule_name($rel2['module_a']); + if ($name1 == 'Host Alive') { + unset($target_aux[$key]); + } else if ($name2 == 'Host Alive') { + unset($target_aux[$key2]); + } + + continue; + } + } + + if ($rel['module_a'] === $rel2['module_b']) { + $agent1 = modules_get_agentmodule_agent($rel['module_b']); + $agent2 = modules_get_agentmodule_agent($rel2['module_a']); + + if ($agent1 === $agent2) { + $name1 = modules_get_agentmodule_name($rel['module_b']); + $name2 = modules_get_agentmodule_name($rel2['module_a']); + if ($name1 == 'Host Alive') { + unset($target_aux[$key]); + } else if ($name2 == 'Host Alive') { + unset($target_aux[$key2]); + } + + continue; + } + } + + if ($rel['module_b'] === $rel2['module_a']) { + $agent1 = modules_get_agentmodule_agent($rel['module_a']); + $agent2 = modules_get_agentmodule_agent($rel2['module_b']); + + if ($agent1 === $agent2) { + $name1 = modules_get_agentmodule_name($rel['module_a']); + $name2 = modules_get_agentmodule_name($rel2['module_b']); + if ($name1 == 'Host Alive') { + unset($target_aux[$key]); + } else if ($name2 == 'Host Alive') { + unset($target_aux[$key2]); + } + + continue; + } } } } + $relations_discovery = $target_aux; + + db_process_sql_delete('trel_item', ['id_map' => $id_networkmap, 'parent_type' => 1, 'child_type' => 1]); + + $id_recon = $id_networkmap; + // Relations Module <-> Module. foreach ($relations_discovery as $key => $relation) { $module_a = $relation['module_a']; @@ -4351,8 +4409,6 @@ function networkmap_get_new_nodes_and_links($networkmap, $x, $y) GROUP BY source_data'; $nodes = db_get_all_rows_sql($sql); - hd($nodes, true); - foreach ($nodes as $node) { // First the relation parents without l2 interfaces. $parent = db_get_value_filter( diff --git a/pandora_console/include/javascript/functions_pandora_networkmap.js b/pandora_console/include/javascript/functions_pandora_networkmap.js index 4882ccad2b..300d3f23a6 100644 --- a/pandora_console/include/javascript/functions_pandora_networkmap.js +++ b/pandora_console/include/javascript/functions_pandora_networkmap.js @@ -2505,7 +2505,7 @@ function refresh() { if (array_nodes.length === 0 && array_links.length === 0) { update_networkmap(); $("#spinner_networkmap").css("display", "none"); - startCountDown(refresh_time); + window.location = location; } else { if (array_nodes.length > 0) { $.ajax({ @@ -2531,6 +2531,7 @@ function refresh() { }, error: function(e) { $("#spinner_networkmap").css("display", "none"); + window.location = location; } }); } diff --git a/pandora_console/operation/agentes/pandora_networkmap.view.php b/pandora_console/operation/agentes/pandora_networkmap.view.php index ac888a13fa..edc3a15dd1 100644 --- a/pandora_console/operation/agentes/pandora_networkmap.view.php +++ b/pandora_console/operation/agentes/pandora_networkmap.view.php @@ -1057,7 +1057,7 @@ if (is_ajax() === true) { if (preg_match('/(.+)_ifOperStatus$/', (string) $source_text, $matches)) { if ($matches[1]) { - $source_text = $matches[1]; + $source_text = $matches[1]; } } } else { From c7523467e007cedfebb14c02b3625bc94d9b86ed Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 19 Jan 2023 01:00:34 +0100 Subject: [PATCH 61/72] Auto-updated build strings. --- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 2 +- pandora_agents/unix/pandora_agent.spec | 2 +- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/installer/pandora.mpi | 2 +- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 2 +- pandora_console/pandora_console.rhel7.spec | 2 +- pandora_console/pandora_console.spec | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 2 +- pandora_server/pandora_server.spec | 2 +- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 25 files changed, 25 insertions(+), 25 deletions(-) diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index c534f4b1db..c65f1597ac 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.767-230118 +Version: 7.0NG.767-230119 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 6f20c6670e..0699b66f86 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230118" +pandora_version="7.0NG.767-230119" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/pandora_agent b/pandora_agents/unix/pandora_agent index 61fbb356bf..4060becb6d 100755 --- a/pandora_agents/unix/pandora_agent +++ b/pandora_agents/unix/pandora_agent @@ -1015,7 +1015,7 @@ my $Sem = undef; my $ThreadSem = undef; use constant AGENT_VERSION => '7.0NG.767'; -use constant AGENT_BUILD => '230118'; +use constant AGENT_BUILD => '230119'; # Agent log default file size maximum and instances use constant DEFAULT_MAX_LOG_SIZE => 600000; diff --git a/pandora_agents/unix/pandora_agent.redhat.spec b/pandora_agents/unix/pandora_agent.redhat.spec index b20d8317e3..f5578c35d3 100644 --- a/pandora_agents/unix/pandora_agent.redhat.spec +++ b/pandora_agents/unix/pandora_agent.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.767 -%define release 230118 +%define release 230119 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent.spec b/pandora_agents/unix/pandora_agent.spec index fa1421fbed..95134e7107 100644 --- a/pandora_agents/unix/pandora_agent.spec +++ b/pandora_agents/unix/pandora_agent.spec @@ -3,7 +3,7 @@ # %define name pandorafms_agent_linux %define version 7.0NG.767 -%define release 230118 +%define release 230119 Summary: Pandora FMS Linux agent, PERL version Name: %{name} diff --git a/pandora_agents/unix/pandora_agent_installer b/pandora_agents/unix/pandora_agent_installer index 8c21784517..7cbc075b10 100755 --- a/pandora_agents/unix/pandora_agent_installer +++ b/pandora_agents/unix/pandora_agent_installer @@ -10,7 +10,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230118" +PI_BUILD="230119" OS_NAME=`uname -s` FORCE=0 diff --git a/pandora_agents/win32/installer/pandora.mpi b/pandora_agents/win32/installer/pandora.mpi index 1de04f2334..56d29192cd 100644 --- a/pandora_agents/win32/installer/pandora.mpi +++ b/pandora_agents/win32/installer/pandora.mpi @@ -186,7 +186,7 @@ UpgradeApplicationID {} Version -{230118} +{230119} ViewReadme {Yes} diff --git a/pandora_agents/win32/pandora.cc b/pandora_agents/win32/pandora.cc index f4d09bff89..c59bd69b19 100644 --- a/pandora_agents/win32/pandora.cc +++ b/pandora_agents/win32/pandora.cc @@ -30,7 +30,7 @@ using namespace Pandora; using namespace Pandora_Strutils; #define PATH_SIZE _MAX_PATH+1 -#define PANDORA_VERSION ("7.0NG.767 Build 230118") +#define PANDORA_VERSION ("7.0NG.767 Build 230119") string pandora_path; string pandora_dir; diff --git a/pandora_agents/win32/versioninfo.rc b/pandora_agents/win32/versioninfo.rc index 1b7a7a291e..fd1e1b2039 100644 --- a/pandora_agents/win32/versioninfo.rc +++ b/pandora_agents/win32/versioninfo.rc @@ -11,7 +11,7 @@ BEGIN VALUE "LegalCopyright", "Artica ST" VALUE "OriginalFilename", "PandoraAgent.exe" VALUE "ProductName", "Pandora FMS Windows Agent" - VALUE "ProductVersion", "(7.0NG.767(Build 230118))" + VALUE "ProductVersion", "(7.0NG.767(Build 230119))" VALUE "FileVersion", "1.0.0.0" END END diff --git a/pandora_console/DEBIAN/control b/pandora_console/DEBIAN/control index fcf83d0085..0c4202ff21 100644 --- a/pandora_console/DEBIAN/control +++ b/pandora_console/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-console -Version: 7.0NG.767-230118 +Version: 7.0NG.767-230119 Architecture: all Priority: optional Section: admin diff --git a/pandora_console/DEBIAN/make_deb_package.sh b/pandora_console/DEBIAN/make_deb_package.sh index c6cec30de2..e77815d8f3 100644 --- a/pandora_console/DEBIAN/make_deb_package.sh +++ b/pandora_console/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230118" +pandora_version="7.0NG.767-230119" package_pear=0 package_pandora=1 diff --git a/pandora_console/include/config_process.php b/pandora_console/include/config_process.php index 62710fa775..fa7db11d0b 100644 --- a/pandora_console/include/config_process.php +++ b/pandora_console/include/config_process.php @@ -20,7 +20,7 @@ /** * Pandora build version and version */ -$build_version = 'PC230118'; +$build_version = 'PC230119'; $pandora_version = 'v7.0NG.767'; // Do not overwrite default timezone set if defined. diff --git a/pandora_console/install.php b/pandora_console/install.php index 5bc0662ccc..e1d7fcb6d5 100644 --- a/pandora_console/install.php +++ b/pandora_console/install.php @@ -129,7 +129,7 @@
[ qw() ] ); diff --git a/pandora_server/pandora_server.redhat.spec b/pandora_server/pandora_server.redhat.spec index 4c2860b82d..8e5639db33 100644 --- a/pandora_server/pandora_server.redhat.spec +++ b/pandora_server/pandora_server.redhat.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230118 +%define release 230119 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server.spec b/pandora_server/pandora_server.spec index b01c88608f..9decc87e4a 100644 --- a/pandora_server/pandora_server.spec +++ b/pandora_server/pandora_server.spec @@ -3,7 +3,7 @@ # %define name pandorafms_server %define version 7.0NG.767 -%define release 230118 +%define release 230119 Summary: Pandora FMS Server Name: %{name} diff --git a/pandora_server/pandora_server_installer b/pandora_server/pandora_server_installer index 49453848b4..2352cd343c 100755 --- a/pandora_server/pandora_server_installer +++ b/pandora_server/pandora_server_installer @@ -9,7 +9,7 @@ # ********************************************************************** PI_VERSION="7.0NG.767" -PI_BUILD="230118" +PI_BUILD="230119" MODE=$1 if [ $# -gt 1 ]; then diff --git a/pandora_server/util/pandora_db.pl b/pandora_server/util/pandora_db.pl index 212b47069d..e033202a79 100755 --- a/pandora_server/util/pandora_db.pl +++ b/pandora_server/util/pandora_db.pl @@ -35,7 +35,7 @@ use PandoraFMS::Config; use PandoraFMS::DB; # version: define current version -my $version = "7.0NG.767 Build 230118"; +my $version = "7.0NG.767 Build 230119"; # Pandora server configuration my %conf; diff --git a/pandora_server/util/pandora_manage.pl b/pandora_server/util/pandora_manage.pl index cb2b6aa453..1212ccc27d 100755 --- a/pandora_server/util/pandora_manage.pl +++ b/pandora_server/util/pandora_manage.pl @@ -36,7 +36,7 @@ use Encode::Locale; Encode::Locale::decode_argv; # version: define current version -my $version = "7.0NG.767 Build 230118"; +my $version = "7.0NG.767 Build 230119"; # save program name for logging my $progname = basename($0); From 68eac366dd2fc86e354f2f178d4c215a61241d90 Mon Sep 17 00:00:00 2001 From: Daniel Maya Date: Thu, 19 Jan 2023 10:37:52 +0100 Subject: [PATCH 62/72] #9971 Fixed imageSrc --- pandora_console/include/rest-api/models/VisualConsole/Item.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pandora_console/include/rest-api/models/VisualConsole/Item.php b/pandora_console/include/rest-api/models/VisualConsole/Item.php index afdb679b97..b1e4307d8a 100644 --- a/pandora_console/include/rest-api/models/VisualConsole/Item.php +++ b/pandora_console/include/rest-api/models/VisualConsole/Item.php @@ -1771,8 +1771,8 @@ class Item extends CachedModel $imageSrc = static::issetInArray( $data, [ - 'image', 'imageSrc', + 'image', 'backgroundColor', 'backgroundType', 'valueType', From d1fb27f5c4d7f776af5b3d85da9db6a148cc56b2 Mon Sep 17 00:00:00 2001 From: artica Date: Thu, 19 Jan 2023 13:00:10 +0100 Subject: [PATCH 63/72] Updated version and build strings. --- pandora_agents/pc/AIX/pandora_agent.conf | 2 +- pandora_agents/pc/FreeBSD/pandora_agent.conf | 2 +- pandora_agents/pc/HP-UX/pandora_agent.conf | 2 +- pandora_agents/pc/Linux/pandora_agent.conf | 2 +- pandora_agents/pc/NT4/pandora_agent.conf | 2 +- pandora_agents/pc/SunOS/pandora_agent.conf | 2 +- pandora_agents/pc/Win32/pandora_agent.conf | 2 +- pandora_agents/shellscript/aix/pandora_agent.conf | 2 +- pandora_agents/shellscript/bsd-ipso/pandora_agent.conf | 2 +- pandora_agents/shellscript/hp-ux/pandora_agent.conf | 2 +- pandora_agents/shellscript/linux/pandora_agent.conf | 2 +- pandora_agents/shellscript/mac_osx/pandora_agent.conf | 2 +- pandora_agents/shellscript/openWRT/pandora_agent.conf | 2 +- pandora_agents/shellscript/solaris/pandora_agent.conf | 2 +- pandora_agents/unix/AIX/pandora_agent.conf | 2 +- pandora_agents/unix/DEBIAN/control | 2 +- pandora_agents/unix/DEBIAN/make_deb_package.sh | 2 +- pandora_agents/unix/Darwin/dmg/build_darwin_dmg.sh | 2 +- pandora_agents/unix/Darwin/dmg/extras/distribution.xml | 4 ++-- .../PandoraFMS agent uninstaller.app/Contents/Info.plist | 6 +++--- pandora_agents/unix/Darwin/pandora_agent.conf | 2 +- pandora_agents/unix/FreeBSD/pandora_agent.conf | 2 +- pandora_agents/unix/HP-UX/pandora_agent.conf | 2 +- pandora_agents/unix/Linux/pandora_agent.conf | 2 +- pandora_agents/unix/NT4/pandora_agent.conf | 2 +- pandora_agents/unix/NetBSD/pandora_agent.conf | 2 +- pandora_agents/unix/SunOS/pandora_agent.conf | 2 +- pandora_agents/unix/pandora_agent | 2 +- pandora_agents/unix/pandora_agent.redhat.spec | 4 ++-- pandora_agents/unix/pandora_agent.spec | 4 ++-- pandora_agents/unix/pandora_agent_installer | 2 +- pandora_agents/win32/bin/pandora_agent.conf | 2 +- pandora_agents/win32/installer/pandora.mpi | 4 ++-- pandora_agents/win32/pandora.cc | 2 +- pandora_agents/win32/versioninfo.rc | 2 +- pandora_console/DEBIAN/control | 2 +- pandora_console/DEBIAN/make_deb_package.sh | 2 +- pandora_console/include/config_process.php | 2 +- pandora_console/install.php | 2 +- pandora_console/pandora_console.redhat.spec | 4 ++-- pandora_console/pandora_console.rhel7.spec | 4 ++-- pandora_console/pandora_console.spec | 4 ++-- pandora_console/pandora_console_install | 2 +- pandora_server/DEBIAN/control | 2 +- pandora_server/DEBIAN/make_deb_package.sh | 2 +- pandora_server/conf/pandora_server.conf.new | 2 +- pandora_server/lib/PandoraFMS/Config.pm | 2 +- pandora_server/lib/PandoraFMS/PluginTools.pm | 2 +- pandora_server/pandora_server.redhat.spec | 4 ++-- pandora_server/pandora_server.spec | 4 ++-- pandora_server/pandora_server_installer | 2 +- pandora_server/util/pandora_db.pl | 2 +- pandora_server/util/pandora_manage.pl | 2 +- 53 files changed, 64 insertions(+), 64 deletions(-) diff --git a/pandora_agents/pc/AIX/pandora_agent.conf b/pandora_agents/pc/AIX/pandora_agent.conf index 00a1617190..c8512ffc13 100644 --- a/pandora_agents/pc/AIX/pandora_agent.conf +++ b/pandora_agents/pc/AIX/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.767, AIX version +# Version 7.0NG.768, AIX version # Licensed under GPL license v2, # Copyright (c) 2003-2021 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/FreeBSD/pandora_agent.conf b/pandora_agents/pc/FreeBSD/pandora_agent.conf index 486163d697..c98b6c4f48 100644 --- a/pandora_agents/pc/FreeBSD/pandora_agent.conf +++ b/pandora_agents/pc/FreeBSD/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.767, FreeBSD Version +# Version 7.0NG.768, FreeBSD Version # Licensed under GPL license v2, # Copyright (c) 2003-2021 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/HP-UX/pandora_agent.conf b/pandora_agents/pc/HP-UX/pandora_agent.conf index fd8b228e91..a17181b6c2 100644 --- a/pandora_agents/pc/HP-UX/pandora_agent.conf +++ b/pandora_agents/pc/HP-UX/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.767, HP-UX Version +# Version 7.0NG.768, HP-UX Version # Licensed under GPL license v2, # Copyright (c) 2003-2021 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/Linux/pandora_agent.conf b/pandora_agents/pc/Linux/pandora_agent.conf index ad2d9ff756..7eea50cdac 100644 --- a/pandora_agents/pc/Linux/pandora_agent.conf +++ b/pandora_agents/pc/Linux/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.767, GNU/Linux +# Version 7.0NG.768, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2021 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/NT4/pandora_agent.conf b/pandora_agents/pc/NT4/pandora_agent.conf index 4de40aae53..ed7aae82b3 100644 --- a/pandora_agents/pc/NT4/pandora_agent.conf +++ b/pandora_agents/pc/NT4/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.767, GNU/Linux +# Version 7.0NG.768, GNU/Linux # Licensed under GPL license v2, # Copyright (c) 2003-2021 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/SunOS/pandora_agent.conf b/pandora_agents/pc/SunOS/pandora_agent.conf index c23c8bdfff..8c189f05bf 100644 --- a/pandora_agents/pc/SunOS/pandora_agent.conf +++ b/pandora_agents/pc/SunOS/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.767, Solaris Version +# Version 7.0NG.768, Solaris Version # Licensed under GPL license v2, # Copyright (c) 2003-2021 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/pc/Win32/pandora_agent.conf b/pandora_agents/pc/Win32/pandora_agent.conf index 35de6e4c44..46a569686d 100644 --- a/pandora_agents/pc/Win32/pandora_agent.conf +++ b/pandora_agents/pc/Win32/pandora_agent.conf @@ -1,6 +1,6 @@ # Base config file for Pandora FMS Windows Agent # (c) 2006-2021 Artica Soluciones Tecnologicas -# Version 7.0NG.767 +# Version 7.0NG.768 # This program is Free Software, you can redistribute it and/or modify it # under the terms of the GNU General Public Licence as published by the Free Software # Foundation; either version 2 of the Licence or any later version diff --git a/pandora_agents/shellscript/aix/pandora_agent.conf b/pandora_agents/shellscript/aix/pandora_agent.conf index 8b5f3a9239..a723aa503b 100644 --- a/pandora_agents/shellscript/aix/pandora_agent.conf +++ b/pandora_agents/shellscript/aix/pandora_agent.conf @@ -1,6 +1,6 @@ # Fichero de configuracion base de agentes de Pandora # Base config file for Pandora agents -# Version 7.0NG.767, AIX version +# Version 7.0NG.768, AIX version # General Parameters # ================== diff --git a/pandora_agents/shellscript/bsd-ipso/pandora_agent.conf b/pandora_agents/shellscript/bsd-ipso/pandora_agent.conf index f60fb27d7f..e8dd39e1d2 100644 --- a/pandora_agents/shellscript/bsd-ipso/pandora_agent.conf +++ b/pandora_agents/shellscript/bsd-ipso/pandora_agent.conf @@ -1,6 +1,6 @@ # Fichero de configuracion base de agentes de Pandora # Base config file for Pandora agents -# Version 7.0NG.767 +# Version 7.0NG.768 # FreeBSD/IPSO version # Licenced under GPL licence, 2003-2007 Sancho Lerena diff --git a/pandora_agents/shellscript/hp-ux/pandora_agent.conf b/pandora_agents/shellscript/hp-ux/pandora_agent.conf index cdd0850668..6b4ea56e3d 100644 --- a/pandora_agents/shellscript/hp-ux/pandora_agent.conf +++ b/pandora_agents/shellscript/hp-ux/pandora_agent.conf @@ -1,6 +1,6 @@ # Fichero de configuracion base de agentes de Pandora # Base config file for Pandora agents -# Version 7.0NG.767, HPUX Version +# Version 7.0NG.768, HPUX Version # General Parameters # ================== diff --git a/pandora_agents/shellscript/linux/pandora_agent.conf b/pandora_agents/shellscript/linux/pandora_agent.conf index 5fab196ef4..5ca49a15e1 100644 --- a/pandora_agents/shellscript/linux/pandora_agent.conf +++ b/pandora_agents/shellscript/linux/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.767 +# Version 7.0NG.768 # Licensed under GPL license v2, # (c) 2003-2021 Artica Soluciones Tecnologicas # please visit http://pandora.sourceforge.net diff --git a/pandora_agents/shellscript/mac_osx/pandora_agent.conf b/pandora_agents/shellscript/mac_osx/pandora_agent.conf index c3c55b7967..b26ec72942 100644 --- a/pandora_agents/shellscript/mac_osx/pandora_agent.conf +++ b/pandora_agents/shellscript/mac_osx/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.767 +# Version 7.0NG.768 # Licensed under GPL license v2, # (c) 2003-2021 Artica Soluciones Tecnologicas # please visit http://pandora.sourceforge.net diff --git a/pandora_agents/shellscript/openWRT/pandora_agent.conf b/pandora_agents/shellscript/openWRT/pandora_agent.conf index 40ee8e92a3..b9b09e0f02 100644 --- a/pandora_agents/shellscript/openWRT/pandora_agent.conf +++ b/pandora_agents/shellscript/openWRT/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.767 +# Version 7.0NG.768 # Licensed under GPL license v2, # please visit http://pandora.sourceforge.net diff --git a/pandora_agents/shellscript/solaris/pandora_agent.conf b/pandora_agents/shellscript/solaris/pandora_agent.conf index 37b30848ab..20036302b7 100644 --- a/pandora_agents/shellscript/solaris/pandora_agent.conf +++ b/pandora_agents/shellscript/solaris/pandora_agent.conf @@ -1,6 +1,6 @@ # Fichero de configuracion base de agentes de Pandora # Base config file for Pandora agents -# Version 7.0NG.767, Solaris version +# Version 7.0NG.768, Solaris version # General Parameters # ================== diff --git a/pandora_agents/unix/AIX/pandora_agent.conf b/pandora_agents/unix/AIX/pandora_agent.conf index f0295fd471..e2050f1a5c 100644 --- a/pandora_agents/unix/AIX/pandora_agent.conf +++ b/pandora_agents/unix/AIX/pandora_agent.conf @@ -1,5 +1,5 @@ # Base config file for Pandora FMS agents -# Version 7.0NG.767, AIX version +# Version 7.0NG.768, AIX version # Licensed under GPL license v2, # Copyright (c) 2003-2021 Artica Soluciones Tecnologicas # http://www.pandorafms.com diff --git a/pandora_agents/unix/DEBIAN/control b/pandora_agents/unix/DEBIAN/control index c65f1597ac..b883074ea4 100644 --- a/pandora_agents/unix/DEBIAN/control +++ b/pandora_agents/unix/DEBIAN/control @@ -1,5 +1,5 @@ package: pandorafms-agent-unix -Version: 7.0NG.767-230119 +Version: 7.0NG.768 Architecture: all Priority: optional Section: admin diff --git a/pandora_agents/unix/DEBIAN/make_deb_package.sh b/pandora_agents/unix/DEBIAN/make_deb_package.sh index 0699b66f86..f6e6563812 100644 --- a/pandora_agents/unix/DEBIAN/make_deb_package.sh +++ b/pandora_agents/unix/DEBIAN/make_deb_package.sh @@ -14,7 +14,7 @@ # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -pandora_version="7.0NG.767-230119" +pandora_version="7.0NG.768" echo "Test if you has the tools for to make the packages." whereis dpkg-deb | cut -d":" -f2 | grep dpkg-deb > /dev/null diff --git a/pandora_agents/unix/Darwin/dmg/build_darwin_dmg.sh b/pandora_agents/unix/Darwin/dmg/build_darwin_dmg.sh index 93a271b109..fd449c646b 100644 --- a/pandora_agents/unix/Darwin/dmg/build_darwin_dmg.sh +++ b/pandora_agents/unix/Darwin/dmg/build_darwin_dmg.sh @@ -31,7 +31,7 @@ fi if [ "$#" -ge 2 ]; then VERSION="$2" else - VERSION="7.0NG.767" + VERSION="7.0NG.768" fi # Path for the generated DMG file diff --git a/pandora_agents/unix/Darwin/dmg/extras/distribution.xml b/pandora_agents/unix/Darwin/dmg/extras/distribution.xml index 29d73048dd..4e4b347f08 100644 --- a/pandora_agents/unix/Darwin/dmg/extras/distribution.xml +++ b/pandora_agents/unix/Darwin/dmg/extras/distribution.xml @@ -19,11 +19,11 @@ - pandorafms_src.pdk + pandorafms_src.pdk - pandorafms_uninstall.pdk + pandorafms_uninstall.pdk

2T>GDzZ6iL>h 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\n" "Language-Team: French \n" "Language: fr\n" @@ -25,7 +25,6 @@ msgstr "Calendriers" #: ../../views/calendar/list.php:57 ../../views/calendar/special_days_edit.php:58 #: ../../views/calendar/edit.php:58 ../../views/calendar/special_days.php:59 #: ../../enterprise/extensions/csv_import_group.php:43 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:56 #: ../../enterprise/godmode/modules/local_components.php:257 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:343 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:118 @@ -39,7 +38,7 @@ msgstr "Calendriers" #: ../../enterprise/godmode/policies/policy_queue.php:211 #: ../../enterprise/godmode/policies/policies.php:265 #: ../../enterprise/godmode/policies/policy_linking.php:110 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:311 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:313 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:84 #: ../../enterprise/godmode/policies/policy_collections.php:43 #: ../../enterprise/godmode/policies/policy_agents.php:319 @@ -57,8 +56,9 @@ msgstr "Calendriers" #: ../../enterprise/operation/agentes/policy_view.php:51 #: ../../extensions/resource_registration.php:1107 #: ../../godmode/modules/manage_nc_groups.php:286 +#: ../../godmode/modules/manage_inventory_modules.php:56 #: ../../godmode/modules/manage_network_components.php:307 -#: ../../godmode/groups/group_list.php:396 +#: ../../godmode/groups/group_list.php:401 #: ../../godmode/groups/modu_group_list.php:85 #: ../../godmode/users/profile_list.php:108 ../../godmode/users/user_list.php:485 #: ../../godmode/agentes/modificar_agente.php:117 @@ -68,21 +68,20 @@ msgstr "Calendriers" #: ../../godmode/massive/massive_add_profiles.php:45 #: ../../godmode/alerts/configure_alert_command.php:189 #: ../../godmode/alerts/alert_actions.php:215 -#: ../../godmode/alerts/alert_commands.php:722 +#: ../../godmode/alerts/alert_commands.php:723 #: ../../godmode/alerts/alert_templates.php:261 #: ../../godmode/alerts/configure_alert_action.php:113 #: ../../godmode/alerts/configure_alert_template.php:412 #: ../../godmode/setup/os.list.php:49 #: ../../godmode/servers/plugin_registration.php:79 ../../godmode/tag/tag.php:188 #: ../../godmode/category/category.php:101 -#: ../../operation/users/user_edit.php:247 +#: ../../operation/users/user_edit.php:254 msgid "metaconsole" msgstr "Métaconsole" #: ../../views/calendar/list.php:60 ../../views/calendar/special_days_edit.php:61 #: ../../views/calendar/edit.php:61 ../../views/calendar/special_days.php:62 #: ../../enterprise/extensions/csv_import_group.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:58 #: ../../enterprise/godmode/modules/local_components.php:259 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:345 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:120 @@ -93,7 +92,7 @@ msgstr "Métaconsole" #: ../../enterprise/godmode/policies/policy_queue.php:213 #: ../../enterprise/godmode/policies/policies.php:267 #: ../../enterprise/godmode/policies/policy_linking.php:112 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:313 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:315 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:86 #: ../../enterprise/godmode/policies/policy_collections.php:45 #: ../../enterprise/godmode/policies/policy_agents.php:321 @@ -107,8 +106,9 @@ msgstr "Métaconsole" #: ../../enterprise/operation/agentes/policy_view.php:53 #: ../../extensions/resource_registration.php:1109 #: ../../godmode/modules/manage_nc_groups.php:288 +#: ../../godmode/modules/manage_inventory_modules.php:58 #: ../../godmode/modules/manage_network_components.php:309 -#: ../../godmode/groups/group_list.php:398 +#: ../../godmode/groups/group_list.php:403 #: ../../godmode/groups/modu_group_list.php:87 #: ../../godmode/users/profile_list.php:110 ../../godmode/users/user_list.php:487 #: ../../godmode/agentes/modificar_agente.php:119 @@ -118,13 +118,13 @@ msgstr "Métaconsole" #: ../../godmode/massive/massive_add_profiles.php:47 #: ../../godmode/alerts/configure_alert_command.php:191 #: ../../godmode/alerts/alert_actions.php:217 -#: ../../godmode/alerts/alert_commands.php:724 +#: ../../godmode/alerts/alert_commands.php:725 #: ../../godmode/alerts/alert_templates.php:263 #: ../../godmode/alerts/configure_alert_action.php:115 #: ../../godmode/alerts/configure_alert_template.php:414 #: ../../godmode/setup/os.list.php:51 ../../godmode/tag/tag.php:190 #: ../../godmode/category/category.php:103 -#: ../../operation/users/user_edit.php:249 +#: ../../operation/users/user_edit.php:256 msgid "any node" msgstr "n'importe quel noeud" @@ -144,14 +144,14 @@ msgstr "" #: ../../enterprise/tools/ipam/ipam_excel.php:136 #: ../../enterprise/tools/ipam/ipam_excel.php:207 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:660 -#: ../../extensions/api_checker.php:161 ../../godmode/modules/module_list.php:61 -#: ../../godmode/groups/group_list.php:840 +#: ../../extensions/api_checker.php:245 ../../godmode/modules/module_list.php:61 +#: ../../godmode/groups/group_list.php:845 #: ../../godmode/groups/modu_group_list.php:251 #: ../../godmode/agentes/fields_manager.php:121 #: ../../godmode/agentes/agent_manager.php:219 #: ../../godmode/agentes/agent_incidents.php:88 #: ../../godmode/agentes/module_manager_editor_common.php:230 -#: ../../godmode/alerts/alert_commands.php:742 ../../godmode/setup/os.list.php:68 +#: ../../godmode/alerts/alert_commands.php:743 ../../godmode/setup/os.list.php:68 #: ../../operation/incidents/list_integriaims_incidents.php:515 msgid "ID" msgstr "Identifiant" @@ -182,15 +182,12 @@ msgstr "Identifiant" #: ../../enterprise/meta/include/functions_wizard_meta.php:1682 #: ../../enterprise/meta/agentsearch.php:335 #: ../../enterprise/godmode/modules/configure_local_component.php:158 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:278 #: ../../enterprise/godmode/modules/local_components.php:624 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:103 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:371 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:751 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:136 #: ../../enterprise/godmode/agentes/collection_manager.php:109 #: ../../enterprise/godmode/agentes/collection_manager.php:206 -#: ../../enterprise/godmode/agentes/inventory_manager.php:221 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:76 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:579 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:130 @@ -200,8 +197,8 @@ msgstr "Identifiant" #: ../../enterprise/godmode/policies/policy_inventory_modules.php:302 #: ../../enterprise/godmode/policies/policy_collections.php:169 #: ../../enterprise/godmode/policies/policy_collections.php:263 -#: ../../enterprise/godmode/policies/policy_agents.php:847 -#: ../../enterprise/godmode/policies/policy_agents.php:1367 +#: ../../enterprise/godmode/policies/policy_agents.php:883 +#: ../../enterprise/godmode/policies/policy_agents.php:1403 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:163 #: ../../enterprise/godmode/services/services.service.php:579 #: ../../enterprise/godmode/setup/setup_skins.php:87 @@ -233,7 +230,7 @@ msgstr "Identifiant" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2947 #: ../../enterprise/include/functions_services.php:1603 #: ../../enterprise/include/functions_ipam.php:1348 -#: ../../enterprise/include/functions_ipam.php:1987 +#: ../../enterprise/include/functions_ipam.php:1995 #: ../../enterprise/operation/agentes/policy_view.php:163 #: ../../enterprise/operation/agentes/policy_view.php:395 #: ../../enterprise/operation/agentes/tag_view.php:677 @@ -253,26 +250,29 @@ msgstr "Identifiant" #: ../../godmode/modules/manage_nc_groups_form.php:68 #: ../../godmode/modules/manage_network_templates_form.php:168 #: ../../godmode/modules/manage_nc_groups.php:241 +#: ../../godmode/modules/manage_inventory_modules.php:278 #: ../../godmode/modules/manage_network_components_form_common.php:46 +#: ../../godmode/modules/manage_inventory_modules_form.php:103 #: ../../godmode/modules/module_list.php:62 #: ../../godmode/modules/manage_network_templates.php:248 #: ../../godmode/groups/configure_group.php:150 -#: ../../godmode/groups/group_list.php:842 +#: ../../godmode/groups/group_list.php:847 #: ../../godmode/groups/configure_modu_group.php:67 #: ../../godmode/groups/modu_group_list.php:252 #: ../../godmode/users/user_list.php:540 +#: ../../godmode/agentes/inventory_manager.php:221 #: ../../godmode/agentes/planned_downtime.editor.php:820 #: ../../godmode/agentes/planned_downtime.editor.php:1206 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:132 #: ../../godmode/agentes/configure_field.php:77 #: ../../godmode/agentes/module_manager_editor_common.php:215 #: ../../godmode/agentes/module_manager_editor_common.php:1226 -#: ../../godmode/agentes/module_manager.php:869 +#: ../../godmode/agentes/module_manager.php:870 #: ../../godmode/netflow/nf_edit.php:159 #: ../../godmode/netflow/nf_edit_form.php:199 #: ../../godmode/alerts/configure_alert_command.php:224 #: ../../godmode/alerts/alert_actions.php:326 -#: ../../godmode/alerts/alert_commands.php:741 +#: ../../godmode/alerts/alert_commands.php:742 #: ../../godmode/alerts/alert_templates.php:384 #: ../../godmode/alerts/configure_alert_action.php:181 #: ../../godmode/alerts/configure_alert_template.php:1052 @@ -299,7 +299,7 @@ msgstr "Identifiant" #: ../../include/functions_reporting_html.php:2551 #: ../../include/functions_reporting_html.php:2910 #: ../../include/functions_reporting_html.php:3613 -#: ../../include/functions_reporting_html.php:6301 +#: ../../include/functions_reporting_html.php:6320 #: ../../include/functions_treeview.php:78 #: ../../include/class/NetworkMap.class.php:3039 #: ../../include/class/NetworkMap.class.php:3080 @@ -313,8 +313,8 @@ msgstr "Identifiant" #: ../../include/class/SatelliteCollection.class.php:128 #: ../../include/functions_filemanager.php:604 #: ../../include/functions_snmp_browser.php:1670 -#: ../../include/functions_events.php:4207 -#: ../../include/functions_events.php:4296 ../../operation/search_users.php:44 +#: ../../include/functions_events.php:4186 +#: ../../include/functions_events.php:4275 ../../operation/search_users.php:44 #: ../../operation/search_helps.php:31 #: ../../operation/agentes/pandora_networkmap.editor.php:291 #: ../../operation/agentes/pandora_networkmap.php:714 @@ -351,12 +351,12 @@ msgstr "Nom" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:97 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:196 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:139 -#: ../../enterprise/godmode/agentes/collections.php:430 +#: ../../enterprise/godmode/agentes/collections.php:444 #: ../../enterprise/godmode/policies/configure_policy.php:105 #: ../../enterprise/godmode/policies/policies.php:312 #: ../../enterprise/godmode/policies/policies.php:412 -#: ../../enterprise/godmode/policies/policy_agents.php:798 -#: ../../enterprise/godmode/policies/policy_agents.php:855 +#: ../../enterprise/godmode/policies/policy_agents.php:834 +#: ../../enterprise/godmode/policies/policy_agents.php:891 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:102 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:139 #: ../../enterprise/godmode/services/services.service.php:602 @@ -372,7 +372,7 @@ msgstr "Nom" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2051 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:110 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:669 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:673 #: ../../enterprise/include/functions_tasklist.php:177 #: ../../enterprise/include/ajax/ipam.ajax.php:487 #: ../../enterprise/include/functions_reporting_csv.php:725 @@ -386,8 +386,8 @@ msgstr "Nom" #: ../../enterprise/include/class/DB2.app.php:469 #: ../../enterprise/include/class/Aws.S3.php:434 #: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Aws.cloud.php:579 -#: ../../enterprise/include/class/Aws.cloud.php:1234 +#: ../../enterprise/include/class/Aws.cloud.php:578 +#: ../../enterprise/include/class/Aws.cloud.php:1233 #: ../../enterprise/include/class/MySQL.app.php:474 #: ../../enterprise/include/class/Google.cloud.php:785 #: ../../enterprise/include/class/Oracle.app.php:476 @@ -402,7 +402,6 @@ msgstr "Nom" #: ../../enterprise/operation/agentes/ver_agente.php:52 #: ../../enterprise/operation/agentes/ver_agente.php:73 #: ../../enterprise/operation/log/log_viewer.php:534 -#: ../../enterprise/operation/inventory/inventory.php:336 #: ../../enterprise/operation/services/services.service.php:121 #: ../../enterprise/operation/services/massive/services.create.php:682 #: ../../enterprise/operation/services/services.list.php:260 @@ -417,7 +416,7 @@ msgstr "Nom" #: ../../godmode/modules/manage_network_components.php:621 #: ../../godmode/modules/manage_network_components.php:755 #: ../../godmode/users/user_list.php:450 -#: ../../godmode/agentes/configurar_agente.php:506 +#: ../../godmode/agentes/configurar_agente.php:519 #: ../../godmode/agentes/modificar_agente.php:289 #: ../../godmode/agentes/modificar_agente.php:651 #: ../../godmode/agentes/planned_downtime.list.php:658 @@ -445,7 +444,7 @@ msgstr "Nom" #: ../../godmode/alerts/alert_actions.php:260 #: ../../godmode/alerts/alert_actions.php:328 #: ../../godmode/alerts/alert_list.list.php:157 -#: ../../godmode/alerts/alert_commands.php:743 +#: ../../godmode/alerts/alert_commands.php:744 #: ../../godmode/alerts/alert_templates.php:385 #: ../../godmode/alerts/configure_alert_action.php:212 #: ../../godmode/alerts/configure_alert_template.php:1074 @@ -475,7 +474,7 @@ msgstr "Nom" #: ../../godmode/reporting/graph_builder.main.php:143 #: ../../godmode/events/event_filter.php:137 #: ../../godmode/events/event_responses.editor.php:105 -#: ../../godmode/events/event_edit_filter.php:316 +#: ../../godmode/events/event_edit_filter.php:326 #: ../../godmode/events/event_responses.list.php:52 #: ../../godmode/events/custom_events.php:100 #: ../../godmode/wizards/HostDevices.class.php:934 @@ -498,16 +497,16 @@ msgstr "Nom" #: ../../include/functions_reporting_html.php:2266 #: ../../include/functions_reporting_html.php:3564 #: ../../include/functions_reporting_html.php:3617 -#: ../../include/functions_reporting_html.php:6389 +#: ../../include/functions_reporting_html.php:6408 #: ../../include/functions_cron.php:505 ../../include/ajax/heatmap.ajax.php:111 #: ../../include/ajax/heatmap.ajax.php:350 #: ../../include/ajax/custom_fields.php:630 #: ../../include/ajax/custom_fields.php:679 -#: ../../include/functions_graph.php:5163 ../../include/functions_gis.php:228 +#: ../../include/functions_graph.php:4951 ../../include/functions_gis.php:228 #: ../../include/functions_profile.php:214 -#: ../../include/functions_visual_map.php:4264 +#: ../../include/functions_visual_map.php:4215 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:551 -#: ../../include/rest-api/models/VisualConsole/Item.php:2139 +#: ../../include/rest-api/models/VisualConsole/Item.php:2140 #: ../../include/functions_html.php:1531 #: ../../include/functions_massive_operations.php:126 #: ../../include/class/NetworkMap.class.php:2974 @@ -525,9 +524,9 @@ msgstr "Nom" #: ../../include/lib/ClusterViewer/ClusterWizard.php:823 #: ../../include/functions_snmp_browser.php:1673 #: ../../include/functions_events.php:203 ../../include/functions_events.php:256 -#: ../../include/functions_events.php:4859 ../../operation/heatmap.php:119 +#: ../../include/functions_events.php:4838 ../../operation/heatmap.php:119 #: ../../operation/heatmap.php:121 ../../operation/search_agents.php:46 -#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:839 +#: ../../operation/search_agents.php:52 ../../operation/users/user_edit.php:913 #: ../../operation/visual_console/view.php:353 #: ../../operation/agentes/estado_agente.php:254 #: ../../operation/agentes/estado_agente.php:754 @@ -539,7 +538,7 @@ msgstr "Nom" #: ../../operation/agentes/group_view.php:222 #: ../../operation/agentes/pandora_networkmap.view.php:140 #: ../../operation/agentes/pandora_networkmap.view.php:174 -#: ../../operation/agentes/ver_agente.php:1030 +#: ../../operation/agentes/ver_agente.php:1036 #: ../../operation/agentes/estado_generalagente.php:403 #: ../../operation/agentes/alerts_status.functions.php:91 #: ../../operation/netflow/nf_live_view.php:380 @@ -548,6 +547,7 @@ msgstr "Nom" #: ../../operation/incidents/configure_integriaims_incident.php:266 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:324 #: ../../operation/incidents/list_integriaims_incidents.php:331 +#: ../../operation/inventory/inventory.php:339 #: ../../operation/events/events.php:1658 ../../operation/search_maps.php:29 #: ../../general/ui/agents_list.php:76 msgid "Group" @@ -556,7 +556,7 @@ msgstr "Groupe" #: ../../views/calendar/list.php:95 #: ../../views/calendar/special_days_edit.php:138 #: ../../views/calendar/edit.php:109 ../../views/cluster/list.php:59 -#: ../../views/cluster/view.php:284 +#: ../../views/cluster/view.php:285 #: ../../enterprise/views/ncm/devices/list.php:115 #: ../../enterprise/views/ipam/sites/list.php:47 #: ../../enterprise/views/ipam/sites/edit.php:51 @@ -575,21 +575,18 @@ msgstr "Groupe" #: ../../enterprise/meta/agentsearch.php:336 #: ../../enterprise/godmode/modules/configure_local_component.php:489 #: ../../enterprise/godmode/modules/configure_local_component.php:648 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:279 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:105 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:374 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:137 #: ../../enterprise/godmode/agentes/collection_manager.php:111 #: ../../enterprise/godmode/agentes/collection_manager.php:208 -#: ../../enterprise/godmode/agentes/inventory_manager.php:222 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:430 #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:162 -#: ../../enterprise/godmode/agentes/collections.php:431 +#: ../../enterprise/godmode/agentes/collections.php:445 #: ../../enterprise/godmode/policies/configure_policy.php:121 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:303 #: ../../enterprise/godmode/policies/policy_collections.php:171 #: ../../enterprise/godmode/policies/policy_collections.php:265 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:94 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:97 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:386 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:297 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:679 @@ -609,7 +606,7 @@ msgstr "Groupe" #: ../../enterprise/include/functions_cron.php:282 #: ../../enterprise/include/ajax/ipam.ajax.php:371 #: ../../enterprise/include/ajax/ipam.ajax.php:615 -#: ../../enterprise/include/functions_reporting_pdf.php:1842 +#: ../../enterprise/include/functions_reporting_pdf.php:1843 #: ../../enterprise/include/functions_reporting_csv.php:489 #: ../../enterprise/include/functions_reporting_csv.php:492 #: ../../enterprise/include/functions_reporting_csv.php:712 @@ -696,7 +693,7 @@ msgstr "Groupe" #: ../../enterprise/include/class/ManageBackups.class.php:162 #: ../../enterprise/include/functions_services.php:1604 #: ../../enterprise/include/functions_ipam.php:1374 -#: ../../enterprise/include/functions_ipam.php:1988 +#: ../../enterprise/include/functions_ipam.php:1996 #: ../../enterprise/operation/agentes/policy_view.php:68 #: ../../enterprise/operation/agentes/tag_view.php:600 #: ../../enterprise/operation/agentes/ver_agente.php:60 @@ -719,21 +716,24 @@ msgstr "Groupe" #: ../../extensions/files_repo/files_repo_list.php:56 #: ../../godmode/modules/manage_network_templates_form.php:172 #: ../../godmode/modules/manage_network_templates_form.php:234 +#: ../../godmode/modules/manage_inventory_modules.php:279 #: ../../godmode/modules/manage_network_components_form_common.php:346 #: ../../godmode/modules/manage_network_components.php:754 #: ../../godmode/modules/manage_network_components_form_wizard.php:457 +#: ../../godmode/modules/manage_inventory_modules_form.php:105 #: ../../godmode/modules/module_list.php:63 #: ../../godmode/modules/manage_network_templates.php:249 #: ../../godmode/groups/configure_group.php:242 -#: ../../godmode/groups/group_list.php:850 ../../godmode/users/user_list.php:545 -#: ../../godmode/agentes/agent_template.php:237 +#: ../../godmode/groups/group_list.php:855 ../../godmode/users/user_list.php:545 +#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/inventory_manager.php:222 #: ../../godmode/agentes/modificar_agente.php:652 #: ../../godmode/agentes/planned_downtime.list.php:657 #: ../../godmode/agentes/planned_downtime.editor.php:846 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:164 #: ../../godmode/agentes/agent_manager.php:479 #: ../../godmode/agentes/module_manager_editor_common.php:1095 -#: ../../godmode/agentes/module_manager.php:904 +#: ../../godmode/agentes/module_manager.php:905 #: ../../godmode/netflow/nf_item_list.php:175 #: ../../godmode/snmpconsole/snmp_alert.php:766 #: ../../godmode/snmpconsole/snmp_alert.php:1269 @@ -743,7 +743,7 @@ msgstr "Groupe" #: ../../godmode/massive/massive_edit_agents.php:774 #: ../../godmode/massive/massive_edit_modules.php:743 #: ../../godmode/alerts/configure_alert_command.php:283 -#: ../../godmode/alerts/alert_commands.php:744 +#: ../../godmode/alerts/alert_commands.php:745 #: ../../godmode/alerts/alert_templates.php:46 #: ../../godmode/alerts/configure_alert_template.php:1106 #: ../../godmode/setup/os.builder.php:37 ../../godmode/setup/os.list.php:70 @@ -762,18 +762,18 @@ msgstr "Groupe" #: ../../godmode/servers/plugin.php:358 ../../godmode/servers/plugin.php:478 #: ../../godmode/tag/tag.php:228 ../../godmode/tag/tag.php:278 #: ../../godmode/tag/edit_tag.php:219 ../../mobile/operation/tactical.php:352 -#: ../../include/functions_reporting_html.php:155 +#: ../../include/functions_reporting_html.php:156 #: ../../include/functions_reporting_html.php:1573 #: ../../include/functions_reporting_html.php:1716 #: ../../include/functions_reporting_html.php:3567 #: ../../include/functions_reporting_html.php:3618 -#: ../../include/functions_reporting_html.php:5385 -#: ../../include/functions_reporting_html.php:6302 +#: ../../include/functions_reporting_html.php:5404 +#: ../../include/functions_reporting_html.php:6321 #: ../../include/ajax/events_extended.php:91 #: ../../include/ajax/heatmap.ajax.php:238 #: ../../include/ajax/heatmap.ajax.php:277 #: ../../include/ajax/heatmap.ajax.php:337 ../../include/ajax/module.php:992 -#: ../../include/ajax/events.php:2521 ../../include/functions_treeview.php:127 +#: ../../include/ajax/events.php:2532 ../../include/functions_treeview.php:127 #: ../../include/functions_treeview.php:652 #: ../../include/class/ConfigPEN.class.php:448 #: ../../include/class/ConfigPEN.class.php:599 @@ -806,7 +806,7 @@ msgstr "Groupe" #: ../../operation/search_reports.php:43 ../../operation/search_reports.php:59 #: ../../operation/search_graphs.php:31 #: ../../operation/reporting/custom_reporting.php:35 -#: ../../operation/reporting/graph_viewer.php:525 +#: ../../operation/reporting/graph_viewer.php:522 #: ../../operation/search_policies.php:36 msgid "Description" msgstr "Description" @@ -829,13 +829,13 @@ msgstr "Description" #: ../../enterprise/include/class/LogSource.class.php:630 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2343 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2952 -#: ../../godmode/menu.php:555 +#: ../../godmode/menu.php:558 #: ../../godmode/reporting/reporting_builder.list_items.php:427 -#: ../../include/ajax/events.php:2212 ../../include/class/ConfigPEN.class.php:601 +#: ../../include/ajax/events.php:2223 ../../include/class/ConfigPEN.class.php:601 #: ../../include/class/CredentialStore.class.php:845 #: ../../include/class/ExternalTools.class.php:383 #: ../../include/functions_events.php:310 -#: ../../operation/agentes/pandora_networkmap.view.php:2349 +#: ../../operation/agentes/pandora_networkmap.view.php:2353 msgid "Options" msgstr "Options" @@ -855,10 +855,10 @@ msgstr "Options" #: ../../enterprise/include/class/LogSource.class.php:656 #: ../../enterprise/include/lib/Metaconsole/Node.php:571 #: ../../enterprise/include/functions_events.php:50 -#: ../../enterprise/include/functions_ipam.php:1663 +#: ../../enterprise/include/functions_ipam.php:1671 #: ../../godmode/update_manager/update_manager.history.php:67 #: ../../godmode/snmpconsole/snmp_alert.php:1161 -#: ../../godmode/events/event_edit_filter.php:378 +#: ../../godmode/events/event_edit_filter.php:388 #: ../../mobile/operation/agents.php:253 ../../mobile/operation/modules.php:318 #: ../../mobile/operation/alerts.php:241 ../../mobile/operation/events.php:992 #: ../../include/ajax/module.php:299 ../../include/class/ConfigPEN.class.php:627 @@ -903,9 +903,7 @@ msgstr "Recherche libre" #: ../../enterprise/meta/include/functions_autoprovision.php:588 #: ../../enterprise/meta/include/functions_autoprovision.php:789 #: ../../enterprise/godmode/modules/configure_local_component.php:692 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:349 #: ../../enterprise/godmode/modules/local_components.php:719 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:171 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:791 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:840 #: ../../enterprise/godmode/agentes/collections.agents.php:38 @@ -916,12 +914,12 @@ msgstr "Recherche libre" #: ../../enterprise/godmode/agentes/collections.data.php:240 #: ../../enterprise/godmode/agentes/collections.data.php:296 #: ../../enterprise/godmode/agentes/collections.editor.php:169 -#: ../../enterprise/godmode/agentes/collections.php:515 +#: ../../enterprise/godmode/agentes/collections.php:531 #: ../../enterprise/godmode/policies/configure_policy.php:144 #: ../../enterprise/godmode/policies/policy_modules.php:433 #: ../../enterprise/godmode/policies/policies.php:649 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:41 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:105 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:108 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:428 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:433 #: ../../enterprise/godmode/services/services.service.php:973 @@ -940,19 +938,21 @@ msgstr "Recherche libre" #: ../../godmode/modules/manage_nc_groups_form.php:93 #: ../../godmode/modules/manage_network_templates_form.php:180 #: ../../godmode/modules/manage_nc_groups.php:318 +#: ../../godmode/modules/manage_inventory_modules.php:349 #: ../../godmode/modules/manage_network_components_form.php:379 #: ../../godmode/modules/manage_network_components.php:937 +#: ../../godmode/modules/manage_inventory_modules_form.php:171 #: ../../godmode/modules/manage_network_templates.php:311 #: ../../godmode/groups/configure_group.php:279 #: ../../godmode/groups/configure_modu_group.php:86 #: ../../godmode/users/profile_list.php:463 -#: ../../godmode/users/configure_user.php:1660 +#: ../../godmode/users/configure_user.php:1723 #: ../../godmode/agentes/module_manager_editor.php:790 #: ../../godmode/agentes/planned_downtime.list.php:628 #: ../../godmode/agentes/planned_downtime.list.php:920 #: ../../godmode/agentes/agent_manager.php:1010 #: ../../godmode/agentes/configure_field.php:155 -#: ../../godmode/agentes/module_manager.php:220 +#: ../../godmode/agentes/module_manager.php:219 #: ../../godmode/netflow/nf_edit_form.php:272 #: ../../godmode/snmpconsole/snmp_alert.php:1142 #: ../../godmode/snmpconsole/snmp_alert.php:1514 @@ -961,10 +961,10 @@ msgstr "Recherche libre" #: ../../godmode/alerts/configure_alert_command.php:387 #: ../../godmode/alerts/alert_actions.php:471 #: ../../godmode/alerts/alert_list.list.php:975 -#: ../../godmode/alerts/alert_commands.php:831 +#: ../../godmode/alerts/alert_commands.php:832 #: ../../godmode/alerts/alert_templates.php:482 #: ../../godmode/alerts/configure_alert_action.php:402 -#: ../../godmode/alerts/alert_list.php:503 ../../godmode/setup/news.php:231 +#: ../../godmode/alerts/alert_list.php:521 ../../godmode/setup/news.php:231 #: ../../godmode/setup/gis.php:98 ../../godmode/setup/os.php:95 #: ../../godmode/setup/os.php:177 ../../godmode/setup/links.php:127 #: ../../godmode/reporting/create_container.php:333 @@ -972,7 +972,7 @@ msgstr "Recherche libre" #: ../../godmode/reporting/reporting_builder.item_editor.php:2285 #: ../../godmode/reporting/graph_builder.main.php:294 #: ../../godmode/events/event_responses.editor.php:219 -#: ../../godmode/events/event_edit_filter.php:722 +#: ../../godmode/events/event_edit_filter.php:781 #: ../../godmode/servers/plugin.php:575 ../../godmode/tag/edit_tag.php:281 #: ../../godmode/category/edit_category.php:205 #: ../../include/functions_visual_map_editor.php:884 @@ -1006,14 +1006,14 @@ msgstr "Créer" #: ../../enterprise/operation/agentes/tag_view.php:608 #: ../../enterprise/operation/services/massive/services.create.php:901 #: ../../godmode/groups/configure_group.php:230 -#: ../../godmode/groups/group_list.php:846 +#: ../../godmode/groups/group_list.php:851 #: ../../godmode/agentes/configurar_agente.php:433 #: ../../godmode/agentes/modificar_agente.php:820 -#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:259 +#: ../../godmode/snmpconsole/snmp_alert.php:114 ../../godmode/menu.php:262 #: ../../godmode/massive/massive_copy_modules.php:216 #: ../../godmode/alerts/configure_alert_command.php:60 #: ../../godmode/alerts/alert_actions.php:74 -#: ../../godmode/alerts/alert_commands.php:580 +#: ../../godmode/alerts/alert_commands.php:581 #: ../../godmode/alerts/alert_templates.php:131 #: ../../godmode/alerts/alert_templates.php:183 #: ../../godmode/alerts/alert_templates.php:206 @@ -1023,13 +1023,13 @@ msgstr "Créer" #: ../../godmode/alerts/configure_alert_template.php:99 #: ../../godmode/alerts/configure_alert_template.php:123 #: ../../godmode/alerts/configure_alert_template.php:155 -#: ../../godmode/alerts/alert_list.php:501 -#: ../../godmode/alerts/alert_list.php:503 +#: ../../godmode/alerts/alert_list.php:519 +#: ../../godmode/alerts/alert_list.php:521 #: ../../mobile/include/functions_web.php:26 ../../mobile/operation/agents.php:98 #: ../../mobile/operation/agents.php:407 ../../mobile/operation/home.php:74 #: ../../mobile/operation/agent.php:355 ../../mobile/operation/alerts.php:194 #: ../../include/functions_reporting_html.php:2504 -#: ../../include/functions_reporting_html.php:5565 +#: ../../include/functions_reporting_html.php:5584 #: ../../include/functions_treeview.php:405 #: ../../include/functions_reports.php:843 #: ../../include/functions_reports.php:847 @@ -1038,7 +1038,7 @@ msgstr "Créer" #: ../../include/class/AgentsAlerts.class.php:542 #: ../../operation/search_agents.php:57 ../../operation/search_results.php:107 #: ../../operation/agentes/estado_agente.php:766 -#: ../../operation/agentes/ver_agente.php:1439 +#: ../../operation/agentes/ver_agente.php:1445 msgid "Alerts" msgstr "Alertes" @@ -1049,7 +1049,6 @@ msgstr "Configurer jour spécial" #: ../../views/calendar/special_days_edit.php:80 #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_inventory.php:882 #: ../../enterprise/include/functions_reporting_pdf.php:718 #: ../../enterprise/include/functions_reporting_csv.php:826 #: ../../enterprise/include/functions_reporting_csv.php:882 @@ -1060,8 +1059,6 @@ msgstr "Configurer jour spécial" #: ../../enterprise/include/functions_reporting.php:2182 #: ../../enterprise/include/functions_reporting.php:2217 #: ../../enterprise/include/functions_reporting.php:2235 -#: ../../enterprise/operation/agentes/agent_inventory.php:127 -#: ../../enterprise/operation/inventory/inventory.php:432 #: ../../extensions/insert_data.php:196 #: ../../godmode/reporting/reporting_builder.item_editor.php:2172 #: ../../mobile/operation/tactical.php:350 @@ -1074,13 +1071,16 @@ msgstr "Configurer jour spécial" #: ../../include/functions_reporting_html.php:2789 #: ../../include/functions_reporting_html.php:2838 #: ../../include/functions_reporting_html.php:2911 -#: ../../include/functions_reporting_html.php:5907 -#: ../../include/functions.php:3073 ../../include/class/AuditLog.class.php:109 -#: ../../include/functions_reporting.php:4361 -#: ../../include/functions_reporting.php:4402 +#: ../../include/functions_reporting_html.php:5926 +#: ../../include/functions.php:3099 ../../include/functions_inventory.php:882 +#: ../../include/class/AuditLog.class.php:109 +#: ../../include/functions_reporting.php:4624 +#: ../../include/functions_reporting.php:4665 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:623 +#: ../../operation/agentes/agent_inventory.php:127 #: ../../operation/incidents/list_integriaims_incidents.php:371 -#: ../../operation/reporting/graph_viewer.php:348 ../../general/logon_ok.php:251 +#: ../../operation/inventory/inventory.php:435 +#: ../../operation/reporting/graph_viewer.php:320 ../../general/logon_ok.php:251 msgid "Date" msgstr "Date" @@ -1230,7 +1230,7 @@ msgstr "Même jour de la semaine" #: ../../enterprise/meta/advanced/collections.editor.php:223 #: ../../enterprise/meta/advanced/cron_main.php:469 #: ../../enterprise/meta/advanced/metasetup.setup.php:401 -#: ../../enterprise/meta/advanced/metasetup.performance.php:182 +#: ../../enterprise/meta/advanced/metasetup.performance.php:159 #: ../../enterprise/meta/event/custom_events.php:213 #: ../../enterprise/meta/include/functions_autoprovision.php:590 #: ../../enterprise/meta/include/functions_autoprovision.php:791 @@ -1238,16 +1238,12 @@ msgstr "Même jour de la semaine" #: ../../enterprise/extensions/vmware/vmware_view.php:1257 #: ../../enterprise/extensions/vmware/vmware_view.php:1762 #: ../../enterprise/godmode/modules/configure_local_component.php:689 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:319 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:169 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:475 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:793 #: ../../enterprise/godmode/agentes/collection_manager.php:153 #: ../../enterprise/godmode/agentes/collection_manager.php:154 #: ../../enterprise/godmode/agentes/collection_manager.php:268 #: ../../enterprise/godmode/agentes/collection_manager.php:269 -#: ../../enterprise/godmode/agentes/inventory_manager.php:183 -#: ../../enterprise/godmode/agentes/inventory_manager.php:254 #: ../../enterprise/godmode/agentes/collections.data.php:107 #: ../../enterprise/godmode/agentes/collections.data.php:264 #: ../../enterprise/godmode/agentes/collections.data.php:342 @@ -1264,12 +1260,12 @@ msgstr "Même jour de la semaine" #: ../../enterprise/godmode/policies/policy_plugins.php:228 #: ../../enterprise/godmode/policies/configure_policy.php:141 #: ../../enterprise/godmode/policies/policy_modules.php:429 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:373 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:375 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:261 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:338 #: ../../enterprise/godmode/policies/policy_collections.php:222 #: ../../enterprise/godmode/policies/policy_collections.php:294 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:102 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:105 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:408 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:343 #: ../../enterprise/godmode/massive/massive_tags_edit_policy.php:190 @@ -1277,8 +1273,8 @@ msgstr "Même jour de la semaine" #: ../../enterprise/godmode/alerts/alert_inventory_list.php:337 #: ../../enterprise/godmode/services/services.service.php:980 #: ../../enterprise/godmode/setup/setup_history.php:669 -#: ../../enterprise/godmode/setup/setup.php:354 -#: ../../enterprise/godmode/setup/setup.php:555 +#: ../../enterprise/godmode/setup/setup.php:270 +#: ../../enterprise/godmode/setup/setup.php:478 #: ../../enterprise/godmode/setup/setup_module_library.php:62 #: ../../enterprise/godmode/setup/setup_metaconsole.php:245 #: ../../enterprise/godmode/setup/setup_log_collector.php:74 @@ -1294,8 +1290,8 @@ msgstr "Même jour de la semaine" #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:177 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:590 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:251 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1359 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1425 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1385 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1451 #: ../../enterprise/godmode/servers/manage_credential_boxes.php:90 #: ../../enterprise/godmode/servers/manage_export_form.php:136 #: ../../enterprise/include/ajax/log_viewer.ajax.php:99 @@ -1320,15 +1316,19 @@ msgstr "Même jour de la semaine" #: ../../extensions/files_repo/files_repo_form.php:99 #: ../../godmode/modules/manage_nc_groups_form.php:90 #: ../../godmode/modules/manage_network_templates_form.php:178 +#: ../../godmode/modules/manage_inventory_modules.php:319 #: ../../godmode/modules/manage_network_components_form.php:375 +#: ../../godmode/modules/manage_inventory_modules_form.php:169 #: ../../godmode/groups/configure_group.php:276 #: ../../godmode/groups/configure_modu_group.php:83 #: ../../godmode/update_manager/update_manager.setup.php:382 -#: ../../godmode/users/configure_profile.php:408 -#: ../../godmode/users/configure_user.php:1667 -#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/users/configure_profile.php:409 +#: ../../godmode/users/configure_user.php:1730 +#: ../../godmode/agentes/agent_template.php:261 #: ../../godmode/agentes/status_monitor_custom_fields.php:206 #: ../../godmode/agentes/module_manager_editor.php:772 +#: ../../godmode/agentes/inventory_manager.php:183 +#: ../../godmode/agentes/inventory_manager.php:254 #: ../../godmode/agentes/agent_conf_gis.php:135 #: ../../godmode/agentes/planned_downtime.list.php:808 #: ../../godmode/agentes/planned_downtime.list.php:853 @@ -1354,15 +1354,15 @@ msgstr "Même jour de la semaine" #: ../../godmode/setup/snmp_wizard.php:100 #: ../../godmode/setup/setup_netflow.php:81 #: ../../godmode/setup/setup_visuals.php:1604 -#: ../../godmode/setup/setup_general.php:638 -#: ../../godmode/setup/performance.php:758 +#: ../../godmode/setup/setup_general.php:719 +#: ../../godmode/setup/performance.php:741 #: ../../godmode/reporting/visual_console_builder.data.php:232 #: ../../godmode/reporting/create_container.php:330 #: ../../godmode/reporting/visual_console_builder.elements.php:761 #: ../../godmode/reporting/reporting_builder.main.php:56 #: ../../godmode/reporting/graph_builder.main.php:294 #: ../../godmode/events/event_responses.editor.php:227 -#: ../../godmode/events/event_edit_filter.php:719 +#: ../../godmode/events/event_edit_filter.php:778 #: ../../godmode/events/custom_events.php:188 #: ../../godmode/servers/modificar_server.php:100 #: ../../godmode/servers/plugin.php:198 ../../godmode/servers/plugin.php:577 @@ -1376,9 +1376,9 @@ msgstr "Même jour de la semaine" #: ../../include/class/CredentialStore.class.php:1673 #: ../../include/class/ModuleTemplates.class.php:1013 #: ../../include/class/ExternalTools.class.php:392 -#: ../../include/functions_events.php:3392 -#: ../../include/functions_events.php:3471 -#: ../../operation/users/user_edit.php:802 +#: ../../include/functions_events.php:3371 +#: ../../include/functions_events.php:3450 +#: ../../operation/users/user_edit.php:876 #: ../../operation/agentes/datos_agente.php:218 #: ../../operation/network/network_report.php:132 #: ../../operation/incidents/configure_integriaims_incident.php:378 @@ -1396,6 +1396,7 @@ msgstr "Mise à jour" #: ../../enterprise/godmode/services/services.service.php:1038 #: ../../enterprise/godmode/services/services.elements.php:887 #: ../../enterprise/godmode/services/services.elements.php:898 +#: ../../enterprise/godmode/setup/setup.php:543 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:281 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:355 #: ../../enterprise/include/functions_HA_cluster.php:492 @@ -1441,9 +1442,9 @@ msgstr "Mise à jour" #: ../../include/class/AgentWizard.class.php:6216 #: ../../operation/agentes/pandora_networkmap.editor.php:634 #: ../../operation/snmpconsole/snmp_browser.php:174 -#: ../../operation/snmpconsole/snmp_browser.php:551 -#: ../../operation/snmpconsole/snmp_browser.php:631 -#: ../../operation/snmpconsole/snmp_browser.php:646 ../../general/header.php:827 +#: ../../operation/snmpconsole/snmp_browser.php:549 +#: ../../operation/snmpconsole/snmp_browser.php:629 +#: ../../operation/snmpconsole/snmp_browser.php:644 ../../general/header.php:827 msgid "Cancel" msgstr "Annuler" @@ -1503,15 +1504,15 @@ msgstr "Afficher plage : " #: ../../enterprise/meta/monitoring/wizard/wizard.php:141 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:487 #: ../../enterprise/godmode/policies/policy_alerts.php:406 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:445 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:447 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:122 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:136 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:105 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:129 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:135 #: ../../enterprise/operation/agentes/policy_view.php:332 -#: ../../godmode/users/configure_user.php:1086 -#: ../../godmode/users/configure_user.php:1289 +#: ../../godmode/users/configure_user.php:1145 +#: ../../godmode/users/configure_user.php:1348 #: ../../godmode/agentes/module_manager_editor_common.php:650 #: ../../godmode/massive/massive_edit_users.php:243 #: ../../godmode/massive/massive_edit_users.php:274 @@ -1524,14 +1525,14 @@ msgstr "Afficher plage : " #: ../../godmode/setup/setup_visuals.php:439 #: ../../godmode/setup/setup_visuals.php:458 #: ../../godmode/setup/setup_visuals.php:1204 -#: ../../godmode/events/event_edit_filter.php:425 +#: ../../godmode/events/event_edit_filter.php:435 #: ../../include/functions_ui.php:1240 #: ../../include/class/AgentsAlerts.class.php:928 #: ../../include/class/SnmpConsole.class.php:362 -#: ../../operation/users/user_edit.php:320 -#: ../../operation/users/user_edit.php:323 -#: ../../operation/users/user_edit.php:334 -#: ../../operation/users/user_edit.php:359 +#: ../../operation/users/user_edit.php:394 +#: ../../operation/users/user_edit.php:397 +#: ../../operation/users/user_edit.php:408 +#: ../../operation/users/user_edit.php:433 #: ../../operation/gis_maps/gis_map.php:106 msgid "Default" msgstr "Par défaut" @@ -1539,63 +1540,63 @@ msgstr "Par défaut" #: ../../views/calendar/special_days.php:224 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:431 #: ../../godmode/agentes/planned_downtime.editor.php:944 -#: ../../include/functions.php:1121 +#: ../../include/functions.php:1147 #: ../../include/class/CalendarManager.class.php:1035 -#: ../../include/functions_reporting.php:14437 +#: ../../include/functions_reporting.php:14723 msgid "Sun" msgstr "Dimanche" #: ../../views/calendar/special_days.php:225 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:425 #: ../../godmode/agentes/planned_downtime.editor.php:938 -#: ../../include/functions.php:1097 +#: ../../include/functions.php:1123 #: ../../include/class/CalendarManager.class.php:1029 -#: ../../include/functions_reporting.php:14407 +#: ../../include/functions_reporting.php:14693 msgid "Mon" msgstr "Lundi" #: ../../views/calendar/special_days.php:226 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:426 #: ../../godmode/agentes/planned_downtime.editor.php:939 -#: ../../include/functions.php:1101 +#: ../../include/functions.php:1127 #: ../../include/class/CalendarManager.class.php:1030 -#: ../../include/functions_reporting.php:14412 +#: ../../include/functions_reporting.php:14698 msgid "Tue" msgstr "Mardi" #: ../../views/calendar/special_days.php:227 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:427 #: ../../godmode/agentes/planned_downtime.editor.php:940 -#: ../../include/functions.php:1105 +#: ../../include/functions.php:1131 #: ../../include/class/CalendarManager.class.php:1031 -#: ../../include/functions_reporting.php:14417 +#: ../../include/functions_reporting.php:14703 msgid "Wed" msgstr "Mercredi" #: ../../views/calendar/special_days.php:228 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:428 #: ../../godmode/agentes/planned_downtime.editor.php:941 -#: ../../include/functions.php:1109 +#: ../../include/functions.php:1135 #: ../../include/class/CalendarManager.class.php:1032 -#: ../../include/functions_reporting.php:14422 +#: ../../include/functions_reporting.php:14708 msgid "Thu" msgstr "Jeudi" #: ../../views/calendar/special_days.php:229 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:429 #: ../../godmode/agentes/planned_downtime.editor.php:942 -#: ../../include/functions.php:1113 +#: ../../include/functions.php:1139 #: ../../include/class/CalendarManager.class.php:1033 -#: ../../include/functions_reporting.php:14427 +#: ../../include/functions_reporting.php:14713 msgid "Fri" msgstr "Vendredi" #: ../../views/calendar/special_days.php:230 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:430 #: ../../godmode/agentes/planned_downtime.editor.php:943 -#: ../../include/functions.php:1117 +#: ../../include/functions.php:1143 #: ../../include/class/CalendarManager.class.php:1034 -#: ../../include/functions_reporting.php:14432 +#: ../../include/functions_reporting.php:14718 msgid "Sat" msgstr "Samedi" @@ -1726,8 +1727,8 @@ msgstr "Afficher les modèles" #: ../../enterprise/tools/ipam/ipam_ajax.php:122 #: ../../enterprise/tools/ipam/ipam_ajax.php:527 #: ../../extensions/files_repo/files_repo_list.php:138 -#: ../../godmode/groups/group_list.php:917 -#: ../../godmode/groups/group_list.php:918 +#: ../../godmode/groups/group_list.php:922 +#: ../../godmode/groups/group_list.php:923 #: ../../godmode/users/profile_list.php:434 ../../godmode/users/user_list.php:856 #: ../../godmode/agentes/modificar_agente.php:801 #: ../../godmode/agentes/modificar_agente.php:806 @@ -1744,7 +1745,7 @@ msgstr "Afficher les modèles" #: ../../include/ajax/module.php:1123 #: ../../include/class/NetworkMap.class.php:3146 #: ../../include/class/CalendarManager.class.php:703 -#: ../../include/lib/ClusterViewer/ClusterManager.php:621 +#: ../../include/lib/ClusterViewer/ClusterManager.php:618 #: ../../operation/visual_console/view.php:447 #: ../../operation/agentes/estado_agente.php:874 #: ../../operation/agentes/estado_agente.php:876 @@ -1763,9 +1764,7 @@ msgstr "Modifier" #: ../../enterprise/meta/advanced/policymanager.queue.php:349 #: ../../enterprise/meta/monitoring/custom_fields_view.php:1155 #: ../../enterprise/meta/monitoring/wizard/wizard.php:143 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:322 #: ../../enterprise/godmode/modules/local_components.php:697 -#: ../../enterprise/godmode/agentes/inventory_manager.php:249 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:93 #: ../../enterprise/godmode/policies/policy_alerts.php:518 @@ -1778,15 +1777,15 @@ msgstr "Modifier" #: ../../enterprise/godmode/policies/policies.php:564 #: ../../enterprise/godmode/policies/policies.php:585 #: ../../enterprise/godmode/policies/policies.php:620 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:522 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:524 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:328 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:333 #: ../../enterprise/godmode/policies/policy_agents.php:401 -#: ../../enterprise/godmode/policies/policy_agents.php:724 -#: ../../enterprise/godmode/policies/policy_agents.php:1040 -#: ../../enterprise/godmode/policies/policy_agents.php:1155 -#: ../../enterprise/godmode/policies/policy_agents.php:1304 -#: ../../enterprise/godmode/policies/policy_agents.php:1519 +#: ../../enterprise/godmode/policies/policy_agents.php:760 +#: ../../enterprise/godmode/policies/policy_agents.php:1076 +#: ../../enterprise/godmode/policies/policy_agents.php:1191 +#: ../../enterprise/godmode/policies/policy_agents.php:1340 +#: ../../enterprise/godmode/policies/policy_agents.php:1555 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:412 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:415 #: ../../enterprise/godmode/setup/setup_skins.php:147 @@ -1799,7 +1798,7 @@ msgstr "Modifier" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:214 #: ../../enterprise/godmode/reporting/mysql_builder.php:105 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:287 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1351 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 #: ../../enterprise/include/functions_tasklist.php:638 #: ../../enterprise/include/functions_tasklist.php:673 #: ../../enterprise/include/ajax/ipam.ajax.php:755 @@ -1826,30 +1825,32 @@ msgstr "Modifier" #: ../../update_manager_client/views/online.php:164 #: ../../extensions/files_repo/files_repo_list.php:146 #: ../../godmode/modules/manage_nc_groups.php:275 +#: ../../godmode/modules/manage_inventory_modules.php:322 #: ../../godmode/modules/manage_network_components.php:867 #: ../../godmode/modules/manage_network_templates.php:274 #: ../../godmode/modules/manage_network_templates.php:289 -#: ../../godmode/groups/group_list.php:926 +#: ../../godmode/groups/group_list.php:931 #: ../../godmode/groups/modu_group_list.php:273 #: ../../godmode/groups/modu_group_list.php:276 #: ../../godmode/users/profile_list.php:439 -#: ../../godmode/users/configure_user.php:1875 -#: ../../godmode/users/configure_user.php:2172 -#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/users/configure_user.php:1940 +#: ../../godmode/users/configure_user.php:2237 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/inventory_manager.php:249 #: ../../godmode/agentes/modificar_agente.php:924 #: ../../godmode/agentes/planned_downtime.editor.php:1301 #: ../../godmode/agentes/fields_manager.php:158 #: ../../godmode/agentes/agent_manager.php:237 #: ../../godmode/agentes/module_manager_editor_common.php:233 -#: ../../godmode/agentes/module_manager.php:1221 -#: ../../godmode/agentes/module_manager.php:1235 -#: ../../godmode/agentes/module_manager.php:1260 -#: ../../godmode/agentes/module_manager.php:1283 -#: ../../godmode/agentes/module_manager.php:1308 +#: ../../godmode/agentes/module_manager.php:1226 +#: ../../godmode/agentes/module_manager.php:1240 +#: ../../godmode/agentes/module_manager.php:1265 +#: ../../godmode/agentes/module_manager.php:1288 +#: ../../godmode/agentes/module_manager.php:1313 #: ../../godmode/netflow/nf_item_list.php:262 #: ../../godmode/netflow/nf_edit.php:195 #: ../../godmode/snmpconsole/snmp_alert.php:1308 -#: ../../godmode/snmpconsole/snmp_alert.php:1641 +#: ../../godmode/snmpconsole/snmp_alert.php:1646 #: ../../godmode/snmpconsole/snmp_filters.php:301 #: ../../godmode/snmpconsole/snmp_filters.php:312 #: ../../godmode/massive/massive_operations.php:374 @@ -1858,8 +1859,8 @@ msgstr "Modifier" #: ../../godmode/massive/massive_enable_disable_alerts.php:227 #: ../../godmode/alerts/alert_actions.php:424 #: ../../godmode/alerts/alert_list.list.php:1130 -#: ../../godmode/alerts/alert_commands.php:803 -#: ../../godmode/alerts/alert_commands.php:806 +#: ../../godmode/alerts/alert_commands.php:804 +#: ../../godmode/alerts/alert_commands.php:807 #: ../../godmode/alerts/alert_templates.php:437 ../../godmode/setup/news.php:290 #: ../../godmode/setup/links.php:160 #: ../../godmode/reporting/create_container.php:682 @@ -1878,7 +1879,7 @@ msgstr "Modifier" #: ../../godmode/servers/plugin.php:864 ../../godmode/tag/tag.php:395 #: ../../godmode/category/category.php:192 #: ../../godmode/category/category.php:211 -#: ../../include/functions_profile.php:299 +#: ../../include/functions_profile.php:312 #: ../../include/class/ConfigPEN.class.php:666 #: ../../include/class/SatelliteAgent.class.php:1166 #: ../../include/class/SatelliteAgent.class.php:1214 @@ -1886,8 +1887,8 @@ msgstr "Modifier" #: ../../include/class/TreeGroupEdition.class.php:166 #: ../../include/class/CredentialStore.class.php:1715 #: ../../include/class/SnmpConsole.class.php:499 -#: ../../include/class/SnmpConsole.class.php:1273 -#: ../../include/class/SnmpConsole.class.php:1300 +#: ../../include/class/SnmpConsole.class.php:1274 +#: ../../include/class/SnmpConsole.class.php:1301 #: ../../include/class/ModuleTemplates.class.php:919 #: ../../include/class/ModuleTemplates.class.php:934 #: ../../include/class/WelcomeWindow.class.php:171 @@ -1897,13 +1898,13 @@ msgstr "Modifier" #: ../../include/functions_container.php:190 #: ../../include/functions_container.php:324 #: ../../include/lib/Dashboard/Widgets/events_list.php:655 -#: ../../include/functions_events.php:3526 -#: ../../operation/users/user_edit.php:1193 +#: ../../include/functions_events.php:3505 +#: ../../operation/users/user_edit.php:1267 #: ../../operation/agentes/pandora_networkmap.editor.php:631 #: ../../operation/agentes/pandora_networkmap.php:811 #: ../../operation/messages/message_list.php:272 #: ../../operation/messages/message_list.php:275 -#: ../../operation/snmpconsole/snmp_browser.php:643 +#: ../../operation/snmpconsole/snmp_browser.php:641 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:197 #: ../../operation/incidents/list_integriaims_incidents.php:554 msgid "Are you sure?" @@ -1918,8 +1919,9 @@ msgstr "Êtes-vous sûr(e) ?" #: ../../enterprise/include/functions_ui.php:168 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4349 #: ../../godmode/alerts/configure_alert_template.php:1548 -#: ../../godmode/events/event_edit_filter.php:583 -#: ../../godmode/events/event_edit_filter.php:636 +#: ../../godmode/events/event_edit_filter.php:593 +#: ../../godmode/events/event_edit_filter.php:646 +#: ../../include/functions_ui.php:6936 ../../include/functions_ui.php:6984 #: ../../operation/events/events.php:1246 ../../operation/events/events.php:1318 msgid "Remove" msgstr "Supprimer" @@ -1942,7 +1944,6 @@ msgstr "Charger le calendrier" #: ../../enterprise/include/class/SAPView.class.php:155 #: ../../enterprise/include/class/SAPView.class.php:199 #: ../../enterprise/operation/agentes/tag_view.php:50 -#: ../../enterprise/operation/inventory/inventory.php:146 #: ../../enterprise/operation/services/massive/services.delete.php:42 #: ../../enterprise/operation/services/massive/services.create.php:595 #: ../../enterprise/operation/services/massive/service.delete.elements.php:105 @@ -1963,12 +1964,13 @@ msgstr "Charger le calendrier" #: ../../operation/agentes/interface_view.php:72 #: ../../operation/agentes/status_monitor.php:104 #: ../../operation/agentes/group_view.php:98 -#: ../../operation/agentes/ver_agente.php:1927 -#: ../../operation/agentes/tactical.php:78 +#: ../../operation/agentes/ver_agente.php:1945 +#: ../../operation/agentes/tactical.php:79 #: ../../operation/snmpconsole/snmp_statistics.php:98 #: ../../operation/snmpconsole/snmp_browser.php:86 #: ../../operation/snmpconsole/snmp_mib_uploader.php:56 -#: ../../operation/menu.php:33 ../../operation/menu.php:160 +#: ../../operation/menu.php:33 ../../operation/menu.php:164 +#: ../../operation/inventory/inventory.php:149 #: ../../general/first_task/cluster_builder.php:38 msgid "Monitoring" msgstr "Surveillance" @@ -2006,14 +2008,15 @@ msgstr "Grappes" #: ../../godmode/modules/manage_network_components_form_common.php:64 #: ../../godmode/modules/manage_network_components.php:753 #: ../../godmode/update_manager/update_manager.history.php:41 -#: ../../godmode/agentes/agent_template.php:236 +#: ../../godmode/agentes/agent_template.php:237 #: ../../godmode/agentes/modificar_agente.php:650 #: ../../godmode/agentes/planned_downtime.list.php:659 #: ../../godmode/agentes/planned_downtime.editor.php:856 #: ../../godmode/agentes/module_manager_editor_common.php:288 #: ../../godmode/agentes/module_manager_editor_common.php:401 #: ../../godmode/agentes/module_manager_editor_common.php:1319 -#: ../../godmode/agentes/module_manager.php:892 +#: ../../godmode/agentes/module_manager.php:201 +#: ../../godmode/agentes/module_manager.php:893 #: ../../godmode/alerts/alert_templates.php:37 #: ../../godmode/alerts/alert_templates.php:302 #: ../../godmode/alerts/alert_templates.php:387 ../../godmode/setup/news.php:247 @@ -2043,7 +2046,7 @@ msgstr "Grappes" #: ../../include/functions_reporting_html.php:1323 #: ../../include/functions_reporting_html.php:2552 #: ../../include/functions_reporting_html.php:3614 -#: ../../include/functions_reporting_html.php:5384 +#: ../../include/functions_reporting_html.php:5403 #: ../../include/ajax/heatmap.ajax.php:75 ../../include/ajax/module.php:990 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:467 #: ../../include/functions_reports.php:1074 ../../include/functions_html.php:5581 @@ -2057,9 +2060,9 @@ msgstr "Grappes" #: ../../include/lib/Dashboard/Widgets/clock.php:221 #: ../../include/functions_snmp_browser.php:564 #: ../../include/functions_events.php:2524 -#: ../../include/functions_events.php:4777 +#: ../../include/functions_events.php:4756 #: ../../operation/agentes/estado_agente.php:757 -#: ../../operation/agentes/ver_agente.php:1165 +#: ../../operation/agentes/ver_agente.php:1171 #: ../../operation/netflow/nf_live_view.php:319 #: ../../operation/incidents/configure_integriaims_incident.php:234 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:326 @@ -2068,7 +2071,7 @@ msgid "Type" msgstr "Type" #: ../../views/cluster/list.php:62 -#: ../../include/functions_reporting_html.php:5819 +#: ../../include/functions_reporting_html.php:5838 #: ../../operation/agentes/pandora_networkmap.php:715 msgid "Nodes" msgstr "Nœuds" @@ -2091,8 +2094,8 @@ msgstr "Nœuds" #: ../../enterprise/godmode/policies/policies.php:409 #: ../../enterprise/godmode/policies/policy_collections.php:172 #: ../../enterprise/godmode/policies/policy_collections.php:266 -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 +#: ../../enterprise/godmode/policies/policy_agents.php:888 +#: ../../enterprise/godmode/policies/policy_agents.php:1404 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:125 #: ../../enterprise/godmode/admin_access_logs.php:50 #: ../../enterprise/godmode/servers/HA_cluster.php:175 @@ -2122,7 +2125,7 @@ msgstr "Nœuds" #: ../../godmode/agentes/status_monitor_custom_fields.php:97 #: ../../godmode/agentes/status_monitor_custom_fields.php:148 #: ../../godmode/agentes/agent_incidents.php:89 -#: ../../godmode/agentes/module_manager.php:905 +#: ../../godmode/agentes/module_manager.php:906 #: ../../godmode/massive/massive_copy_modules.php:121 #: ../../godmode/massive/massive_copy_modules.php:281 #: ../../godmode/massive/massive_delete_modules.php:415 @@ -2152,7 +2155,7 @@ msgstr "Nœuds" #: ../../mobile/operation/events.php:649 ../../mobile/operation/events.php:650 #: ../../mobile/operation/events.php:824 ../../mobile/operation/events.php:963 #: ../../mobile/operation/events.php:964 -#: ../../include/functions_reporting_html.php:551 +#: ../../include/functions_reporting_html.php:552 #: ../../include/functions_reporting_html.php:1050 #: ../../include/functions_reporting_html.php:1059 #: ../../include/functions_reporting_html.php:1313 @@ -2163,7 +2166,7 @@ msgstr "Nœuds" #: ../../include/functions_reporting_html.php:2913 #: ../../include/functions_reporting_html.php:3568 #: ../../include/functions_reporting_html.php:3621 -#: ../../include/functions_reporting_html.php:5197 +#: ../../include/functions_reporting_html.php:5216 #: ../../include/ajax/alert_list.ajax.php:296 #: ../../include/ajax/alert_list.ajax.php:321 ../../include/ajax/module.php:993 #: ../../include/ajax/custom_fields.php:416 ../../include/functions_snmp.php:369 @@ -2178,7 +2181,7 @@ msgstr "Nœuds" #: ../../include/functions_snmp_browser.php:594 #: ../../include/functions_events.php:204 ../../include/functions_events.php:259 #: ../../include/functions_events.php:2542 -#: ../../include/functions_events.php:4822 ../../operation/search_agents.php:56 +#: ../../include/functions_events.php:4801 ../../operation/search_agents.php:56 #: ../../operation/agentes/estado_agente.php:275 #: ../../operation/agentes/estado_agente.php:763 #: ../../operation/agentes/interface_view.functions.php:497 @@ -2212,7 +2215,7 @@ msgstr "État" #: ../../enterprise/godmode/reporting/reporting_builder.template.php:723 #: ../../enterprise/include/class/Omnishell.class.php:814 #: ../../enterprise/include/class/Omnishell.class.php:893 -#: ../../include/ajax/events.php:786 ../../include/functions_html.php:1244 +#: ../../include/ajax/events.php:787 ../../include/functions_html.php:1244 #: ../../include/functions_html.php:1397 #: ../../include/functions_snmp_browser.php:1486 msgid "Filter group" @@ -2235,7 +2238,7 @@ msgstr "Détails du grappe" msgid "Edit this cluster" msgstr "Éditer ce grappe" -#: ../../views/cluster/view.php:160 ../../views/cluster/view.php:162 +#: ../../views/cluster/view.php:161 ../../views/cluster/view.php:163 #: ../../enterprise/meta/include/functions_wizard_meta.php:240 #: ../../enterprise/meta/include/functions_wizard_meta.php:525 #: ../../enterprise/meta/include/functions_wizard_meta.php:597 @@ -2249,8 +2252,8 @@ msgstr "Éditer ce grappe" #: ../../enterprise/meta/agentsearch.php:265 #: ../../enterprise/godmode/modules/configure_local_component.php:471 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:118 -#: ../../enterprise/godmode/policies/policy_agents.php:1736 -#: ../../enterprise/godmode/policies/policy_agents.php:1751 +#: ../../enterprise/godmode/policies/policy_agents.php:1775 +#: ../../enterprise/godmode/policies/policy_agents.php:1790 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:701 #: ../../enterprise/godmode/setup/edit_skin.php:276 #: ../../enterprise/include/class/VMware.app.php:889 @@ -2259,7 +2262,7 @@ msgstr "Éditer ce grappe" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3257 #: ../../enterprise/include/lib/NetworkManager.php:190 #: ../../enterprise/include/functions_policies.php:4783 -#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/groups/group_list.php:913 #: ../../godmode/agentes/modificar_agente.php:760 #: ../../godmode/agentes/module_manager_editor_common.php:257 #: ../../godmode/agentes/module_manager_editor_common.php:911 @@ -2276,7 +2279,7 @@ msgstr "Éditer ce grappe" #: ../../include/functions_treeview.php:72 #: ../../include/functions_treeview.php:613 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:405 -#: ../../include/functions_reporting.php:6673 +#: ../../include/functions_reporting.php:6888 #: ../../operation/search_agents.php:93 #: ../../operation/agentes/estado_generalagente.php:99 #: ../../operation/agentes/estado_generalagente.php:101 @@ -2284,7 +2287,7 @@ msgstr "Éditer ce grappe" msgid "Disabled" msgstr "Désactivé" -#: ../../views/cluster/view.php:166 ../../views/cluster/view.php:168 +#: ../../views/cluster/view.php:167 ../../views/cluster/view.php:169 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1028 #: ../../enterprise/godmode/services/services.service.php:779 #: ../../enterprise/operation/services/massive/services.create.php:843 @@ -2293,7 +2296,7 @@ msgstr "Désactivé" #: ../../godmode/agentes/planned_downtime.editor.php:862 #: ../../godmode/agentes/agent_manager.php:692 #: ../../godmode/agentes/module_manager_editor_common.php:1070 -#: ../../godmode/agentes/module_manager.php:1027 +#: ../../godmode/agentes/module_manager.php:1028 #: ../../godmode/massive/massive_edit_agents.php:1108 #: ../../godmode/massive/massive_edit_modules.php:1104 #: ../../mobile/operation/agent.php:174 ../../include/ajax/module.php:1141 @@ -2304,7 +2307,7 @@ msgstr "Désactivé" msgid "Quiet" msgstr "Mode silencieux" -#: ../../views/cluster/view.php:176 ../../views/cluster/view.php:184 +#: ../../views/cluster/view.php:177 ../../views/cluster/view.php:185 #: ../../godmode/agentes/modificar_agente.php:782 #: ../../operation/search_agents.php:111 #: ../../operation/agentes/estado_agente.php:839 @@ -2313,17 +2316,15 @@ msgstr "Mode silencieux" msgid "Agent in scheduled downtime" msgstr "Agent dans temps d'arrêt programmé" -#: ../../views/cluster/view.php:221 +#: ../../views/cluster/view.php:222 msgid "Force cluster status calculation" msgstr "Forcer calcule d'état du grappe" -#: ../../views/cluster/view.php:251 ../../enterprise/meta/agentsearch.php:137 +#: ../../views/cluster/view.php:252 ../../enterprise/meta/agentsearch.php:137 #: ../../enterprise/godmode/modules/configure_local_component.php:179 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:280 #: ../../enterprise/godmode/modules/local_components.php:564 #: ../../enterprise/godmode/modules/local_components.php:589 #: ../../enterprise/godmode/modules/local_components.php:625 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:107 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:254 #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/include/class/DeploymentCenter.class.php:756 @@ -2335,6 +2336,8 @@ msgstr "Forcer calcule d'état du grappe" #: ../../enterprise/include/class/AgentRepository.class.php:731 #: ../../enterprise/operation/agentes/tag_view.php:602 #: ../../enterprise/tools/ipam/ipam_network.php:399 +#: ../../godmode/modules/manage_inventory_modules.php:280 +#: ../../godmode/modules/manage_inventory_modules_form.php:107 #: ../../godmode/agentes/modificar_agente.php:649 #: ../../godmode/agentes/planned_downtime.editor.php:1208 #: ../../godmode/agentes/agent_manager.php:401 @@ -2347,7 +2350,7 @@ msgstr "Forcer calcule d'état du grappe" #: ../../include/class/Diagnostics.class.php:749 #: ../../include/lib/Dashboard/Widgets/os_quick_report.php:283 #: ../../include/lib/Dashboard/Widgets/tree_view.php:332 -#: ../../include/functions_events.php:4245 ../../operation/search_agents.php:44 +#: ../../include/functions_events.php:4224 ../../operation/search_agents.php:44 #: ../../operation/search_agents.php:50 ../../operation/tree.php:78 #: ../../operation/tree.php:146 ../../operation/agentes/estado_agente.php:748 #: ../../operation/agentes/estado_generalagente.php:194 @@ -2355,12 +2358,12 @@ msgstr "Forcer calcule d'état du grappe" msgid "OS" msgstr "Système d'exploitation" -#: ../../views/cluster/view.php:271 +#: ../../views/cluster/view.php:272 #: ../../operation/agentes/estado_generalagente.php:212 msgid "IP address" msgstr "Adresse IP" -#: ../../views/cluster/view.php:276 ../../views/cluster/view.php:291 +#: ../../views/cluster/view.php:277 ../../views/cluster/view.php:292 #: ../../enterprise/meta/advanced/servers.build_table.php:100 #: ../../enterprise/meta/advanced/servers.build_table.php:101 #: ../../enterprise/meta/advanced/servers.build_table.php:107 @@ -2392,58 +2395,58 @@ msgstr "Adresse IP" #: ../../mobile/operation/events.php:334 ../../mobile/operation/events.php:443 #: ../../mobile/operation/events.php:493 ../../mobile/operation/events.php:509 #: ../../include/functions_servers.php:1359 -#: ../../include/functions_reporting_html.php:655 -#: ../../include/functions_reporting_html.php:658 -#: ../../include/functions_reporting_html.php:5458 -#: ../../include/functions_reporting_html.php:5511 -#: ../../include/functions.php:1144 ../../include/functions.php:1150 -#: ../../include/functions.php:1154 ../../include/ajax/module.php:1181 +#: ../../include/functions_reporting_html.php:656 +#: ../../include/functions_reporting_html.php:659 +#: ../../include/functions_reporting_html.php:5477 +#: ../../include/functions_reporting_html.php:5530 +#: ../../include/functions.php:1170 ../../include/functions.php:1176 +#: ../../include/functions.php:1180 ../../include/ajax/module.php:1181 #: ../../include/functions_treeview.php:162 #: ../../include/functions_treeview.php:327 -#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2615 -#: ../../include/functions_ui.php:2623 ../../include/functions_db.php:241 -#: ../../include/class/SnmpConsole.class.php:827 -#: ../../include/class/SnmpConsole.class.php:845 -#: ../../include/functions_events.php:3552 -#: ../../include/functions_events.php:3686 -#: ../../include/functions_events.php:3706 -#: ../../include/functions_events.php:3715 -#: ../../include/functions_events.php:3724 -#: ../../include/functions_events.php:3725 -#: ../../include/functions_events.php:3737 -#: ../../include/functions_events.php:3797 -#: ../../include/functions_events.php:3830 -#: ../../include/functions_events.php:3896 -#: ../../include/functions_events.php:3913 -#: ../../include/functions_events.php:3920 -#: ../../include/functions_events.php:3986 -#: ../../include/functions_events.php:4078 -#: ../../include/functions_events.php:4202 -#: ../../include/functions_events.php:4241 -#: ../../include/functions_events.php:4255 -#: ../../include/functions_events.php:4260 -#: ../../include/functions_events.php:4290 -#: ../../include/functions_events.php:4376 -#: ../../include/functions_events.php:4456 -#: ../../include/functions_events.php:4466 -#: ../../include/functions_events.php:4683 -#: ../../include/functions_events.php:4757 -#: ../../include/functions_events.php:4851 -#: ../../include/functions_events.php:4880 -#: ../../include/functions_events.php:4895 -#: ../../include/functions_events.php:4905 -#: ../../include/functions_events.php:4915 -#: ../../include/functions_events.php:5355 -#: ../../include/functions_events.php:5369 -#: ../../include/functions_events.php:5374 -#: ../../include/functions_events.php:5377 -#: ../../include/functions_events.php:5385 -#: ../../include/functions_events.php:5394 -#: ../../include/functions_events.php:5406 -#: ../../include/functions_events.php:5459 -#: ../../include/functions_events.php:5486 -#: ../../include/functions_events.php:5511 -#: ../../include/functions_events.php:5555 +#: ../../include/functions_treeview.php:423 ../../include/functions_ui.php:2619 +#: ../../include/functions_ui.php:2627 ../../include/functions_db.php:241 +#: ../../include/class/SnmpConsole.class.php:828 +#: ../../include/class/SnmpConsole.class.php:846 +#: ../../include/functions_events.php:3531 +#: ../../include/functions_events.php:3665 +#: ../../include/functions_events.php:3685 +#: ../../include/functions_events.php:3694 +#: ../../include/functions_events.php:3703 +#: ../../include/functions_events.php:3704 +#: ../../include/functions_events.php:3716 +#: ../../include/functions_events.php:3776 +#: ../../include/functions_events.php:3809 +#: ../../include/functions_events.php:3875 +#: ../../include/functions_events.php:3892 +#: ../../include/functions_events.php:3899 +#: ../../include/functions_events.php:3965 +#: ../../include/functions_events.php:4057 +#: ../../include/functions_events.php:4181 +#: ../../include/functions_events.php:4220 +#: ../../include/functions_events.php:4234 +#: ../../include/functions_events.php:4239 +#: ../../include/functions_events.php:4269 +#: ../../include/functions_events.php:4355 +#: ../../include/functions_events.php:4435 +#: ../../include/functions_events.php:4445 +#: ../../include/functions_events.php:4662 +#: ../../include/functions_events.php:4736 +#: ../../include/functions_events.php:4830 +#: ../../include/functions_events.php:4859 +#: ../../include/functions_events.php:4874 +#: ../../include/functions_events.php:4884 +#: ../../include/functions_events.php:4894 +#: ../../include/functions_events.php:5368 +#: ../../include/functions_events.php:5382 +#: ../../include/functions_events.php:5387 +#: ../../include/functions_events.php:5390 +#: ../../include/functions_events.php:5398 +#: ../../include/functions_events.php:5407 +#: ../../include/functions_events.php:5419 +#: ../../include/functions_events.php:5472 +#: ../../include/functions_events.php:5499 +#: ../../include/functions_events.php:5524 +#: ../../include/functions_events.php:5568 #: ../../operation/agentes/interface_view.functions.php:682 #: ../../operation/agentes/interface_view.functions.php:683 #: ../../operation/agentes/interface_view.functions.php:684 @@ -2459,22 +2462,22 @@ msgstr "Adresse IP" msgid "N/A" msgstr "S.O." -#: ../../views/cluster/view.php:307 ../../include/functions_treeview.php:729 +#: ../../views/cluster/view.php:308 ../../include/functions_treeview.php:724 #: ../../operation/agentes/estado_generalagente.php:225 #: ../../operation/gis_maps/ajax.php:341 msgid "Agent Version" msgstr "Version de l'agent" -#: ../../views/cluster/view.php:312 +#: ../../views/cluster/view.php:313 msgid "Cluster agent" msgstr "Agent de grappe" -#: ../../views/cluster/view.php:367 +#: ../../views/cluster/view.php:368 #: ../../operation/agentes/estado_generalagente.php:899 msgid "Events (Last 24h)" msgstr "Événements (Dernières 24h)" -#: ../../views/cluster/view.php:439 ../../operation/agentes/stat_win.php:451 +#: ../../views/cluster/view.php:440 ../../operation/agentes/stat_win.php:451 #: ../../operation/agentes/interface_traffic_graph_win.php:278 msgid "Reload" msgstr "Recharger" @@ -2527,6 +2530,10 @@ msgstr "Mettre à jour le tableau de bord" #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:444 #: ../../enterprise/godmode/services/services.elements.php:886 #: ../../enterprise/godmode/services/services.elements.php:897 +#: ../../enterprise/godmode/setup/setup.php:544 +#: ../../enterprise/godmode/setup/setup.php:559 +#: ../../enterprise/godmode/setup/setup.php:566 +#: ../../enterprise/godmode/setup/setup.php:575 #: ../../enterprise/include/class/Omnishell.class.php:1501 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3052 #: ../../enterprise/include/lib/Metaconsole/Node.php:406 @@ -2538,8 +2545,8 @@ msgstr "Mettre à jour le tableau de bord" #: ../../godmode/snmpconsole/snmp_alert.php:1548 #: ../../godmode/snmpconsole/snmp_alert.php:1563 #: ../../godmode/massive/massive_edit_agents.php:1043 -#: ../../include/functions_config.php:1302 -#: ../../include/functions_config.php:3293 +#: ../../include/functions_config.php:1283 +#: ../../include/functions_config.php:3269 #: ../../include/class/SatelliteAgent.class.php:1290 #: ../../include/lib/Dashboard/Widgets/wux_transaction.php:377 #: ../../operation/gis_maps/render_view.php:166 @@ -2581,7 +2588,7 @@ msgstr "Afficher lien au panneau de configuration" #: ../../operation/visual_console/public_view.php:123 #: ../../operation/agentes/pandora_networkmap.editor.php:455 #: ../../operation/gis_maps/render_view.php:160 -#: ../../operation/reporting/graph_viewer.php:399 +#: ../../operation/reporting/graph_viewer.php:371 #: ../../operation/events/events.php:1384 ../../general/login_page.php:75 #: ../../general/login_page.php:318 msgid "Refresh" @@ -2600,7 +2607,7 @@ msgstr "Panneaux de configuration" #: ../../views/dashboard/header.php:278 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 #: ../../godmode/agentes/planned_downtime.editor.php:60 -#: ../../godmode/alerts/alert_list.php:501 ../../godmode/category/category.php:89 +#: ../../godmode/alerts/alert_list.php:519 ../../godmode/category/category.php:89 #: ../../include/functions_html.php:1901 ../../include/functions_html.php:1902 #: ../../include/functions_html.php:2012 ../../include/functions_html.php:2013 #: ../../include/functions_html.php:2190 ../../include/functions_html.php:2191 @@ -2637,8 +2644,8 @@ msgstr "Liste" #: ../../godmode/modules/manage_network_components.php:555 #: ../../godmode/users/profile_list.php:133 ../../godmode/users/user_list.php:344 #: ../../godmode/users/user_list.php:400 -#: ../../godmode/users/configure_user.php:152 -#: ../../godmode/users/configure_user.php:172 +#: ../../godmode/users/configure_user.php:148 +#: ../../godmode/users/configure_user.php:168 #: ../../godmode/agentes/planned_downtime.list.php:279 #: ../../godmode/netflow/nf_item_list.php:120 #: ../../godmode/netflow/nf_item_list.php:148 @@ -2649,7 +2656,7 @@ msgstr "Liste" #: ../../godmode/massive/massive_delete_modules.php:162 #: ../../godmode/massive/massive_delete_alerts.php:201 #: ../../godmode/alerts/alert_actions.php:205 -#: ../../godmode/alerts/alert_commands.php:690 +#: ../../godmode/alerts/alert_commands.php:691 #: ../../godmode/alerts/alert_templates.php:252 #: ../../godmode/alerts/alert_list.php:239 #: ../../godmode/alerts/alert_list.php:346 ../../godmode/setup/news.php:120 @@ -2675,8 +2682,8 @@ msgstr "Supprimé correctement" #: ../../enterprise/godmode/policies/policy_alerts.php:256 #: ../../enterprise/godmode/policies/policy_alerts.php:302 #: ../../enterprise/godmode/policies/policy_modules.php:1318 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:147 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:174 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:149 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:176 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:166 #: ../../enterprise/godmode/policies/policy_collections.php:100 #: ../../enterprise/godmode/policies/policy_agents.php:104 @@ -2692,11 +2699,11 @@ msgstr "Supprimé correctement" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:130 #: ../../extensions/files_repo.php:184 #: ../../godmode/modules/manage_network_components.php:556 -#: ../../godmode/users/configure_user.php:153 +#: ../../godmode/users/configure_user.php:149 #: ../../godmode/massive/massive_delete_action_alerts.php:171 #: ../../godmode/massive/massive_delete_alerts.php:202 #: ../../godmode/alerts/alert_actions.php:206 -#: ../../godmode/alerts/alert_commands.php:691 +#: ../../godmode/alerts/alert_commands.php:692 #: ../../godmode/alerts/alert_templates.php:253 #: ../../godmode/alerts/alert_list.php:240 #: ../../godmode/alerts/alert_list.php:347 ../../godmode/setup/news.php:121 @@ -2732,7 +2739,7 @@ msgstr "Favori" #: ../../views/dashboard/list.php:99 #: ../../include/class/AgentsAlerts.class.php:822 ../../operation/heatmap.php:87 #: ../../operation/agentes/networkmap.dinamic.php:115 -#: ../../operation/agentes/pandora_networkmap.view.php:2327 +#: ../../operation/agentes/pandora_networkmap.view.php:2331 #: ../../operation/snmpconsole/snmp_statistics.php:54 #: ../../operation/snmpconsole/snmp_browser.php:68 #: ../../operation/events/events.php:1427 @@ -2773,12 +2780,9 @@ msgstr "Copier" #: ../../enterprise/meta/include/functions_autoprovision.php:685 #: ../../enterprise/meta/include/functions_autoprovision.php:686 #: ../../enterprise/meta/include/functions_wizard_meta.php:395 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:323 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:338 #: ../../enterprise/godmode/modules/local_components.php:701 #: ../../enterprise/godmode/modules/local_components.php:718 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 -#: ../../enterprise/godmode/agentes/inventory_manager.php:250 #: ../../enterprise/godmode/agentes/plugins_manager.php:196 #: ../../enterprise/godmode/agentes/plugins_manager.php:281 #: ../../enterprise/godmode/policies/policy_plugins.php:188 @@ -2789,10 +2793,10 @@ msgstr "Copier" #: ../../enterprise/godmode/policies/policy_queue.php:675 #: ../../enterprise/godmode/policies/policy_queue.php:722 #: ../../enterprise/godmode/policies/policies.php:595 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:559 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:561 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:334 -#: ../../enterprise/godmode/policies/policy_agents.php:1083 -#: ../../enterprise/godmode/policies/policy_agents.php:1545 +#: ../../enterprise/godmode/policies/policy_agents.php:1119 +#: ../../enterprise/godmode/policies/policy_agents.php:1581 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:413 #: ../../enterprise/godmode/massive/massive_delete_alerts_snmp.php:238 #: ../../enterprise/godmode/massive/massive_delete_alerts_policy.php:148 @@ -2841,17 +2845,20 @@ msgstr "Copier" #: ../../godmode/modules/manage_network_templates_form.php:254 #: ../../godmode/modules/manage_nc_groups.php:276 #: ../../godmode/modules/manage_nc_groups.php:305 +#: ../../godmode/modules/manage_inventory_modules.php:323 +#: ../../godmode/modules/manage_inventory_modules.php:338 #: ../../godmode/modules/manage_network_components.php:871 #: ../../godmode/modules/manage_network_components.php:872 #: ../../godmode/modules/manage_network_components.php:901 #: ../../godmode/modules/manage_network_templates.php:289 #: ../../godmode/modules/manage_network_templates.php:302 -#: ../../godmode/groups/group_list.php:937 -#: ../../godmode/groups/group_list.php:938 +#: ../../godmode/groups/group_list.php:942 +#: ../../godmode/groups/group_list.php:943 #: ../../godmode/groups/modu_group_list.php:254 ../../godmode/extensions.php:257 #: ../../godmode/extensions.php:259 ../../godmode/users/profile_list.php:443 #: ../../godmode/users/user_list.php:885 -#: ../../godmode/agentes/agent_template.php:259 +#: ../../godmode/agentes/agent_template.php:260 +#: ../../godmode/agentes/inventory_manager.php:250 #: ../../godmode/agentes/planned_downtime.list.php:671 #: ../../godmode/agentes/planned_downtime.list.php:821 #: ../../godmode/agentes/planned_downtime.editor.php:1254 @@ -2859,8 +2866,8 @@ msgstr "Copier" #: ../../godmode/agentes/planned_downtime.editor.php:1307 #: ../../godmode/agentes/fields_manager.php:158 #: ../../godmode/agentes/module_manager_editor_common.php:1321 -#: ../../godmode/agentes/module_manager.php:910 -#: ../../godmode/agentes/module_manager.php:1288 +#: ../../godmode/agentes/module_manager.php:911 +#: ../../godmode/agentes/module_manager.php:1293 #: ../../godmode/netflow/nf_item_list.php:263 #: ../../godmode/netflow/nf_item_list.php:273 #: ../../godmode/netflow/nf_edit.php:196 ../../godmode/netflow/nf_edit.php:208 @@ -2905,14 +2912,14 @@ msgstr "Copier" #: ../../include/class/CredentialStore.class.php:1717 #: ../../include/class/SnmpConsole.class.php:496 #: ../../include/class/SnmpConsole.class.php:547 -#: ../../include/class/SnmpConsole.class.php:900 -#: ../../include/class/SnmpConsole.class.php:912 +#: ../../include/class/SnmpConsole.class.php:901 +#: ../../include/class/SnmpConsole.class.php:913 #: ../../include/class/ModuleTemplates.class.php:934 #: ../../include/class/ModuleTemplates.class.php:1212 #: ../../include/class/CalendarManager.class.php:737 #: ../../include/functions_container.php:191 #: ../../include/functions_container.php:325 -#: ../../include/lib/ClusterViewer/ClusterManager.php:637 +#: ../../include/lib/ClusterViewer/ClusterManager.php:634 #: ../../operation/visual_console/view.php:845 #: ../../operation/agentes/pandora_networkmap.php:721 #: ../../operation/agentes/pandora_networkmap.php:811 @@ -2950,7 +2957,7 @@ msgid "Please select widget" msgstr "Sélectionnez un widget" #: ../../views/dashboard/jsLayout.php:42 ../../extensions/agents_modules.php:76 -#: ../../include/class/SnmpConsole.class.php:1538 +#: ../../include/class/SnmpConsole.class.php:1539 #: ../../operation/events/events.php:3082 msgid "Until next" msgstr "Jusqu'au suivant" @@ -2990,12 +2997,12 @@ msgstr "Changer chaque" #: ../../enterprise/meta/monitoring/wizard/wizard.module.local.php:211 #: ../../enterprise/meta/monitoring/wizard/wizard.module.network.php:252 #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:212 -#: ../../include/functions.php:3895 +#: ../../include/functions.php:3921 msgid "Previous" msgstr "Précédent" #: ../../views/dashboard/slides.php:218 -#: ../../enterprise/meta/general/main_menu.php:277 ../../operation/menu.php:437 +#: ../../enterprise/meta/general/main_menu.php:277 ../../operation/menu.php:441 msgid "Stop" msgstr "Arrêter" @@ -3015,7 +3022,7 @@ msgstr "Pause" #: ../../enterprise/include/class/Omnishell.class.php:645 #: ../../enterprise/include/class/DB2.app.php:567 #: ../../enterprise/include/class/SAP.app.php:442 -#: ../../enterprise/include/class/Aws.cloud.php:1425 +#: ../../enterprise/include/class/Aws.cloud.php:1424 #: ../../enterprise/include/class/MySQL.app.php:589 #: ../../enterprise/include/class/Oracle.app.php:574 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:568 @@ -3067,7 +3074,7 @@ msgstr "" #: ../../enterprise/views/ncm/models/edit.php:37 #: ../../enterprise/views/ncm/vendors/list.php:32 #: ../../enterprise/views/ncm/vendors/edit.php:35 -#: ../../include/functions.php:1258 ../../include/functions_events.php:3058 +#: ../../include/functions.php:1284 ../../include/functions_events.php:3037 msgid "Network configuration manager" msgstr "Gestionnaire de configuration réseau" @@ -3137,20 +3144,20 @@ msgid "connect using telnet" msgstr "Connecter utilisant telnet" #: ../../enterprise/views/ncm/agent/manage.php:118 -#: ../../enterprise/meta/include/functions_meta.php:2101 +#: ../../enterprise/meta/include/functions_meta.php:2082 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1063 #: ../../enterprise/godmode/setup/setup_history.php:192 #: ../../enterprise/godmode/servers/manage_export_form.php:121 #: ../../enterprise/include/class/Azure.cloud.php:813 #: ../../enterprise/include/class/VMware.app.php:632 #: ../../enterprise/include/class/Aws.S3.php:574 -#: ../../enterprise/include/class/Aws.cloud.php:557 +#: ../../enterprise/include/class/Aws.cloud.php:556 #: ../../extensions/quick_shell.php:181 #: ../../godmode/modules/manage_network_components_form_network.php:53 #: ../../godmode/agentes/module_manager_editor_network.php:126 #: ../../godmode/massive/massive_edit_modules.php:1145 #: ../../godmode/servers/modificar_server.php:84 -#: ../../include/functions_config.php:1572 +#: ../../include/functions_config.php:1553 #: ../../include/class/AgentWizard.class.php:647 #: ../../include/functions_snmp_browser.php:714 msgid "Port" @@ -3230,7 +3237,7 @@ msgstr "Type de script" #: ../../enterprise/views/ncm/agent/details.php:90 #: ../../enterprise/include/class/CommandCenter.class.php:468 -#: ../../extensions/api_checker.php:219 ../../extensions/api_checker.php:226 +#: ../../extensions/api_checker.php:303 ../../extensions/api_checker.php:310 #: ../../include/functions_reporting_html.php:4225 #: ../../include/functions_reporting_html.php:4372 #: ../../include/functions_reporting_html.php:4714 @@ -3324,7 +3331,7 @@ msgstr "Aperçu" #: ../../enterprise/operation/services/services.list.php:240 #: ../../enterprise/operation/services/services.list.php:571 #: ../../enterprise/operation/services/services.table_services.php:162 -#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1064 +#: ../../extensions/module_groups.php:52 ../../godmode/groups/group_list.php:1069 #: ../../godmode/massive/massive_copy_modules.php:118 #: ../../godmode/massive/massive_copy_modules.php:278 #: ../../godmode/massive/massive_delete_modules.php:421 @@ -3334,37 +3341,37 @@ msgstr "Aperçu" #: ../../godmode/alerts/alert_list.builder.php:290 #: ../../godmode/reporting/reporting_builder.item_editor.php:3787 #: ../../mobile/operation/agents.php:60 ../../mobile/operation/modules.php:72 -#: ../../include/graphs/functions_flot.php:305 +#: ../../include/graphs/functions_flot.php:310 #: ../../include/functions_reporting_html.php:2473 #: ../../include/functions_reporting_html.php:2486 #: ../../include/functions_reporting_html.php:3468 #: ../../include/functions_reporting_html.php:3882 -#: ../../include/functions.php:1245 ../../include/functions.php:4133 +#: ../../include/functions.php:1271 ../../include/functions.php:4159 #: ../../include/ajax/module.php:1084 ../../include/functions_ui.php:549 -#: ../../include/functions_ui.php:550 ../../include/functions_visual_map.php:2455 -#: ../../include/functions_visual_map.php:2483 -#: ../../include/functions_visual_map.php:2501 -#: ../../include/functions_visual_map.php:2519 +#: ../../include/functions_ui.php:550 ../../include/functions_visual_map.php:2457 +#: ../../include/functions_visual_map.php:2485 +#: ../../include/functions_visual_map.php:2503 +#: ../../include/functions_visual_map.php:2521 #: ../../include/functions_alerts.php:702 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:439 #: ../../include/functions_reports.php:557 ../../include/functions_maps.php:54 #: ../../include/functions_massive_operations.php:151 #: ../../include/functions_netflow.php:1865 -#: ../../include/functions_reporting.php:6453 +#: ../../include/functions_reporting.php:6668 #: ../../include/functions_filemanager.php:668 #: ../../include/lib/Dashboard/Widgets/tree_view.php:388 #: ../../include/lib/Dashboard/Widgets/tree_view.php:421 #: ../../include/lib/Dashboard/Widgets/tree_view.php:673 -#: ../../include/lib/ClusterViewer/ClusterManager.php:585 -#: ../../include/functions_events.php:3006 ../../operation/tree.php:215 +#: ../../include/lib/ClusterViewer/ClusterManager.php:582 +#: ../../include/functions_events.php:2985 ../../operation/tree.php:215 #: ../../operation/tree.php:272 ../../operation/tree.php:476 #: ../../operation/agentes/estado_agente.php:271 #: ../../operation/agentes/status_monitor.php:495 #: ../../operation/agentes/group_view.php:224 #: ../../operation/agentes/group_view.php:229 #: ../../operation/agentes/estado_monitores.php:526 -#: ../../operation/agentes/pandora_networkmap.view.php:1767 -#: ../../operation/agentes/tactical.php:181 ../../operation/events/events.php:785 +#: ../../operation/agentes/pandora_networkmap.view.php:1771 +#: ../../operation/agentes/tactical.php:182 ../../operation/events/events.php:785 #: ../../general/logon_ok.php:145 msgid "Unknown" msgstr "Inconnu" @@ -3430,12 +3437,11 @@ msgstr "Différences" #: ../../enterprise/meta/include/functions_alerts_meta.php:164 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:499 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:139 -#: ../../enterprise/godmode/agentes/inventory_manager.php:225 -#: ../../enterprise/godmode/agentes/collections.php:433 +#: ../../enterprise/godmode/agentes/collections.php:447 #: ../../enterprise/godmode/policies/policy_alerts.php:353 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:359 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:393 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:691 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:361 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:395 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:693 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:305 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:387 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:223 @@ -3450,13 +3456,14 @@ msgstr "Différences" #: ../../enterprise/tools/ipam/ipam_supernet_config.php:1072 #: ../../enterprise/tools/ipam/ipam_ajax.php:532 #: ../../enterprise/tools/ipam/ipam_vlan_config.php:689 -#: ../../godmode/groups/group_list.php:853 +#: ../../godmode/groups/group_list.php:858 +#: ../../godmode/agentes/inventory_manager.php:225 #: ../../godmode/agentes/modificar_agente.php:653 #: ../../godmode/agentes/planned_downtime.editor.php:1213 -#: ../../godmode/agentes/fields_manager.php:124 ../../godmode/menu.php:273 +#: ../../godmode/agentes/fields_manager.php:124 ../../godmode/menu.php:276 #: ../../godmode/alerts/alert_list.list.php:130 #: ../../godmode/alerts/alert_list.list.php:498 -#: ../../godmode/alerts/alert_commands.php:745 +#: ../../godmode/alerts/alert_commands.php:746 #: ../../godmode/alerts/alert_view.php:301 #: ../../godmode/alerts/alert_list.builder.php:96 #: ../../godmode/reporting/reporting_builder.item_editor.php:2064 @@ -3469,7 +3476,7 @@ msgstr "Différences" #: ../../include/class/AgentsAlerts.class.php:285 #: ../../include/class/SnmpConsole.class.php:344 #: ../../include/class/SatelliteCollection.class.php:131 -#: ../../include/functions_reporting.php:3011 +#: ../../include/functions_reporting.php:3129 #: ../../include/functions_filemanager.php:607 msgid "Actions" msgstr "Actions" @@ -3516,8 +3523,8 @@ msgstr "Différence entre : sauvegarde - sélectionné" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:807 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:251 #: ../../enterprise/godmode/agentes/manage_config_remote.php:65 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1353 -#: ../../godmode/agentes/planned_downtime.list.php:661 ../../godmode/menu.php:249 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1379 +#: ../../godmode/agentes/planned_downtime.list.php:661 ../../godmode/menu.php:252 #: ../../godmode/setup/setup.php:330 ../../godmode/events/events.php:124 #: ../../include/functions_reports.php:905 #: ../../include/functions_reports.php:909 @@ -3592,9 +3599,9 @@ msgid "Customize script execution" msgstr "Personnaliser l’exécution des scripts" #: ../../enterprise/views/ncm/agent/details.php:689 -#: ../../include/ajax/events.php:2103 +#: ../../include/ajax/events.php:2114 #: ../../include/class/ExternalTools.class.php:581 -#: ../../include/functions_events.php:3578 +#: ../../include/functions_events.php:3557 msgid "Execute" msgstr "Exécuter" @@ -3610,8 +3617,8 @@ msgstr "Exécuter" #: ../../enterprise/include/functions_reporting.php:7974 #: ../../enterprise/include/functions_reporting.php:8002 #: ../../enterprise/include/functions_reporting.php:8073 -#: ../../godmode/agentes/configurar_agente.php:751 ../../godmode/menu.php:168 -#: ../../godmode/menu.php:269 +#: ../../godmode/agentes/configurar_agente.php:764 ../../godmode/menu.php:169 +#: ../../godmode/menu.php:272 #: ../../godmode/reporting/reporting_builder.item_editor.php:1999 #: ../../include/functions_menu.php:510 #: ../../include/class/ConfigPEN.class.php:332 @@ -3765,7 +3772,7 @@ msgstr "Configurez les agents pour l'utilisation de modèles NCM" #: ../../enterprise/views/ncm/devices/list.php:117 #: ../../enterprise/godmode/servers/manage_export.php:140 #: ../../enterprise/godmode/servers/manage_export_form.php:99 -#: ../../enterprise/include/functions_ipam.php:2042 +#: ../../enterprise/include/functions_ipam.php:2050 #: ../../enterprise/tools/ipam/ipam_network.php:396 #: ../../enterprise/tools/ipam/ipam_supernet_config.php:546 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:53 @@ -3773,8 +3780,8 @@ msgstr "Configurez les agents pour l'utilisation de modèles NCM" #: ../../enterprise/tools/ipam/ipam_excel.php:139 #: ../../enterprise/tools/ipam/ipam_ajax.php:359 #: ../../enterprise/tools/ipam/ipam_calculator.php:62 -#: ../../godmode/setup/setup_general.php:660 -#: ../../operation/agentes/ver_agente.php:1193 +#: ../../godmode/setup/setup_general.php:741 +#: ../../operation/agentes/ver_agente.php:1199 msgid "Address" msgstr "Adresse" @@ -3799,7 +3806,7 @@ msgstr "Dernière tâche en file d’attente" #: ../../enterprise/tools/ipam/ipam_list.php:655 #: ../../extensions/agents_modules.php:317 #: ../../operation/agentes/group_view.php:80 -#: ../../operation/agentes/tactical.php:60 +#: ../../operation/agentes/tactical.php:61 msgid "Last update" msgstr "Dernière mise à jour" @@ -3885,8 +3892,9 @@ msgstr "" #: ../../update_manager_client/views/offline.php:80 #: ../../extensions/dbmanager.php:114 #: ../../godmode/modules/manage_network_components_form_wizard.php:384 -#: ../../godmode/groups/group_list.php:1059 -#: ../../godmode/users/configure_user.php:1914 +#: ../../godmode/groups/group_list.php:1064 +#: ../../godmode/users/configure_user.php:1054 +#: ../../godmode/users/configure_user.php:1979 #: ../../godmode/massive/massive_copy_modules.php:116 #: ../../godmode/massive/massive_copy_modules.php:276 #: ../../godmode/massive/massive_delete_modules.php:419 @@ -3898,30 +3906,31 @@ msgstr "" #: ../../godmode/reporting/reporting_builder.item_editor.php:3785 #: ../../mobile/operation/agents.php:59 ../../mobile/operation/modules.php:70 #: ../../include/functions_reporting_html.php:2485 -#: ../../include/functions.php:1055 ../../include/functions.php:1293 -#: ../../include/functions.php:1296 ../../include/functions.php:1335 -#: ../../include/functions_graph.php:3497 ../../include/functions_graph.php:3498 -#: ../../include/functions_graph.php:5072 ../../include/functions_ui.php:298 -#: ../../include/functions_ui.php:2610 +#: ../../include/functions.php:1081 ../../include/functions.php:1319 +#: ../../include/functions.php:1322 ../../include/functions.php:1361 +#: ../../include/functions_graph.php:3342 ../../include/functions_graph.php:3344 +#: ../../include/functions_graph.php:4860 ../../include/functions_ui.php:298 +#: ../../include/functions_ui.php:2614 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:425 #: ../../include/functions_massive_operations.php:149 #: ../../include/class/SatelliteAgent.class.php:1358 #: ../../include/class/SatelliteAgent.class.php:1383 -#: ../../include/class/Diagnostics.class.php:1812 +#: ../../include/class/Diagnostics.class.php:1817 #: ../../include/class/AgentWizard.class.php:1398 #: ../../include/class/AgentWizard.class.php:4144 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:316 #: ../../include/lib/Dashboard/Widgets/tree_view.php:386 #: ../../include/lib/Dashboard/Widgets/tree_view.php:419 #: ../../include/lib/Dashboard/Widgets/tree_view.php:668 -#: ../../include/functions_events.php:3102 ../../index.php:1226 +#: ../../include/functions_events.php:3081 ../../index.php:1229 #: ../../operation/tree.php:213 ../../operation/tree.php:270 -#: ../../operation/tree.php:471 ../../operation/agentes/estado_agente.php:269 +#: ../../operation/tree.php:471 ../../operation/users/user_edit.php:277 +#: ../../operation/agentes/estado_agente.php:269 #: ../../operation/agentes/status_monitor.php:493 #: ../../operation/agentes/group_view.php:227 #: ../../operation/agentes/group_view.php:232 #: ../../operation/agentes/estado_monitores.php:525 -#: ../../operation/agentes/tactical.php:179 +#: ../../operation/agentes/tactical.php:180 #: ../../operation/netflow/nf_live_view.php:459 #: ../../operation/gis_maps/render_view.php:165 ../../general/logon_ok.php:143 msgid "Warning" @@ -3943,13 +3952,13 @@ msgstr "icône" #: ../../enterprise/views/ipam/sites/edit.php:64 #: ../../godmode/modules/manage_nc_groups_form.php:71 #: ../../godmode/groups/configure_group.php:170 -#: ../../godmode/groups/group_list.php:848 +#: ../../godmode/groups/group_list.php:853 #: ../../godmode/agentes/agent_manager.php:574 #: ../../godmode/massive/massive_edit_agents.php:655 #: ../../godmode/reporting/visual_console_builder.elements.php:108 #: ../../include/functions_visual_map_editor.php:956 -#: ../../include/rest-api/models/VisualConsole/Item.php:2175 -#: ../../operation/agentes/ver_agente.php:1230 +#: ../../include/rest-api/models/VisualConsole/Item.php:2176 +#: ../../operation/agentes/ver_agente.php:1236 #: ../../operation/agentes/estado_generalagente.php:425 msgid "Parent" msgstr "Parent" @@ -3983,10 +3992,10 @@ msgstr "Parent" #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:700 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:167 #: ../../enterprise/godmode/policies/policy_alerts.php:583 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:588 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:697 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:590 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:699 #: ../../enterprise/godmode/policies/policy_agents.php:391 -#: ../../enterprise/godmode/policies/policy_agents.php:1694 +#: ../../enterprise/godmode/policies/policy_agents.php:1730 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:125 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:211 #: ../../enterprise/godmode/massive/massive_add_alerts_policy.php:111 @@ -4015,10 +4024,6 @@ msgstr "Parent" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1091 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1126 #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:1173 -#: ../../enterprise/godmode/setup/setup.php:614 -#: ../../enterprise/godmode/setup/setup.php:631 -#: ../../enterprise/godmode/setup/setup.php:640 -#: ../../enterprise/godmode/setup/setup.php:657 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:262 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:774 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:795 @@ -4132,10 +4137,10 @@ msgstr "Parent" #: ../../godmode/modules/manage_network_components_form.php:666 #: ../../godmode/groups/configure_group.php:188 #: ../../godmode/groups/configure_group.php:210 -#: ../../godmode/users/configure_user.php:1253 -#: ../../godmode/users/configure_user.php:1267 -#: ../../godmode/users/configure_user.php:1461 -#: ../../godmode/users/configure_user.php:1473 +#: ../../godmode/users/configure_user.php:1312 +#: ../../godmode/users/configure_user.php:1326 +#: ../../godmode/users/configure_user.php:1519 +#: ../../godmode/users/configure_user.php:1531 #: ../../godmode/agentes/status_monitor_custom_fields.php:218 #: ../../godmode/agentes/status_monitor_custom_fields.php:266 #: ../../godmode/agentes/module_manager_editor_plugin.php:55 @@ -4193,10 +4198,10 @@ msgstr "Parent" #: ../../godmode/massive/massive_edit_modules.php:1829 #: ../../godmode/alerts/alert_actions.php:291 #: ../../godmode/alerts/alert_list.list.php:762 -#: ../../godmode/alerts/alert_commands.php:303 -#: ../../godmode/alerts/alert_commands.php:317 -#: ../../godmode/alerts/alert_commands.php:462 -#: ../../godmode/alerts/alert_commands.php:475 +#: ../../godmode/alerts/alert_commands.php:304 +#: ../../godmode/alerts/alert_commands.php:318 +#: ../../godmode/alerts/alert_commands.php:463 +#: ../../godmode/alerts/alert_commands.php:476 #: ../../godmode/alerts/configure_alert_template.php:650 #: ../../godmode/alerts/configure_alert_template.php:777 #: ../../godmode/alerts/configure_alert_template.php:798 @@ -4204,6 +4209,10 @@ msgstr "Parent" #: ../../godmode/setup/setup_visuals.php:401 #: ../../godmode/setup/setup_visuals.php:420 #: ../../godmode/setup/setup_visuals.php:950 +#: ../../godmode/setup/setup_general.php:903 +#: ../../godmode/setup/setup_general.php:920 +#: ../../godmode/setup/setup_general.php:929 +#: ../../godmode/setup/setup_general.php:946 #: ../../godmode/reporting/create_container.php:489 #: ../../godmode/reporting/graph_builder.graph_editor.php:329 #: ../../godmode/reporting/reporting_builder.item_editor.php:208 @@ -4227,7 +4236,7 @@ msgstr "Parent" #: ../../godmode/reporting/visual_console_builder.wizard.php:732 #: ../../godmode/reporting/visual_console_builder.wizard.php:742 #: ../../godmode/reporting/visual_console_builder.wizard.php:774 -#: ../../godmode/events/event_edit_filter.php:740 +#: ../../godmode/events/event_edit_filter.php:799 #: ../../godmode/events/custom_events.php:200 #: ../../godmode/events/custom_events.php:248 #: ../../godmode/wizards/HostDevices.class.php:1102 @@ -4238,23 +4247,23 @@ msgstr "Parent" #: ../../include/functions_visual_map_editor.php:957 #: ../../include/functions_visual_map_editor.php:1010 #: ../../include/functions_visual_map_editor.php:1072 -#: ../../include/functions.php:1093 ../../include/functions_cron.php:682 +#: ../../include/functions.php:1119 ../../include/functions_cron.php:682 #: ../../include/functions_networkmap.php:1519 #: ../../include/ajax/planned_downtime.ajax.php:85 -#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:589 +#: ../../include/ajax/custom_fields.php:670 ../../include/ajax/events.php:590 #: ../../include/functions_integriaims.php:135 -#: ../../include/functions_profile.php:318 -#: ../../include/functions_profile.php:336 -#: ../../include/functions_profile.php:351 +#: ../../include/functions_profile.php:332 +#: ../../include/functions_profile.php:350 +#: ../../include/functions_profile.php:365 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:318 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:364 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:399 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:632 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:644 -#: ../../include/rest-api/models/VisualConsole/Item.php:2087 -#: ../../include/rest-api/models/VisualConsole/Item.php:2206 -#: ../../include/rest-api/models/VisualConsole/Item.php:2324 -#: ../../include/rest-api/models/VisualConsole/Item.php:2446 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:622 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:634 +#: ../../include/rest-api/models/VisualConsole/Item.php:2088 +#: ../../include/rest-api/models/VisualConsole/Item.php:2207 +#: ../../include/rest-api/models/VisualConsole/Item.php:2325 +#: ../../include/rest-api/models/VisualConsole/Item.php:2447 #: ../../include/functions_html.php:376 ../../include/functions_html.php:816 #: ../../include/functions_html.php:1239 ../../include/functions_html.php:1291 #: ../../include/functions_html.php:1338 ../../include/functions_html.php:1339 @@ -4268,7 +4277,7 @@ msgstr "Parent" #: ../../include/class/NetworkMap.class.php:3347 #: ../../include/class/NetworkMap.class.php:3363 #: ../../include/class/SnmpConsole.class.php:377 -#: ../../include/class/SnmpConsole.class.php:1372 +#: ../../include/class/SnmpConsole.class.php:1373 #: ../../include/class/AgentWizard.class.php:728 #: ../../include/class/AgentWizard.class.php:784 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:365 @@ -4294,25 +4303,25 @@ msgstr "Parent" #: ../../include/lib/Dashboard/Widgets/single_graph.php:352 #: ../../include/lib/Dashboard/Widgets/reports.php:552 #: ../../include/lib/Dashboard/Widgets/top_n.php:241 -#: ../../include/functions_events.php:3381 -#: ../../operation/users/user_edit.php:405 -#: ../../operation/users/user_edit.php:417 -#: ../../operation/users/user_edit.php:455 +#: ../../include/functions_events.php:3360 +#: ../../operation/users/user_edit.php:479 #: ../../operation/users/user_edit.php:491 -#: ../../operation/users/user_edit.php:506 -#: ../../operation/users/user_edit.php:923 -#: ../../operation/users/user_edit.php:930 -#: ../../operation/users/user_edit.php:939 -#: ../../operation/users/user_edit.php:946 +#: ../../operation/users/user_edit.php:529 +#: ../../operation/users/user_edit.php:565 +#: ../../operation/users/user_edit.php:580 +#: ../../operation/users/user_edit.php:997 +#: ../../operation/users/user_edit.php:1004 +#: ../../operation/users/user_edit.php:1013 +#: ../../operation/users/user_edit.php:1020 #: ../../operation/agentes/pandora_networkmap.editor.php:367 #: ../../operation/agentes/pandora_networkmap.view.php:211 -#: ../../operation/agentes/ver_agente.php:1176 -#: ../../operation/agentes/ver_agente.php:1232 -#: ../../operation/agentes/ver_agente.php:1247 -#: ../../operation/snmpconsole/snmp_browser.php:389 -#: ../../operation/snmpconsole/snmp_browser.php:404 -#: ../../operation/snmpconsole/snmp_browser.php:414 -#: ../../operation/snmpconsole/snmp_browser.php:533 +#: ../../operation/agentes/ver_agente.php:1182 +#: ../../operation/agentes/ver_agente.php:1238 +#: ../../operation/agentes/ver_agente.php:1253 +#: ../../operation/snmpconsole/snmp_browser.php:387 +#: ../../operation/snmpconsole/snmp_browser.php:402 +#: ../../operation/snmpconsole/snmp_browser.php:412 +#: ../../operation/snmpconsole/snmp_browser.php:531 #: ../../operation/gis_maps/render_view.php:163 #: ../../operation/incidents/list_integriaims_incidents.php:530 #: ../../operation/incidents/list_integriaims_incidents.php:534 @@ -4331,7 +4340,7 @@ msgstr "Créer une carte visuelle" #: ../../godmode/agentes/configurar_agente.php:384 #: ../../godmode/agentes/modificar_agente.php:82 #: ../../godmode/agentes/modificar_agente.php:832 -#: ../../godmode/agentes/modificar_agente.php:836 ../../godmode/menu.php:571 +#: ../../godmode/agentes/modificar_agente.php:836 ../../godmode/menu.php:574 #: ../../godmode/setup/setup_visuals.php:163 #: ../../godmode/setup/setup_visuals.php:228 #: ../../godmode/setup/setup_visuals.php:282 @@ -4346,13 +4355,13 @@ msgstr "Créer une carte visuelle" #: ../../godmode/setup/setup_visuals.php:609 #: ../../godmode/reporting/visual_console_builder.php:851 #: ../../godmode/module_library/module_library_view.php:59 -#: ../../include/lib/ClusterViewer/ClusterManager.php:604 +#: ../../include/lib/ClusterViewer/ClusterManager.php:601 #: ../../operation/tree.php:187 ../../operation/visual_console/view.php:200 #: ../../operation/visual_console/legacy_view.php:193 #: ../../operation/agentes/estado_agente.php:857 #: ../../operation/agentes/estado_agente.php:859 #: ../../operation/agentes/status_monitor.php:75 -#: ../../operation/agentes/ver_agente.php:1928 +#: ../../operation/agentes/ver_agente.php:1946 msgid "View" msgstr "Vue" @@ -4425,7 +4434,7 @@ msgstr "Nouvelle console visuelle" #: ../../enterprise/godmode/reporting/visual_console_template.php:122 #: ../../enterprise/godmode/reporting/visual_console_template.php:128 #: ../../extensions/resource_exportation.php:436 -#: ../../godmode/users/configure_user.php:1290 +#: ../../godmode/users/configure_user.php:1349 #: ../../godmode/massive/massive_edit_users.php:275 #: ../../godmode/reporting/visual_console_builder.php:882 #: ../../godmode/reporting/map_builder.php:134 @@ -4433,9 +4442,9 @@ msgstr "Nouvelle console visuelle" #: ../../godmode/reporting/visual_console_favorite.php:131 #: ../../godmode/reporting/visual_console_favorite.php:137 #: ../../include/lib/Dashboard/Widgets/maps_made_by_user.php:360 -#: ../../operation/users/user_edit.php:360 -#: ../../operation/visual_console/view.php:232 ../../operation/menu.php:182 -#: ../../operation/menu.php:186 +#: ../../operation/users/user_edit.php:434 +#: ../../operation/visual_console/view.php:232 ../../operation/menu.php:186 +#: ../../operation/menu.php:190 msgid "Visual console" msgstr "Console visuelle" @@ -4463,6 +4472,7 @@ msgstr "Aucun serveur configuré dans la base de données" #: ../../godmode/reporting/reporting_builder.item_editor.php:78 #: ../../godmode/servers/servers.build_table.php:82 #: ../../include/functions_reporting_html.php:1593 +#: ../../include/functions_menu.php:834 #: ../../include/functions_snmp_browser.php:746 #: ../../general/reporting_console_node.php:69 msgid "Version" @@ -4488,7 +4498,7 @@ msgstr "Version" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:230 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:244 #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:311 -#: ../../enterprise/include/functions_reporting_pdf.php:886 +#: ../../enterprise/include/functions_reporting_pdf.php:887 #: ../../enterprise/include/functions_policies.php:3723 #: ../../enterprise/operation/agentes/tag_view.php:606 #: ../../enterprise/operation/services/massive/services.create.php:989 @@ -4496,7 +4506,7 @@ msgstr "Version" #: ../../enterprise/operation/services/services.service_map.php:163 #: ../../extensions/agents_modules.php:758 #: ../../godmode/agentes/configurar_agente.php:417 -#: ../../godmode/agentes/configurar_agente.php:735 +#: ../../godmode/agentes/configurar_agente.php:748 #: ../../godmode/agentes/modificar_agente.php:814 #: ../../godmode/agentes/planned_downtime.list.php:85 #: ../../godmode/agentes/planned_downtime.list.php:115 @@ -4516,7 +4526,7 @@ msgstr "Version" #: ../../mobile/operation/modules.php:236 ../../mobile/operation/home.php:88 #: ../../mobile/operation/agent.php:327 #: ../../include/functions_reporting_html.php:2005 -#: ../../include/functions_reporting_html.php:5556 +#: ../../include/functions_reporting_html.php:5575 #: ../../include/functions_reports.php:733 #: ../../include/functions_reports.php:737 #: ../../include/functions_reports.php:741 @@ -4669,7 +4679,7 @@ msgid "Successfully update" msgstr "Mis à jour correctement" #: ../../enterprise/meta/advanced/metasetup.visual.php:98 -#: ../../godmode/menu.php:353 ../../godmode/setup/setup.php:137 +#: ../../godmode/menu.php:356 ../../godmode/setup/setup.php:137 #: ../../godmode/setup/setup.php:266 msgid "Visual styles" msgstr "Styles visuels" @@ -4677,7 +4687,7 @@ msgstr "Styles visuels" #: ../../enterprise/meta/advanced/metasetup.visual.php:105 #: ../../enterprise/meta/include/functions_meta.php:1329 #: ../../godmode/setup/setup_visuals.php:1310 -#: ../../include/functions_config.php:962 +#: ../../include/functions_config.php:943 msgid "Date format string" msgstr "Format de la date" @@ -4708,19 +4718,19 @@ msgstr "Mode compact" #: ../../enterprise/meta/advanced/metasetup.visual.php:166 #: ../../godmode/setup/setup_visuals.php:699 -#: ../../include/functions_config.php:970 +#: ../../include/functions_config.php:951 msgid "Graph color #1" msgstr "Couleur du graphique #1" #: ../../enterprise/meta/advanced/metasetup.visual.php:176 #: ../../godmode/setup/setup_visuals.php:710 -#: ../../include/functions_config.php:974 +#: ../../include/functions_config.php:955 msgid "Graph color #2" msgstr "Couleur du graphique #2" #: ../../enterprise/meta/advanced/metasetup.visual.php:186 #: ../../godmode/setup/setup_visuals.php:721 -#: ../../include/functions_config.php:978 +#: ../../include/functions_config.php:959 msgid "Graph color #3" msgstr "Couleur du graphique #3" @@ -4749,18 +4759,18 @@ msgstr "Afficher le centile 95 dans les graphiques" #: ../../enterprise/meta/advanced/metasetup.visual.php:232 #: ../../enterprise/meta/include/functions_meta.php:1464 #: ../../godmode/setup/setup_visuals.php:809 -#: ../../include/functions_config.php:1010 +#: ../../include/functions_config.php:991 msgid "Value to interface graphics" msgstr "Valeur pour l'interface graphique" #: ../../enterprise/meta/advanced/metasetup.visual.php:242 #: ../../enterprise/meta/include/functions_meta.php:1477 -#: ../../godmode/users/configure_user.php:1363 +#: ../../godmode/users/configure_user.php:1422 #: ../../godmode/massive/massive_edit_users.php:264 #: ../../godmode/setup/setup_visuals.php:66 -#: ../../godmode/events/event_edit_filter.php:419 -#: ../../include/functions_config.php:1027 -#: ../../operation/users/user_edit.php:311 +#: ../../godmode/events/event_edit_filter.php:429 +#: ../../include/functions_config.php:1008 +#: ../../operation/users/user_edit.php:385 msgid "Block size for pagination" msgstr "Longueur de bloc pour la mise en page" @@ -4773,20 +4783,20 @@ msgstr "Nombre d'éléments dans le Graphique personnalisé" #: ../../enterprise/meta/advanced/metasetup.visual.php:265 #: ../../enterprise/meta/include/functions_meta.php:1487 #: ../../godmode/setup/setup_visuals.php:884 -#: ../../include/functions_config.php:1031 +#: ../../include/functions_config.php:1012 msgid "Use round corners" msgstr "Utiliser des coins arrondis" #: ../../enterprise/meta/advanced/metasetup.visual.php:273 #: ../../enterprise/meta/include/functions_meta.php:1498 #: ../../godmode/setup/setup_visuals.php:893 -#: ../../include/functions_config.php:1035 +#: ../../include/functions_config.php:1016 msgid "Chart fit to content" msgstr "Table adapté au contenu" #: ../../enterprise/meta/advanced/metasetup.visual.php:281 #: ../../enterprise/meta/include/functions_meta.php:1509 -#: ../../include/functions_config.php:1247 +#: ../../include/functions_config.php:1228 msgid "Disable help" msgstr "Désactiver l'aide" @@ -4818,8 +4828,10 @@ msgstr "Désactiver l'aide" #: ../../enterprise/godmode/policies/policy_queue.php:608 #: ../../enterprise/godmode/policies/policy_queue.php:619 #: ../../enterprise/godmode/policies/policy_queue.php:692 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:367 -#: ../../enterprise/godmode/policies/policy_agents.php:833 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:369 +#: ../../enterprise/godmode/policies/policy_agents.php:506 +#: ../../enterprise/godmode/policies/policy_agents.php:524 +#: ../../enterprise/godmode/policies/policy_agents.php:869 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:131 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:264 #: ../../enterprise/godmode/setup/setup_acl.php:487 @@ -4840,29 +4852,21 @@ msgstr "Désactiver l'aide" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2887 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2914 #: ../../enterprise/include/class/ManageBackups.class.php:191 -#: ../../enterprise/include/functions_metaconsole.php:881 #: ../../enterprise/include/functions_metaconsole.php:882 -#: ../../enterprise/include/functions_metaconsole.php:1239 -#: ../../enterprise/include/functions_ipam.php:1688 -#: ../../enterprise/include/functions_ipam.php:1733 +#: ../../enterprise/include/functions_metaconsole.php:883 +#: ../../enterprise/include/functions_metaconsole.php:1240 +#: ../../enterprise/include/functions_ipam.php:1696 +#: ../../enterprise/include/functions_ipam.php:1741 #: ../../enterprise/operation/agentes/tag_view.php:145 #: ../../enterprise/operation/agentes/tag_view.php:171 #: ../../enterprise/operation/agentes/tag_view.php:237 #: ../../enterprise/operation/agentes/tag_view.php:301 #: ../../enterprise/operation/agentes/tag_view.php:304 #: ../../enterprise/operation/agentes/tag_view.php:390 -#: ../../enterprise/operation/agentes/agent_inventory.php:122 #: ../../enterprise/operation/log/log_viewer.php:621 #: ../../enterprise/operation/log/log_viewer.php:639 #: ../../enterprise/operation/log/log_viewer.php:689 #: ../../enterprise/operation/snmpconsole/snmp_view.php:33 -#: ../../enterprise/operation/inventory/inventory.php:75 -#: ../../enterprise/operation/inventory/inventory.php:76 -#: ../../enterprise/operation/inventory/inventory.php:155 -#: ../../enterprise/operation/inventory/inventory.php:156 -#: ../../enterprise/operation/inventory/inventory.php:332 -#: ../../enterprise/operation/inventory/inventory.php:360 -#: ../../enterprise/operation/inventory/inventory.php:369 #: ../../extensions/agents_modules.php:416 #: ../../extensions/files_repo/files_repo_form.php:46 #: ../../godmode/modules/manage_network_templates_form.php:303 @@ -4882,9 +4886,9 @@ msgstr "Désactiver l'aide" #: ../../godmode/alerts/alert_list.list.php:146 #: ../../godmode/alerts/alert_list.list.php:155 #: ../../godmode/alerts/alert_templates.php:308 -#: ../../godmode/alerts/alert_list.php:467 -#: ../../godmode/alerts/alert_list.php:516 -#: ../../godmode/alerts/alert_list.php:530 ../../godmode/setup/gis_step_2.php:218 +#: ../../godmode/alerts/alert_list.php:485 +#: ../../godmode/alerts/alert_list.php:534 +#: ../../godmode/alerts/alert_list.php:548 ../../godmode/setup/gis_step_2.php:218 #: ../../godmode/setup/setup_visuals.php:951 #: ../../godmode/reporting/reporting_builder.list_items.php:209 #: ../../godmode/reporting/reporting_builder.list_items.php:211 @@ -4905,16 +4909,16 @@ msgstr "Désactiver l'aide" #: ../../godmode/reporting/reporting_builder.item_editor.php:3903 #: ../../godmode/reporting/visual_console_builder.wizard.php:340 #: ../../godmode/reporting/visual_console_builder.wizard.php:354 -#: ../../godmode/events/event_edit_filter.php:340 -#: ../../godmode/events/event_edit_filter.php:355 -#: ../../godmode/events/event_edit_filter.php:647 +#: ../../godmode/events/event_edit_filter.php:350 +#: ../../godmode/events/event_edit_filter.php:365 +#: ../../godmode/events/event_edit_filter.php:657 #: ../../mobile/operation/agents.php:56 ../../mobile/operation/modules.php:68 #: ../../mobile/operation/modules.php:289 ../../mobile/operation/modules.php:304 #: ../../mobile/operation/alerts.php:65 ../../mobile/operation/alerts.php:72 #: ../../mobile/operation/events.php:974 ../../mobile/operation/events.php:984 #: ../../mobile/operation/events.php:1460 ../../mobile/operation/events.php:1489 -#: ../../include/functions.php:1091 ../../include/functions.php:1351 -#: ../../include/ajax/events.php:518 ../../include/functions_groupview.php:96 +#: ../../include/functions.php:1117 ../../include/functions.php:1377 +#: ../../include/ajax/events.php:519 ../../include/functions_groupview.php:96 #: ../../include/functions_modules.php:3576 #: ../../include/functions_modules.php:3578 ../../include/functions_users.php:420 #: ../../include/functions_users.php:678 @@ -4928,8 +4932,8 @@ msgstr "Désactiver l'aide" #: ../../include/class/SnmpConsole.class.php:371 #: ../../include/class/AuditLog.class.php:202 #: ../../include/class/AuditLog.class.php:212 -#: ../../include/functions_reporting.php:3121 -#: ../../include/functions_reporting.php:3218 +#: ../../include/functions_reporting.php:3239 +#: ../../include/functions_reporting.php:3336 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:422 #: ../../include/lib/Dashboard/Widgets/events_list.php:412 #: ../../include/lib/Dashboard/Widgets/tree_view.php:384 @@ -4940,6 +4944,7 @@ msgstr "Désactiver l'aide" #: ../../operation/agentes/status_monitor.php:651 #: ../../operation/agentes/estado_monitores.php:520 #: ../../operation/agentes/estado_monitores.php:565 +#: ../../operation/agentes/agent_inventory.php:122 #: ../../operation/agentes/alerts_status.functions.php:96 #: ../../operation/agentes/alerts_status.functions.php:115 #: ../../operation/agentes/alerts_status.functions.php:125 @@ -4948,6 +4953,13 @@ msgstr "Désactiver l'aide" #: ../../operation/incidents/list_integriaims_incidents.php:337 #: ../../operation/incidents/list_integriaims_incidents.php:354 #: ../../operation/incidents/list_integriaims_incidents.php:365 +#: ../../operation/inventory/inventory.php:75 +#: ../../operation/inventory/inventory.php:76 +#: ../../operation/inventory/inventory.php:158 +#: ../../operation/inventory/inventory.php:159 +#: ../../operation/inventory/inventory.php:335 +#: ../../operation/inventory/inventory.php:363 +#: ../../operation/inventory/inventory.php:372 #: ../../operation/events/events.php:810 ../../operation/events/events.php:1670 #: ../../operation/events/events.php:1759 ../../operation/events/events.php:1990 #: ../../general/subselect_data_module.php:62 @@ -4999,11 +5011,11 @@ msgstr "Type de graphiques de module" #: ../../godmode/reporting/create_container.php:358 #: ../../godmode/reporting/graph_builder.main.php:214 #: ../../include/functions_visual_map_editor.php:558 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:652 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:642 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:352 #: ../../operation/agentes/graphs.php:236 ../../operation/agentes/graphs.php:243 #: ../../operation/agentes/graphs.php:408 ../../operation/agentes/graphs.php:426 -#: ../../operation/reporting/graph_viewer.php:370 +#: ../../operation/reporting/graph_viewer.php:342 msgid "Area" msgstr "Zone" @@ -5017,12 +5029,12 @@ msgstr "Zone" #: ../../include/functions_visual_map_editor.php:72 #: ../../include/functions_visual_map_editor.php:557 #: ../../include/functions_visual_map_editor.php:1399 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:651 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:641 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:354 #: ../../operation/visual_console/view.php:363 #: ../../operation/agentes/graphs.php:238 ../../operation/agentes/graphs.php:244 #: ../../operation/agentes/graphs.php:416 ../../operation/agentes/graphs.php:430 -#: ../../operation/reporting/graph_viewer.php:372 +#: ../../operation/reporting/graph_viewer.php:344 msgid "Line" msgstr "Ligne" @@ -5039,8 +5051,8 @@ msgstr "Nombre d'éléments récupérés pour chaque instance dans certaines vue #: ../../enterprise/meta/advanced/metasetup.visual.php:849 #: ../../enterprise/meta/advanced/metasetup.visual.php:850 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:327 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:439 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:453 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:466 #: ../../enterprise/include/ajax/log_viewer.ajax.php:274 #: ../../godmode/snmpconsole/snmp_alert.php:1102 #: ../../godmode/setup/setup_visuals.php:1031 @@ -5048,12 +5060,12 @@ msgstr "Nombre d'éléments récupérés pour chaque instance dans certaines vue #: ../../godmode/setup/setup_visuals.php:1417 #: ../../include/functions_visual_map_editor.php:1223 #: ../../include/functions_visual_map_editor.php:1224 -#: ../../include/functions.php:495 ../../include/functions.php:626 -#: ../../include/ajax/events.php:2256 ../../include/ajax/events.php:2257 -#: ../../include/ajax/events.php:2258 ../../include/ajax/events.php:2259 -#: ../../include/ajax/events.php:2263 ../../include/ajax/events.php:2264 -#: ../../include/ajax/events.php:2265 ../../include/ajax/events.php:2266 +#: ../../include/functions.php:499 ../../include/functions.php:630 #: ../../include/ajax/events.php:2267 ../../include/ajax/events.php:2268 +#: ../../include/ajax/events.php:2269 ../../include/ajax/events.php:2270 +#: ../../include/ajax/events.php:2274 ../../include/ajax/events.php:2275 +#: ../../include/ajax/events.php:2276 ../../include/ajax/events.php:2277 +#: ../../include/ajax/events.php:2278 ../../include/ajax/events.php:2279 #: ../../include/functions_html.php:2103 #: ../../include/class/AgentsAlerts.class.php:387 #: ../../operation/events/sound_events.php:199 @@ -5084,15 +5096,15 @@ msgstr "secondes" #: ../../include/functions_visual_map_editor.php:1226 #: ../../include/functions_visual_map_editor.php:1227 #: ../../include/functions_visual_map_editor.php:1228 -#: ../../include/functions.php:499 ../../include/functions.php:630 +#: ../../include/functions.php:503 ../../include/functions.php:634 #: ../../include/functions_html.php:2104 msgid "minutes" msgstr "minutes" #: ../../enterprise/meta/advanced/metasetup.visual.php:384 #: ../../enterprise/include/ajax/log_viewer.ajax.php:278 -#: ../../godmode/setup/setup_visuals.php:1419 ../../include/functions.php:500 -#: ../../include/functions.php:631 ../../include/functions_snmp.php:402 +#: ../../godmode/setup/setup_visuals.php:1419 ../../include/functions.php:504 +#: ../../include/functions.php:635 ../../include/functions_snmp.php:402 #: ../../include/functions_html.php:2105 msgid "hours" msgstr "heures" @@ -5100,20 +5112,20 @@ msgstr "heures" #: ../../enterprise/meta/advanced/metasetup.visual.php:385 #: ../../enterprise/include/ajax/log_viewer.ajax.php:280 #: ../../godmode/db/db_main.php:86 ../../godmode/db/db_main.php:92 -#: ../../godmode/setup/setup_visuals.php:1420 ../../include/functions.php:496 -#: ../../include/functions.php:627 ../../include/functions_html.php:2106 +#: ../../godmode/setup/setup_visuals.php:1420 ../../include/functions.php:500 +#: ../../include/functions.php:631 ../../include/functions_html.php:2106 msgid "days" msgstr "jours" #: ../../enterprise/meta/advanced/metasetup.visual.php:386 -#: ../../godmode/setup/setup_visuals.php:1421 ../../include/functions.php:497 -#: ../../include/functions.php:628 ../../include/functions_html.php:2108 +#: ../../godmode/setup/setup_visuals.php:1421 ../../include/functions.php:501 +#: ../../include/functions.php:632 ../../include/functions_html.php:2108 msgid "months" msgstr "mois" #: ../../enterprise/meta/advanced/metasetup.visual.php:387 -#: ../../godmode/setup/setup_visuals.php:1422 ../../include/functions.php:498 -#: ../../include/functions.php:629 ../../include/functions_html.php:2109 +#: ../../godmode/setup/setup_visuals.php:1422 ../../include/functions.php:502 +#: ../../include/functions.php:633 ../../include/functions_html.php:2109 msgid "years" msgstr "années" @@ -5128,14 +5140,13 @@ msgstr "Ajouter une nouvelle valeur personnalisée aux intervalles" #: ../../enterprise/meta/include/functions_wizard_meta.php:1365 #: ../../enterprise/godmode/agentes/collection_manager.php:113 #: ../../enterprise/godmode/agentes/collection_manager.php:142 -#: ../../enterprise/godmode/agentes/inventory_manager.php:185 #: ../../enterprise/godmode/agentes/plugins_manager.php:163 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:230 #: ../../enterprise/godmode/policies/policy_plugins.php:162 #: ../../enterprise/godmode/policies/policy_alerts.php:605 #: ../../enterprise/godmode/policies/policy_alerts.php:670 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:616 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:712 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:618 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:714 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:263 #: ../../enterprise/godmode/policies/policy_collections.php:267 #: ../../enterprise/godmode/massive/massive_edit_tags_policy.php:168 @@ -5166,6 +5177,7 @@ msgstr "Ajouter une nouvelle valeur personnalisée aux intervalles" #: ../../extensions/files_repo/files_repo_form.php:105 #: ../../godmode/modules/manage_network_templates_form.php:347 #: ../../godmode/users/configure_profile.php:403 +#: ../../godmode/agentes/inventory_manager.php:185 #: ../../godmode/agentes/planned_downtime.editor.php:1168 #: ../../godmode/agentes/planned_downtime.editor.php:1341 #: ../../godmode/snmpconsole/snmp_alert.php:1494 @@ -5176,8 +5188,8 @@ msgstr "Ajouter une nouvelle valeur personnalisée aux intervalles" #: ../../godmode/setup/setup_visuals.php:1447 #: ../../godmode/reporting/graph_builder.graph_editor.php:352 #: ../../godmode/reporting/visual_console_builder.wizard.php:531 -#: ../../godmode/events/event_edit_filter.php:555 -#: ../../godmode/events/event_edit_filter.php:608 +#: ../../godmode/events/event_edit_filter.php:565 +#: ../../godmode/events/event_edit_filter.php:618 #: ../../godmode/servers/plugin.php:890 #: ../../include/functions_notifications.php:962 #: ../../include/class/SatelliteAgent.class.php:1168 @@ -5191,7 +5203,7 @@ msgstr "Ajouter" #: ../../enterprise/meta/advanced/metasetup.visual.php:420 #: ../../enterprise/meta/include/functions_meta.php:1798 #: ../../godmode/setup/setup_visuals.php:1432 -#: ../../include/functions_config.php:1418 +#: ../../include/functions_config.php:1399 msgid "Delete interval" msgstr "Supprimer intervalle" @@ -5202,35 +5214,35 @@ msgid "Show only the group name" msgstr "Afficher seulement le nom du groupe" #: ../../enterprise/meta/advanced/metasetup.visual.php:456 -#: ../../include/functions_config.php:1275 +#: ../../include/functions_config.php:1256 msgid "Show the group name instead the group icon." msgstr "Afficher le nom du groupe au lieu de l'icône du groupe" #: ../../enterprise/meta/advanced/metasetup.visual.php:466 #: ../../enterprise/meta/include/functions_meta.php:1890 #: ../../godmode/setup/setup_visuals.php:88 -#: ../../include/functions_config.php:1299 +#: ../../include/functions_config.php:1280 msgid "Display data of proc modules in other format" msgstr "Affichage des données des modules proc sous un format différent" #: ../../enterprise/meta/advanced/metasetup.visual.php:474 #: ../../enterprise/meta/include/functions_meta.php:1900 #: ../../godmode/setup/setup_visuals.php:97 -#: ../../include/functions_config.php:1303 +#: ../../include/functions_config.php:1284 msgid "Display text proc modules have state is ok" msgstr "Texte à afficher lorsque l'état du module proc est OK" #: ../../enterprise/meta/advanced/metasetup.visual.php:484 #: ../../enterprise/meta/include/functions_meta.php:1910 #: ../../godmode/setup/setup_visuals.php:101 -#: ../../include/functions_config.php:1307 +#: ../../include/functions_config.php:1288 msgid "Display text when proc modules have state critical" msgstr "Texte à afficher lorsque l'état du module proc est critique" #: ../../enterprise/meta/advanced/metasetup.visual.php:503 #: ../../enterprise/meta/include/functions_meta.php:1629 #: ../../godmode/setup/setup_visuals.php:191 -#: ../../include/functions_config.php:1055 +#: ../../include/functions_config.php:1036 msgid "Custom favicon" msgstr "Favicon personnalisé" @@ -5282,7 +5294,7 @@ msgstr "Splash personnalisé (connexion)" #: ../../enterprise/meta/advanced/metasetup.visual.php:795 #: ../../enterprise/meta/include/functions_meta.php:1659 #: ../../godmode/setup/setup_visuals.php:508 -#: ../../include/functions_config.php:1131 +#: ../../include/functions_config.php:1112 msgid "Product name" msgstr "Nom du produit" @@ -5290,7 +5302,7 @@ msgstr "Nom du produit" #: ../../enterprise/meta/advanced/metasetup.visual.php:805 #: ../../enterprise/meta/include/functions_meta.php:1669 #: ../../godmode/setup/setup_visuals.php:514 -#: ../../include/functions_config.php:1135 +#: ../../include/functions_config.php:1116 msgid "Copyright notice" msgstr "Mention de copyright" @@ -5367,7 +5379,7 @@ msgstr "Pas de cache" #: ../../enterprise/meta/advanced/metasetup.visual.php:874 #: ../../enterprise/meta/include/functions_meta.php:1937 #: ../../godmode/setup/setup_visuals.php:1056 -#: ../../include/functions_config.php:1179 +#: ../../include/functions_config.php:1160 msgid "Default interval for refresh on Visual Console" msgstr "Intervalle de rafraîchissement par défaut sur la console visuelle" @@ -5398,7 +5410,7 @@ msgstr "Utilisez toujours 1024" #: ../../enterprise/meta/advanced/metasetup.visual.php:923 #: ../../enterprise/meta/include/functions_meta.php:1942 #: ../../godmode/setup/setup_visuals.php:1098 -#: ../../include/functions_config.php:1195 +#: ../../include/functions_config.php:1176 msgid "Mobile view not allow visual console orientation" msgstr "Non permettre l’orientation de la console visuelle dans la vue mobile" @@ -5435,14 +5447,14 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:971 #: ../../enterprise/meta/include/functions_meta.php:1424 #: ../../godmode/setup/setup_visuals.php:1151 -#: ../../include/functions_config.php:1449 +#: ../../include/functions_config.php:1430 msgid "PDF font size (px)" msgstr "Taille de la police PDF (px)" #: ../../enterprise/meta/advanced/metasetup.visual.php:974 #: ../../enterprise/meta/include/functions_meta.php:1414 #: ../../godmode/setup/setup_visuals.php:1156 -#: ../../include/functions_config.php:1445 +#: ../../include/functions_config.php:1426 msgid "HTML font size for SLA (em)" msgstr "Taille de la police HTML pour SLA (em)" @@ -5463,14 +5475,14 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.visual.php:996 #: ../../enterprise/meta/include/functions_meta.php:1444 #: ../../godmode/setup/setup_visuals.php:1475 -#: ../../include/functions_config.php:1477 +#: ../../include/functions_config.php:1458 msgid "CSV divider" msgstr "Séparateur CSV" #: ../../enterprise/meta/advanced/metasetup.visual.php:1036 #: ../../enterprise/meta/include/functions_meta.php:1454 #: ../../godmode/setup/setup_visuals.php:1521 -#: ../../include/functions_config.php:1481 +#: ../../include/functions_config.php:1462 msgid "CSV decimal separator" msgstr "Séparateur décimale CSV" @@ -5503,12 +5515,12 @@ msgstr "" #: ../../godmode/setup/setup_visuals.php:1217 #: ../../godmode/setup/setup_visuals.php:1237 #: ../../godmode/setup/setup_visuals.php:1253 -#: ../../include/functions_config.php:1453 -#: ../../include/functions_config.php:1457 -#: ../../include/functions_config.php:1461 -#: ../../include/functions_config.php:1465 -#: ../../include/functions_config.php:1469 -#: ../../include/functions_config.php:1473 +#: ../../include/functions_config.php:1434 +#: ../../include/functions_config.php:1438 +#: ../../include/functions_config.php:1442 +#: ../../include/functions_config.php:1446 +#: ../../include/functions_config.php:1450 +#: ../../include/functions_config.php:1454 msgid "Custom report front" msgstr "Page de couverture du rapport personnalisé" @@ -5518,8 +5530,8 @@ msgstr "Page de couverture du rapport personnalisé" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:127 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:131 #: ../../godmode/setup/setup_visuals.php:1194 -#: ../../include/functions_config.php:1059 -#: ../../include/functions_config.php:1461 +#: ../../include/functions_config.php:1040 +#: ../../include/functions_config.php:1442 msgid "Custom logo" msgstr "Logo personnalisé" @@ -5539,7 +5551,7 @@ msgstr "" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:153 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:143 #: ../../godmode/setup/setup_visuals.php:1217 -#: ../../include/functions_config.php:1465 +#: ../../include/functions_config.php:1446 msgid "Header" msgstr "En-tête" @@ -5548,7 +5560,7 @@ msgstr "En-tête" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:163 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:153 #: ../../godmode/setup/setup_visuals.php:1237 -#: ../../include/functions_config.php:1469 +#: ../../include/functions_config.php:1450 msgid "First page" msgstr "Première page" @@ -5621,12 +5633,12 @@ msgid " please remove configuration file from target node." msgstr " veuillez supprimer le fichier de configuration du nœud cible." #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:166 -#: ../../enterprise/include/functions_metaconsole.php:2856 +#: ../../enterprise/include/functions_metaconsole.php:2857 msgid "There are differences between MR versions" msgstr "Il y a des différences entre les versions MR" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:170 -#: ../../enterprise/include/functions_metaconsole.php:2849 +#: ../../enterprise/include/functions_metaconsole.php:2850 msgid "Target server ip address is set" msgstr "L'adresse IP du serveur cible est configuré" @@ -5682,8 +5694,8 @@ msgstr "Serveur source" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:472 #: ../../enterprise/godmode/policies/policy_agents.php:454 #: ../../enterprise/godmode/policies/policy_agents.php:485 -#: ../../enterprise/godmode/policies/policy_agents.php:549 -#: ../../enterprise/godmode/policies/policy_agents.php:814 +#: ../../enterprise/godmode/policies/policy_agents.php:585 +#: ../../enterprise/godmode/policies/policy_agents.php:850 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:115 #: ../../godmode/massive/massive_copy_modules.php:112 #: ../../godmode/massive/massive_copy_modules.php:265 @@ -5706,8 +5718,8 @@ msgstr "Récursion du groupe" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:359 #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:475 -#: ../../enterprise/godmode/policies/policy_agents.php:499 -#: ../../enterprise/godmode/policies/policy_agents.php:513 +#: ../../enterprise/godmode/policies/policy_agents.php:535 +#: ../../enterprise/godmode/policies/policy_agents.php:549 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:239 #: ../../enterprise/godmode/reporting/reporting_builder.template_wizard.php:391 #: ../../enterprise/godmode/reporting/visual_console_template_wizard.php:264 @@ -5819,8 +5831,8 @@ msgstr "Vérifier que l’adresse IP du serveur cible est définie" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:578 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:123 -#: ../../enterprise/include/functions_inventory.php:142 -#: ../../enterprise/include/functions_inventory.php:176 +#: ../../include/functions_inventory.php:142 +#: ../../include/functions_inventory.php:176 #: ../../include/functions_events.php:250 msgid "Agent alias" msgstr "Alias de l'agent" @@ -5851,8 +5863,8 @@ msgstr "Nœud cible" #: ../../godmode/alerts/alert_view.php:124 #: ../../godmode/setup/setup_integria.php:379 #: ../../godmode/setup/setup_integria.php:501 -#: ../../include/functions_reporting_html.php:5268 -#: ../../include/functions_events.php:4419 +#: ../../include/functions_reporting_html.php:5287 +#: ../../include/functions_events.php:4398 #: ../../operation/agentes/estado_generalagente.php:667 #: ../../operation/incidents/integriaims_export_csv.php:85 #: ../../operation/incidents/configure_integriaims_incident.php:296 @@ -5863,28 +5875,28 @@ msgid "Priority" msgstr "Priorité" #: ../../enterprise/meta/advanced/agents_setup.move_agents.php:582 -#: ../../enterprise/meta/include/functions_meta.php:2154 +#: ../../enterprise/meta/include/functions_meta.php:2135 #: ../../enterprise/include/class/CommandCenter.class.php:456 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:825 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1130 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1225 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1575 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1860 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2185 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2616 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2629 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2957 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3134 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3224 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3263 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3328 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:835 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1141 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1236 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1588 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1885 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2214 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2645 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2658 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2986 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3163 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3253 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3292 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3357 #: ../../godmode/alerts/configure_alert_template.php:228 #: ../../godmode/alerts/configure_alert_template.php:232 #: ../../godmode/alerts/configure_alert_template.php:249 #: ../../godmode/alerts/configure_alert_template.php:253 #: ../../godmode/alerts/configure_alert_template.php:270 #: ../../godmode/alerts/configure_alert_template.php:274 -#: ../../include/functions_config.php:1650 +#: ../../include/functions_config.php:1631 msgid "Step" msgstr "Étape" @@ -5921,10 +5933,10 @@ msgstr "Créant un agent dans le nœud cible" #: ../../enterprise/include/class/LogSource.class.php:800 #: ../../enterprise/include/class/ManageBackups.class.php:484 #: ../../enterprise/include/class/ManageBackups.class.php:489 -#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/include/functions_ux_console.php:483 #: ../../enterprise/operation/agentes/ux_console_view.php:210 -#: ../../enterprise/operation/agentes/ux_console_view.php:352 -#: ../../enterprise/operation/agentes/wux_console_view.php:452 +#: ../../enterprise/operation/agentes/ux_console_view.php:359 +#: ../../enterprise/operation/agentes/wux_console_view.php:431 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1060 #: ../../include/ajax/snmp_browser.ajax.php:259 #: ../../include/class/ConfigPEN.class.php:744 @@ -5932,7 +5944,7 @@ msgstr "Créant un agent dans le nœud cible" #: ../../include/class/SatelliteAgent.class.php:1076 #: ../../include/class/SatelliteAgent.class.php:1081 #: ../../include/class/HelpFeedBack.class.php:355 -#: ../../include/class/Diagnostics.class.php:2089 +#: ../../include/class/Diagnostics.class.php:2094 #: ../../include/class/CredentialStore.class.php:1619 #: ../../include/class/CredentialStore.class.php:1624 #: ../../include/class/ModuleTemplates.class.php:1425 @@ -5955,9 +5967,9 @@ msgstr "Échoué" #: ../../enterprise/godmode/policies/policy_queue.php:674 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:443 #: ../../enterprise/include/class/Omnishell.class.php:362 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4146 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4419 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4171 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4290 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4444 msgid "Finished" msgstr "Terminé" @@ -6012,9 +6024,9 @@ msgstr "Erreur de mise à jour de la chaîne de traduction" #: ../../enterprise/meta/advanced/metasetup.translate_string.php:174 #: ../../enterprise/extensions/translate_string.php:302 -#: ../../godmode/users/configure_user.php:1080 +#: ../../godmode/users/configure_user.php:1139 #: ../../godmode/massive/massive_edit_users.php:249 -#: ../../operation/users/user_edit.php:328 +#: ../../operation/users/user_edit.php:402 msgid "Language" msgstr "Langue" @@ -6036,19 +6048,15 @@ msgstr "Langue" #: ../../enterprise/godmode/modules/local_components.php:576 #: ../../enterprise/godmode/modules/local_components.php:601 #: ../../enterprise/godmode/agentes/collection_manager.php:48 -#: ../../enterprise/godmode/agentes/collections.php:414 +#: ../../enterprise/godmode/agentes/collections.php:426 #: ../../enterprise/godmode/policies/policy_collections.php:254 -#: ../../enterprise/godmode/policies/policy_agents.php:822 -#: ../../enterprise/godmode/policies/policy_agents.php:835 +#: ../../enterprise/godmode/policies/policy_agents.php:858 +#: ../../enterprise/godmode/policies/policy_agents.php:871 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:151 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:162 #: ../../enterprise/operation/agentes/tag_view.php:219 -#: ../../enterprise/operation/agentes/agent_inventory.php:138 -#: ../../enterprise/operation/agentes/agent_inventory.php:140 #: ../../enterprise/operation/log/log_viewer.php:514 #: ../../enterprise/operation/log/log_viewer.php:797 -#: ../../enterprise/operation/inventory/inventory.php:374 -#: ../../enterprise/operation/inventory/inventory.php:427 #: ../../enterprise/operation/services/services.treeview_services.php:134 #: ../../enterprise/operation/services/services.list.php:225 #: ../../enterprise/operation/services/services.list.php:318 @@ -6064,8 +6072,8 @@ msgstr "Langue" #: ../../enterprise/tools/ipam/ipam_vlan_config.php:439 #: ../../extensions/module_groups.php:283 #: ../../godmode/modules/manage_network_components.php:681 -#: ../../godmode/groups/group_list.php:785 -#: ../../godmode/groups/group_list.php:795 ../../godmode/users/user_list.php:462 +#: ../../godmode/groups/group_list.php:790 +#: ../../godmode/groups/group_list.php:800 ../../godmode/users/user_list.php:462 #: ../../godmode/users/user_list.php:472 #: ../../godmode/agentes/modificar_agente.php:363 #: ../../godmode/agentes/modificar_agente.php:372 @@ -6098,6 +6106,10 @@ msgstr "Langue" #: ../../operation/agentes/estado_agente.php:280 #: ../../operation/agentes/estado_agente.php:291 #: ../../operation/agentes/status_monitor.php:547 +#: ../../operation/agentes/agent_inventory.php:138 +#: ../../operation/agentes/agent_inventory.php:140 +#: ../../operation/inventory/inventory.php:377 +#: ../../operation/inventory/inventory.php:430 #: ../../general/ui/agents_list.php:100 ../../general/ui/agents_list.php:113 msgid "Search" msgstr "Rechercher" @@ -6107,7 +6119,7 @@ msgstr "Rechercher" #: ../../enterprise/extensions/translate_string.php:313 #: ../../enterprise/extensions/translate_string.php:314 #: ../../enterprise/godmode/agentes/collection_manager.php:42 -#: ../../enterprise/godmode/agentes/collections.php:410 +#: ../../enterprise/godmode/agentes/collections.php:422 #: ../../enterprise/godmode/policies/policies.php:330 #: ../../enterprise/godmode/policies/policy_collections.php:248 msgid "Free text for search (*)" @@ -6219,11 +6231,11 @@ msgstr "Afficher les relations de liste" #: ../../godmode/reporting/reporting_builder.item_editor.php:2662 #: ../../godmode/reporting/visual_console_builder.wizard.php:319 #: ../../include/functions_visual_map_editor.php:693 -#: ../../include/functions_reporting_html.php:944 +#: ../../include/functions_reporting_html.php:945 #: ../../include/functions_reporting_html.php:2371 #: ../../include/functions_reporting_html.php:4875 -#: ../../include/functions_reporting_html.php:5386 -#: ../../include/ajax/events.php:2077 ../../include/functions_graph.php:5398 +#: ../../include/functions_reporting_html.php:5405 +#: ../../include/ajax/events.php:2088 ../../include/functions_graph.php:5186 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:505 #: ../../include/functions_reports.php:1075 #: ../../include/functions_netflow.php:212 @@ -6241,7 +6253,6 @@ msgstr "Adresse du nœud" #: ../../enterprise/meta/advanced/metasetup.relations.php:550 #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:257 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:284 #: ../../enterprise/godmode/policies/policy_alerts.php:575 #: ../../enterprise/godmode/policies/policy_modules.php:1471 #: ../../enterprise/godmode/admin_access_logs.php:54 @@ -6263,11 +6274,12 @@ msgstr "Adresse du nœud" #: ../../enterprise/tools/ipam/ipam_list.php:663 #: ../../enterprise/tools/ipam/ipam_network_location_config.php:258 #: ../../godmode/modules/manage_nc_groups.php:243 +#: ../../godmode/modules/manage_inventory_modules.php:284 #: ../../godmode/modules/manage_network_components.php:758 #: ../../godmode/modules/manage_network_templates.php:250 -#: ../../godmode/agentes/agent_template.php:238 +#: ../../godmode/agentes/agent_template.php:239 #: ../../godmode/agentes/planned_downtime.editor.php:1294 -#: ../../godmode/agentes/module_manager.php:909 +#: ../../godmode/agentes/module_manager.php:910 #: ../../godmode/netflow/nf_item_list.php:178 #: ../../godmode/netflow/nf_edit.php:161 #: ../../godmode/snmpconsole/snmp_alert.php:1278 @@ -6287,8 +6299,8 @@ msgstr "Adresse du nœud" #: ../../godmode/events/event_filter.php:141 #: ../../mobile/operation/tactical.php:348 #: ../../include/functions_reporting_html.php:3357 -#: ../../include/functions_reporting_html.php:5906 -#: ../../include/functions.php:3073 ../../include/ajax/alert_list.ajax.php:294 +#: ../../include/functions_reporting_html.php:5925 +#: ../../include/functions.php:3099 ../../include/ajax/alert_list.ajax.php:294 #: ../../include/ajax/alert_list.ajax.php:319 #: ../../include/ajax/alert_list.ajax.php:495 #: ../../include/functions_profile.php:217 @@ -6317,7 +6329,7 @@ msgstr "Mots de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:93 #: ../../enterprise/meta/include/functions_meta.php:356 -#: ../../enterprise/godmode/setup/setup.php:383 +#: ../../enterprise/godmode/setup/setup.php:299 #: ../../include/functions_config.php:472 msgid "Enable password policy" msgstr "Activer la politique de mot de passe" @@ -6361,7 +6373,7 @@ msgstr "Activer la politique de mot de passe" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2339 #: ../../godmode/update_manager/update_manager.setup.php:372 -#: ../../godmode/users/configure_user.php:1279 +#: ../../godmode/users/configure_user.php:1338 #: ../../godmode/agentes/agent_conf_gis.php:126 #: ../../godmode/massive/massive_edit_agents.php:671 #: ../../godmode/massive/massive_edit_agents.php:1084 @@ -6385,7 +6397,7 @@ msgstr "Activer la politique de mot de passe" #: ../../include/functions_cron.php:688 ../../include/functions_profile.php:297 #: ../../include/functions_snmp.php:390 #: ../../include/class/SnmpConsole.class.php:463 -#: ../../operation/users/user_edit.php:324 +#: ../../operation/users/user_edit.php:398 #: ../../operation/netflow/nf_live_view.php:460 msgid "Yes" msgstr "Oui" @@ -6430,7 +6442,7 @@ msgstr "Oui" #: ../../enterprise/include/functions_reporting_csv.php:1990 #: ../../enterprise/include/functions_reporting.php:2339 #: ../../godmode/update_manager/update_manager.setup.php:373 -#: ../../godmode/users/configure_user.php:1280 +#: ../../godmode/users/configure_user.php:1339 #: ../../godmode/agentes/agent_conf_gis.php:127 #: ../../godmode/massive/massive_edit_agents.php:672 #: ../../godmode/massive/massive_edit_agents.php:1095 @@ -6456,28 +6468,28 @@ msgstr "Oui" #: ../../include/functions_cron.php:688 ../../include/functions_profile.php:297 #: ../../include/functions_snmp.php:382 #: ../../include/class/SnmpConsole.class.php:462 -#: ../../include/functions_events.php:4790 -#: ../../include/functions_events.php:4795 -#: ../../operation/users/user_edit.php:325 +#: ../../include/functions_events.php:4769 +#: ../../include/functions_events.php:4774 +#: ../../operation/users/user_edit.php:399 #: ../../operation/netflow/nf_live_view.php:470 msgid "No" msgstr "Non" #: ../../enterprise/meta/advanced/metasetup.password.php:115 #: ../../enterprise/meta/include/functions_meta.php:366 -#: ../../enterprise/godmode/setup/setup.php:392 +#: ../../enterprise/godmode/setup/setup.php:308 #: ../../include/functions_config.php:476 msgid "Min. size password" msgstr "Taille minimale du mot de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:116 -#: ../../enterprise/godmode/setup/setup.php:400 +#: ../../enterprise/godmode/setup/setup.php:316 msgid " Caracters" msgstr " Caractères" #: ../../enterprise/meta/advanced/metasetup.password.php:119 #: ../../enterprise/meta/include/functions_meta.php:396 -#: ../../enterprise/godmode/setup/setup.php:421 +#: ../../enterprise/godmode/setup/setup.php:337 #: ../../include/functions_config.php:480 msgid "Password expiration" msgstr "Expiration du mot de passe" @@ -6487,25 +6499,25 @@ msgid "Set 0 if never expire." msgstr "Configurez-le sur 0 pour qu'il n'expire jamais." #: ../../enterprise/meta/advanced/metasetup.password.php:120 -#: ../../enterprise/godmode/setup/setup.php:429 +#: ../../enterprise/godmode/setup/setup.php:345 msgid " Days" msgstr " Jours" #: ../../enterprise/meta/advanced/metasetup.password.php:123 #: ../../enterprise/meta/include/functions_meta.php:416 -#: ../../enterprise/godmode/setup/setup.php:441 +#: ../../enterprise/godmode/setup/setup.php:357 #: ../../include/functions_config.php:488 msgid "User blocked if login fails" msgstr "Utilisateur bloqué en cas d'erreur de connexion" #: ../../enterprise/meta/advanced/metasetup.password.php:124 -#: ../../enterprise/godmode/setup/setup.php:449 +#: ../../enterprise/godmode/setup/setup.php:365 msgid " Minutes" msgstr " Minutes" #: ../../enterprise/meta/advanced/metasetup.password.php:127 #: ../../enterprise/meta/include/functions_meta.php:426 -#: ../../enterprise/godmode/setup/setup.php:452 +#: ../../enterprise/godmode/setup/setup.php:368 #: ../../include/functions_config.php:492 msgid "Number of failed login attempts" msgstr "Nombre de tentatives de connexion infructueuses" @@ -6515,68 +6527,68 @@ msgid "Two attempts minimum" msgstr "Deux tentatives minimum" #: ../../enterprise/meta/advanced/metasetup.password.php:128 -#: ../../enterprise/godmode/setup/setup.php:460 +#: ../../enterprise/godmode/setup/setup.php:376 msgid " Attempts" msgstr " Tentatives" #: ../../enterprise/meta/advanced/metasetup.password.php:131 #: ../../enterprise/meta/include/functions_meta.php:448 -#: ../../enterprise/godmode/setup/setup.php:481 +#: ../../enterprise/godmode/setup/setup.php:397 #: ../../include/functions_config.php:512 msgid "Compare previous password" msgstr "Comparer mot de passe précédent" #: ../../enterprise/meta/advanced/metasetup.password.php:135 #: ../../enterprise/meta/include/functions_meta.php:436 -#: ../../enterprise/godmode/setup/setup.php:472 +#: ../../enterprise/godmode/setup/setup.php:388 #: ../../include/functions_config.php:508 msgid "Enable password history" msgstr "Activer historique de mot de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:140 #: ../../enterprise/meta/include/functions_meta.php:459 -#: ../../enterprise/godmode/setup/setup.php:463 +#: ../../enterprise/godmode/setup/setup.php:379 #: ../../include/functions_config.php:504 msgid "Apply password policy to admin users" msgstr "Appliquer la politique de mot de passe aux administrateurs" #: ../../enterprise/meta/advanced/metasetup.password.php:146 #: ../../enterprise/meta/include/functions_meta.php:406 -#: ../../enterprise/godmode/setup/setup.php:432 +#: ../../enterprise/godmode/setup/setup.php:348 #: ../../include/functions_config.php:484 msgid "Force change password on first login" msgstr "Forcer le changement mot de passe lors de la première connexion" #: ../../enterprise/meta/advanced/metasetup.password.php:152 #: ../../enterprise/meta/include/functions_meta.php:376 -#: ../../enterprise/godmode/setup/setup.php:403 +#: ../../enterprise/godmode/setup/setup.php:319 #: ../../include/functions_config.php:496 msgid "Password must have numbers" msgstr "Le mot de passe doit contenir des chiffres" #: ../../enterprise/meta/advanced/metasetup.password.php:156 #: ../../enterprise/meta/include/functions_meta.php:386 -#: ../../enterprise/godmode/setup/setup.php:412 +#: ../../enterprise/godmode/setup/setup.php:328 #: ../../include/functions_config.php:500 msgid "Password must have symbols" msgstr "Le mot de passe doit contenir des symboles" #: ../../enterprise/meta/advanced/metasetup.password.php:160 #: ../../enterprise/meta/include/functions_meta.php:470 -#: ../../enterprise/godmode/setup/setup.php:493 +#: ../../enterprise/godmode/setup/setup.php:409 #: ../../include/functions_config.php:516 msgid "Activate reset password" msgstr "Activer la réinitialisation du mot de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:165 #: ../../enterprise/meta/include/functions_meta.php:480 -#: ../../enterprise/godmode/setup/setup.php:504 +#: ../../enterprise/godmode/setup/setup.php:420 #: ../../include/functions_config.php:520 msgid "Exclusion word list for passwords" msgstr "Liste de mots exclus pour les mots de passe" #: ../../enterprise/meta/advanced/metasetup.password.php:193 -#: ../../enterprise/godmode/setup/setup.php:574 +#: ../../enterprise/godmode/setup/setup.php:497 msgid "Enter restricted passwords..." msgstr "Entrer des mots de passe restreints..." @@ -6592,7 +6604,7 @@ msgstr "Entrer des mots de passe restreints..." #: ../../enterprise/include/class/CommandCenter.class.php:142 #: ../../godmode/netflow/nf_item_list.php:49 ../../godmode/netflow/nf_edit.php:53 #: ../../godmode/netflow/nf_edit_form.php:69 -#: ../../operation/agentes/ver_agente.php:1389 +#: ../../operation/agentes/ver_agente.php:1395 #: ../../operation/netflow/nf_live_view.php:149 msgid "Main" msgstr "Principal" @@ -6662,7 +6674,7 @@ msgstr "" "noter que ces paramètres ignoreront cette configuration de la console." #: ../../enterprise/meta/advanced/metasetup.mail.php:117 -#: ../../godmode/setup/setup_general.php:529 +#: ../../godmode/setup/setup_general.php:610 msgid "Mail configuration" msgstr "Configuration du courriel" @@ -6672,7 +6684,7 @@ msgid "From dir" msgstr "À partir du répertoire" #: ../../enterprise/meta/advanced/metasetup.mail.php:125 -#: ../../godmode/setup/setup_general.php:549 +#: ../../godmode/setup/setup_general.php:630 #: ../../include/functions_config.php:380 msgid "From name" msgstr "À partir d'un nom" @@ -6688,29 +6700,29 @@ msgid "Port SMTP" msgstr "Port SMTP" #: ../../enterprise/meta/advanced/metasetup.mail.php:134 -#: ../../godmode/setup/setup_general.php:579 +#: ../../godmode/setup/setup_general.php:660 #: ../../include/functions_config.php:388 msgid "Encryption" msgstr "Encodage" #: ../../enterprise/meta/advanced/metasetup.mail.php:140 #: ../../godmode/gis_maps/configure_gis_map.php:575 -#: ../../godmode/setup/setup_general.php:585 +#: ../../godmode/setup/setup_general.php:666 #: ../../godmode/reporting/create_container.php:294 #: ../../godmode/reporting/create_container.php:310 -#: ../../include/ajax/events.php:1042 ../../include/ajax/graph.ajax.php:145 +#: ../../include/ajax/events.php:1043 ../../include/ajax/graph.ajax.php:145 #: ../../include/functions_html.php:4742 msgid "none" msgstr "aucun" #: ../../enterprise/meta/advanced/metasetup.mail.php:145 -#: ../../godmode/setup/setup_general.php:590 +#: ../../godmode/setup/setup_general.php:671 #: ../../include/functions_config.php:392 msgid "Email user" msgstr "Utilisateur du courriel" #: ../../enterprise/meta/advanced/metasetup.mail.php:148 -#: ../../godmode/setup/setup_general.php:600 +#: ../../godmode/setup/setup_general.php:681 #: ../../include/functions_config.php:396 msgid "Email password" msgstr "Mot de passe du courriel" @@ -6737,12 +6749,12 @@ msgstr "Configuration des mots de passe" #: ../../enterprise/operation/log/elasticsearch_interface.php:31 #: ../../enterprise/operation/log/log_viewer.php:378 #: ../../enterprise/operation/log/log_viewer.php:418 -#: ../../enterprise/operation/menu.php:164 +#: ../../enterprise/operation/menu.php:151 msgid "Log viewer" msgstr "Visualiseur de journaux" #: ../../enterprise/meta/advanced/metasetup.php:91 -#: ../../enterprise/godmode/menu.php:136 +#: ../../enterprise/godmode/menu.php:127 #: ../../enterprise/include/functions_setup.php:67 #: ../../enterprise/include/functions_setup.php:119 #: ../../operation/agentes/datos_agente.php:180 @@ -6750,7 +6762,7 @@ msgid "History database" msgstr "Base de Données de l'historique" #: ../../enterprise/meta/advanced/metasetup.php:102 -#: ../../enterprise/meta/advanced/metasetup.php:257 ../../godmode/menu.php:347 +#: ../../enterprise/meta/advanced/metasetup.php:257 ../../godmode/menu.php:350 #: ../../godmode/setup/setup.php:113 ../../godmode/setup/setup.php:255 msgid "Authentication" msgstr "Authentification" @@ -6767,7 +6779,7 @@ msgstr "Configuration de la performance" #: ../../enterprise/meta/advanced/metasetup.php:128 #: ../../enterprise/meta/advanced/metasetup.php:227 -#: ../../enterprise/meta/advanced/metasetup.php:273 ../../godmode/menu.php:418 +#: ../../enterprise/meta/advanced/metasetup.php:273 ../../godmode/menu.php:421 #: ../../godmode/setup/file_manager.php:47 #: ../../godmode/setup/file_manager.php:60 msgid "File manager" @@ -6784,7 +6796,7 @@ msgid "Mail" msgstr "Email" #: ../../enterprise/meta/advanced/metasetup.php:152 -#: ../../enterprise/meta/advanced/metasetup.php:285 ../../godmode/menu.php:371 +#: ../../enterprise/meta/advanced/metasetup.php:285 ../../godmode/menu.php:374 #: ../../godmode/setup/setup.php:204 ../../godmode/setup/setup.php:300 msgid "Notifications" msgstr "Notifications" @@ -6869,7 +6881,7 @@ msgstr "Appliquer les politiques" #: ../../enterprise/meta/advanced/policymanager.apply.php:198 #: ../../enterprise/include/functions_groups.php:33 -#: ../../enterprise/operation/agentes/ver_agente.php:239 +#: ../../enterprise/operation/agentes/ver_agente.php:216 #: ../../include/functions_networkmap.php:1299 #: ../../include/functions_maps.php:42 #: ../../include/lib/Dashboard/Widgets/tree_view.php:333 @@ -6879,7 +6891,7 @@ msgid "Policies" msgstr "Politiques" #: ../../enterprise/meta/advanced/policymanager.apply.php:200 -#: ../../enterprise/godmode/servers/HA_cluster.php:97 ../../godmode/menu.php:294 +#: ../../enterprise/godmode/servers/HA_cluster.php:97 ../../godmode/menu.php:297 #: ../../godmode/setup/os.php:225 #: ../../godmode/reporting/visual_console_builder.wizard.php:333 #: ../../mobile/include/functions_web.php:28 @@ -6889,8 +6901,8 @@ msgstr "Serveurs" #: ../../enterprise/meta/advanced/policymanager.apply.php:213 #: ../../enterprise/meta/advanced/policymanager.queue.php:311 #: ../../enterprise/godmode/policies/policy_queue.php:714 -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/policies/policy_agents.php:890 +#: ../../enterprise/godmode/policies/policy_agents.php:1405 #: ../../include/functions_visual_map_editor.php:641 msgid "Apply" msgstr "Appliquer" @@ -6988,10 +7000,10 @@ msgstr "Erreur de suppression" #: ../../enterprise/godmode/policies/policy_modules.php:518 #: ../../enterprise/godmode/setup/setup_metaconsole.php:147 #: ../../godmode/users/user_list.php:432 -#: ../../godmode/agentes/configurar_agente.php:2208 +#: ../../godmode/agentes/configurar_agente.php:2224 #: ../../godmode/agentes/modificar_agente.php:234 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:373 +#: ../../godmode/alerts/alert_list.php:382 #: ../../include/ajax/alert_list.ajax.php:358 msgid "Successfully enabled" msgstr "Activé correctement" @@ -7000,10 +7012,10 @@ msgstr "Activé correctement" #: ../../enterprise/godmode/policies/policy_alerts.php:127 #: ../../enterprise/godmode/policies/policy_modules.php:519 #: ../../enterprise/godmode/setup/setup_metaconsole.php:148 -#: ../../godmode/agentes/configurar_agente.php:2209 +#: ../../godmode/agentes/configurar_agente.php:2225 #: ../../godmode/agentes/modificar_agente.php:235 #: ../../godmode/massive/massive_enable_disable_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:374 +#: ../../godmode/alerts/alert_list.php:383 #: ../../include/ajax/alert_list.ajax.php:360 msgid "Could not be enabled" msgstr "Erreur d'activation" @@ -7013,10 +7025,10 @@ msgstr "Erreur d'activation" #: ../../enterprise/godmode/policies/policy_modules.php:535 #: ../../enterprise/godmode/setup/setup_metaconsole.php:156 #: ../../godmode/users/user_list.php:426 -#: ../../godmode/agentes/configurar_agente.php:2233 +#: ../../godmode/agentes/configurar_agente.php:2249 #: ../../godmode/agentes/modificar_agente.php:277 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/alerts/alert_list.php:400 +#: ../../godmode/alerts/alert_list.php:418 #: ../../include/ajax/alert_list.ajax.php:379 msgid "Successfully disabled" msgstr "Désactivé correctement" @@ -7097,9 +7109,9 @@ msgstr "%s édition des éléments de la Métaconsole" #: ../../include/functions_visual_map_editor.php:193 #: ../../include/functions_visual_map_editor.php:779 #: ../../include/functions_visual_map_editor.php:1394 -#: ../../include/functions_visual_map.php:4259 -#: ../../include/rest-api/models/VisualConsole/Item.php:1941 -#: ../../include/rest-api/models/VisualConsole/Item.php:2135 +#: ../../include/functions_visual_map.php:4210 +#: ../../include/rest-api/models/VisualConsole/Item.php:1942 +#: ../../include/rest-api/models/VisualConsole/Item.php:2136 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:325 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:284 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:365 @@ -7193,7 +7205,7 @@ msgstr "Port de la BD" #: ../../enterprise/meta/advanced/metasetup.consoles.php:744 #: ../../enterprise/meta/advanced/metasetup.consoles.php:749 #: ../../enterprise/godmode/policies/policy_modules.php:413 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:607 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:609 #: ../../enterprise/godmode/setup/setup_history.php:265 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:141 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:230 @@ -7313,7 +7325,7 @@ msgstr "Synchronisation de la base de données" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:99 #: ../../enterprise/tools/ipam/ipam.php:426 ../../operation/search_agents.php:132 #: ../../operation/search_agents.php:133 -#: ../../operation/agentes/ver_agente.php:1369 +#: ../../operation/agentes/ver_agente.php:1375 msgid "Manage" msgstr "Gérer" @@ -7356,20 +7368,20 @@ msgstr "Erreur de création du lien" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:50 #: ../../godmode/modules/manage_nc_groups.php:84 #: ../../godmode/users/profile_list.php:269 -#: ../../godmode/users/configure_user.php:554 -#: ../../godmode/agentes/configurar_agente.php:892 +#: ../../godmode/users/configure_user.php:568 +#: ../../godmode/agentes/configurar_agente.php:905 #: ../../godmode/agentes/planned_downtime.editor.php:652 #: ../../godmode/snmpconsole/snmp_alert.php:302 #: ../../godmode/snmpconsole/snmp_filters.php:164 -#: ../../godmode/alerts/alert_commands.php:658 +#: ../../godmode/alerts/alert_commands.php:659 #: ../../godmode/alerts/configure_alert_template.php:536 #: ../../godmode/alerts/alert_list.php:185 ../../godmode/setup/news.php:66 #: ../../godmode/setup/gis.php:47 ../../godmode/setup/links.php:44 -#: ../../include/functions_alerts.php:2750 +#: ../../include/functions_alerts.php:2754 #: ../../include/class/CalendarManager.class.php:537 #: ../../include/class/CalendarManager.class.php:894 -#: ../../include/functions_planned_downtimes.php:114 -#: ../../include/functions_planned_downtimes.php:849 +#: ../../include/functions_planned_downtimes.php:115 +#: ../../include/functions_planned_downtimes.php:850 msgid "Successfully created" msgstr "Créé correctement" @@ -7389,7 +7401,7 @@ msgstr "Problème de modification du lien" #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:132 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:82 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:69 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1333 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1359 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1784 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1874 #: ../../enterprise/include/class/NetworkConfigManager.class.php:1969 @@ -7401,7 +7413,7 @@ msgstr "Problème de modification du lien" #: ../../godmode/modules/manage_nc_groups.php:118 #: ../../godmode/users/profile_list.php:252 #: ../../godmode/agentes/status_monitor_custom_fields.php:57 -#: ../../godmode/agentes/configurar_agente.php:1202 +#: ../../godmode/agentes/configurar_agente.php:1215 #: ../../godmode/agentes/planned_downtime.editor.php:654 #: ../../godmode/netflow/nf_edit_form.php:139 #: ../../godmode/snmpconsole/snmp_alert.php:444 @@ -7413,11 +7425,11 @@ msgstr "Problème de modification du lien" #: ../../godmode/alerts/alert_list.php:94 ../../godmode/alerts/alert_list.php:319 #: ../../godmode/setup/news.php:107 ../../godmode/setup/gis.php:39 #: ../../godmode/setup/links.php:63 -#: ../../godmode/events/event_edit_filter.php:232 -#: ../../include/functions_alerts.php:2750 +#: ../../godmode/events/event_edit_filter.php:242 +#: ../../include/functions_alerts.php:2754 #: ../../include/class/CalendarManager.class.php:534 #: ../../include/class/CalendarManager.class.php:891 -#: ../../include/functions_planned_downtimes.php:124 +#: ../../include/functions_planned_downtimes.php:125 msgid "Successfully updated" msgstr "Mis à jour correctement" @@ -7471,7 +7483,7 @@ msgstr "Appliquer les politiques" #: ../../enterprise/godmode/policies/policies.php:509 #: ../../enterprise/godmode/policies/policy_collections.php:31 #: ../../enterprise/godmode/menu.php:58 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2188 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2217 #: ../../enterprise/include/functions_policies.php:3799 #: ../../godmode/servers/modificar_server.php:146 #: ../../general/first_task/collections.php:22 @@ -7547,10 +7559,9 @@ msgstr "Collections" #: ../../include/functions_reporting_html.php:2839 #: ../../include/functions_reporting_html.php:2912 #: ../../include/ajax/module.php:995 ../../include/ajax/custom_fields.php:412 -#: ../../include/functions_graph.php:3713 ../../include/functions_netflow.php:301 -#: ../../include/functions_reporting.php:4362 -#: ../../include/functions_reporting.php:4403 -#: ../../include/functions_reporting.php:5154 +#: ../../include/functions_graph.php:3504 ../../include/functions_netflow.php:301 +#: ../../include/functions_reporting.php:4625 +#: ../../include/functions_reporting.php:4666 #: ../../include/functions_events.php:218 ../../include/functions_events.php:301 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:83 @@ -7623,7 +7634,7 @@ msgstr "Collection créée correctement" #: ../../enterprise/godmode/agentes/collections.editor.php:424 #: ../../enterprise/godmode/agentes/collections.editor.php:446 #: ../../enterprise/include/functions_collection.php:186 -#: ../../operation/agentes/ver_agente.php:1677 +#: ../../operation/agentes/ver_agente.php:1695 msgid "Files" msgstr "Fichiers" @@ -7726,7 +7737,7 @@ msgstr "" #: ../../enterprise/meta/advanced/collections.data.php:435 #: ../../enterprise/meta/include/functions_autoprovision.php:569 #: ../../enterprise/godmode/agentes/collections.data.php:523 -#: ../../include/class/SnmpConsole.class.php:1407 +#: ../../include/class/SnmpConsole.class.php:1408 msgid "Description:" msgstr "Description :" @@ -7864,7 +7875,7 @@ msgstr "Le format de l'heure sur Pandora FMS est heure(24h):minutes:secondes" #: ../../enterprise/meta/advanced/cron_main.php:450 #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:566 #: ../../godmode/events/event_responses.editor.php:146 -#: ../../include/ajax/events.php:2072 ../../include/ajax/events.php:2537 +#: ../../include/ajax/events.php:2083 ../../include/ajax/events.php:2548 #: ../../include/class/ExternalTools.class.php:354 #: ../../include/lib/Dashboard/Widgets/events_list.php:640 #: ../../operation/events/events.php:2550 @@ -7881,7 +7892,7 @@ msgstr "Paramètres" #: ../../enterprise/operation/log/log_viewer.php:994 #: ../../enterprise/operation/services/services.treeview_services.php:384 #: ../../extensions/insert_data.php:224 -#: ../../godmode/agentes/planned_downtime.editor.php:1855 +#: ../../godmode/agentes/planned_downtime.editor.php:1859 #: ../../godmode/alerts/configure_alert_template.php:1456 #: ../../godmode/alerts/configure_alert_template.php:1540 #: ../../godmode/setup/news.php:322 @@ -7891,12 +7902,12 @@ msgstr "Paramètres" #: ../../operation/agentes/interface_traffic_graph_win.php:436 #: ../../operation/agentes/datos_agente.php:312 #: ../../operation/agentes/estado_monitores.php:455 -#: ../../operation/network/network_report.php:338 +#: ../../operation/network/network_report.php:348 #: ../../operation/network/network_usage_map.php:184 #: ../../operation/netflow/nf_live_view.php:753 #: ../../operation/reporting/reporting_viewer.php:367 #: ../../operation/reporting/reporting_viewer.php:387 -#: ../../operation/reporting/graph_viewer.php:423 +#: ../../operation/reporting/graph_viewer.php:420 #: ../../operation/events/events.php:3136 msgid "Choose time" msgstr "Définir temps" @@ -7913,7 +7924,7 @@ msgstr "Définir temps" #: ../../enterprise/operation/log/log_viewer.php:995 #: ../../enterprise/operation/services/services.treeview_services.php:385 #: ../../extensions/insert_data.php:225 -#: ../../godmode/agentes/planned_downtime.editor.php:1856 +#: ../../godmode/agentes/planned_downtime.editor.php:1860 #: ../../godmode/alerts/configure_alert_template.php:1457 #: ../../godmode/alerts/configure_alert_template.php:1541 #: ../../godmode/setup/news.php:323 @@ -7923,12 +7934,12 @@ msgstr "Définir temps" #: ../../operation/agentes/interface_traffic_graph_win.php:437 #: ../../operation/agentes/datos_agente.php:313 #: ../../operation/agentes/estado_monitores.php:456 -#: ../../operation/network/network_report.php:339 +#: ../../operation/network/network_report.php:349 #: ../../operation/network/network_usage_map.php:185 #: ../../operation/netflow/nf_live_view.php:754 #: ../../operation/reporting/reporting_viewer.php:368 #: ../../operation/reporting/reporting_viewer.php:388 -#: ../../operation/reporting/graph_viewer.php:424 +#: ../../operation/reporting/graph_viewer.php:421 #: ../../operation/events/events.php:3137 msgid "Time" msgstr "Temps" @@ -7944,7 +7955,7 @@ msgstr "Temps" #: ../../enterprise/operation/log/log_viewer.php:996 #: ../../enterprise/operation/services/services.treeview_services.php:386 #: ../../extensions/insert_data.php:226 -#: ../../godmode/agentes/planned_downtime.editor.php:1857 +#: ../../godmode/agentes/planned_downtime.editor.php:1861 #: ../../godmode/alerts/configure_alert_template.php:1458 #: ../../godmode/alerts/configure_alert_template.php:1542 #: ../../godmode/setup/news.php:324 @@ -7955,12 +7966,12 @@ msgstr "Temps" #: ../../operation/agentes/interface_traffic_graph_win.php:438 #: ../../operation/agentes/datos_agente.php:314 #: ../../operation/agentes/estado_monitores.php:457 -#: ../../operation/network/network_report.php:340 +#: ../../operation/network/network_report.php:350 #: ../../operation/network/network_usage_map.php:186 #: ../../operation/netflow/nf_live_view.php:755 #: ../../operation/reporting/reporting_viewer.php:369 #: ../../operation/reporting/reporting_viewer.php:389 -#: ../../operation/reporting/graph_viewer.php:425 +#: ../../operation/reporting/graph_viewer.php:422 #: ../../operation/events/events.php:3138 msgid "Hour" msgstr "Heure" @@ -7976,7 +7987,7 @@ msgstr "Heure" #: ../../enterprise/operation/log/log_viewer.php:997 #: ../../enterprise/operation/services/services.treeview_services.php:387 #: ../../extensions/insert_data.php:227 -#: ../../godmode/agentes/planned_downtime.editor.php:1858 +#: ../../godmode/agentes/planned_downtime.editor.php:1862 #: ../../godmode/alerts/configure_alert_template.php:1459 #: ../../godmode/alerts/configure_alert_template.php:1543 #: ../../godmode/setup/news.php:325 @@ -7987,12 +7998,12 @@ msgstr "Heure" #: ../../operation/agentes/interface_traffic_graph_win.php:439 #: ../../operation/agentes/datos_agente.php:315 #: ../../operation/agentes/estado_monitores.php:458 -#: ../../operation/network/network_report.php:341 +#: ../../operation/network/network_report.php:351 #: ../../operation/network/network_usage_map.php:187 #: ../../operation/netflow/nf_live_view.php:756 #: ../../operation/reporting/reporting_viewer.php:370 #: ../../operation/reporting/reporting_viewer.php:390 -#: ../../operation/reporting/graph_viewer.php:426 +#: ../../operation/reporting/graph_viewer.php:423 #: ../../operation/events/events.php:3139 msgid "Minute" msgstr "Minute" @@ -8008,7 +8019,7 @@ msgstr "Minute" #: ../../enterprise/operation/log/log_viewer.php:998 #: ../../enterprise/operation/services/services.treeview_services.php:388 #: ../../extensions/insert_data.php:228 -#: ../../godmode/agentes/planned_downtime.editor.php:1859 +#: ../../godmode/agentes/planned_downtime.editor.php:1863 #: ../../godmode/alerts/configure_alert_template.php:1460 #: ../../godmode/alerts/configure_alert_template.php:1544 #: ../../godmode/setup/news.php:326 @@ -8018,12 +8029,12 @@ msgstr "Minute" #: ../../operation/agentes/interface_traffic_graph_win.php:440 #: ../../operation/agentes/datos_agente.php:316 #: ../../operation/agentes/estado_monitores.php:459 -#: ../../operation/network/network_report.php:342 +#: ../../operation/network/network_report.php:352 #: ../../operation/network/network_usage_map.php:188 #: ../../operation/netflow/nf_live_view.php:757 #: ../../operation/reporting/reporting_viewer.php:371 #: ../../operation/reporting/reporting_viewer.php:391 -#: ../../operation/reporting/graph_viewer.php:427 +#: ../../operation/reporting/graph_viewer.php:424 #: ../../operation/events/events.php:3140 msgid "Second" msgstr "Seconde" @@ -8035,28 +8046,28 @@ msgstr "Seconde" #: ../../enterprise/godmode/wizards/consoletask_js.php:46 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4036 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4346 -#: ../../enterprise/operation/agentes/agent_inventory.php:133 #: ../../enterprise/operation/log/log_viewer.php:987 #: ../../enterprise/operation/log/log_viewer.php:999 #: ../../enterprise/operation/services/services.treeview_services.php:389 #: ../../extensions/insert_data.php:229 -#: ../../godmode/agentes/planned_downtime.editor.php:1860 +#: ../../godmode/agentes/planned_downtime.editor.php:1864 #: ../../godmode/alerts/configure_alert_template.php:1461 #: ../../godmode/alerts/configure_alert_template.php:1545 #: ../../godmode/setup/news.php:327 #: ../../godmode/reporting/reporting_builder.item_editor.php:5062 -#: ../../include/functions.php:501 ../../include/functions.php:632 +#: ../../include/functions.php:505 ../../include/functions.php:636 #: ../../include/lib/Dashboard/Widgets/tree_view.php:691 #: ../../operation/tree.php:578 ../../operation/agentes/stat_win.php:609 #: ../../operation/agentes/interface_traffic_graph_win.php:441 #: ../../operation/agentes/datos_agente.php:317 #: ../../operation/agentes/estado_monitores.php:460 -#: ../../operation/network/network_report.php:343 +#: ../../operation/agentes/agent_inventory.php:133 +#: ../../operation/network/network_report.php:353 #: ../../operation/network/network_usage_map.php:189 #: ../../operation/netflow/nf_live_view.php:758 #: ../../operation/reporting/reporting_viewer.php:372 #: ../../operation/reporting/reporting_viewer.php:392 -#: ../../operation/reporting/graph_viewer.php:428 +#: ../../operation/reporting/graph_viewer.php:425 #: ../../operation/events/events.php:3141 msgid "Now" msgstr "Maintenant" @@ -8072,13 +8083,14 @@ msgstr "Maintenant" #: ../../enterprise/operation/log/log_viewer.php:1000 #: ../../enterprise/operation/services/services.treeview_services.php:390 #: ../../extensions/insert_data.php:230 -#: ../../godmode/agentes/planned_downtime.editor.php:1861 +#: ../../godmode/agentes/planned_downtime.editor.php:1865 #: ../../godmode/alerts/configure_alert_template.php:1462 #: ../../godmode/alerts/configure_alert_template.php:1546 #: ../../godmode/setup/news.php:328 #: ../../godmode/reporting/reporting_builder.item_editor.php:5063 #: ../../godmode/wizards/HostDevices.class.php:798 #: ../../mobile/include/ui.class.php:691 ../../mobile/include/ui.class.php:749 +#: ../../include/functions_menu.php:822 #: ../../include/class/WelcomeWindow.class.php:159 #: ../../include/lib/Dashboard/Widgets/tree_view.php:692 #: ../../include/functions_snmp_browser.php:600 ../../operation/tree.php:579 @@ -8086,12 +8098,12 @@ msgstr "Maintenant" #: ../../operation/agentes/interface_traffic_graph_win.php:442 #: ../../operation/agentes/datos_agente.php:318 #: ../../operation/agentes/estado_monitores.php:461 -#: ../../operation/network/network_report.php:344 +#: ../../operation/network/network_report.php:354 #: ../../operation/network/network_usage_map.php:190 #: ../../operation/netflow/nf_live_view.php:759 #: ../../operation/reporting/reporting_viewer.php:373 #: ../../operation/reporting/reporting_viewer.php:393 -#: ../../operation/reporting/graph_viewer.php:429 +#: ../../operation/reporting/graph_viewer.php:426 #: ../../operation/events/events.php:3142 msgid "Close" msgstr "Fermer" @@ -8099,9 +8111,9 @@ msgstr "Fermer" #: ../../enterprise/meta/advanced/metasetup.setup.php:108 #: ../../enterprise/godmode/modules/configure_local_component.php:166 #: ../../godmode/modules/manage_network_components_form_common.php:52 -#: ../../godmode/users/configure_user.php:1390 -#: ../../godmode/alerts/alert_commands.php:142 -#: ../../godmode/alerts/alert_commands.php:183 +#: ../../godmode/users/configure_user.php:1449 +#: ../../godmode/alerts/alert_commands.php:143 +#: ../../godmode/alerts/alert_commands.php:184 #: ../../godmode/alerts/configure_alert_template.php:933 #: ../../godmode/alerts/configure_alert_template.php:974 #: ../../godmode/alerts/configure_alert_template.php:1137 @@ -8133,17 +8145,16 @@ msgstr "Temps de référence" #: ../../mobile/operation/events.php:248 #: ../../include/functions_reporting_html.php:1151 #: ../../include/functions_reporting_html.php:2621 -#: ../../include/functions.php:1255 ../../include/functions_graph.php:2873 -#: ../../include/functions_graph.php:3574 ../../include/functions_graph.php:3576 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:433 -#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:429 +#: ../../include/functions.php:1281 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_module.php:434 +#: ../../include/lib/Dashboard/Widgets/top_n_events_by_group.php:430 #: ../../include/functions_events.php:2609 -#: ../../include/functions_events.php:3042 ../../operation/events/events.php:803 +#: ../../include/functions_events.php:3021 ../../operation/events/events.php:803 msgid "System" msgstr "Système" #: ../../enterprise/meta/advanced/metasetup.setup.php:145 -#: ../../godmode/setup/setup_general.php:126 +#: ../../godmode/setup/setup_general.php:126 ../../include/functions_menu.php:818 msgid "Database" msgstr "Base de données" @@ -8184,13 +8195,13 @@ msgstr "Répertoire de configuration à distance" #: ../../enterprise/meta/advanced/metasetup.setup.php:158 #: ../../enterprise/meta/include/functions_meta.php:150 #: ../../godmode/setup/setup_general.php:98 -msgid "Phantomjs bin directory" -msgstr "Répertoire phantomjs bin" +msgid "Chromium path" +msgstr "Chemin du Chromium" #: ../../enterprise/meta/advanced/metasetup.setup.php:158 -msgid "Directory where phantomjs binary file exists and has execution grants." +msgid "Directory where Chromium binary file exists and has execution grants." msgstr "" -"Répertoire où le fichier binaire phantomjs existe et a des licences " +"Répertoire où le fichier binaire Chromium existe et a des autorisasions " "d’exécution." #: ../../enterprise/meta/advanced/metasetup.setup.php:162 @@ -8340,7 +8351,7 @@ msgstr "Exclusions d’hôte d’URL publique" #: ../../enterprise/meta/advanced/metasetup.setup.php:218 #: ../../godmode/setup/setup_netflow.php:65 -#: ../../include/functions_config.php:1524 +#: ../../include/functions_config.php:1505 msgid "Disable custom live view filters" msgstr "Désactiver les filtres personnalisés d'affichage en temps réel" @@ -8354,7 +8365,7 @@ msgstr "" #: ../../enterprise/meta/advanced/metasetup.setup.php:222 #: ../../enterprise/meta/include/functions_meta.php:210 -#: ../../godmode/setup/setup_general.php:370 +#: ../../godmode/setup/setup_general.php:451 #: ../../include/functions_config.php:312 msgid "Command Snapshot" msgstr "Instantané de commande" @@ -8402,7 +8413,7 @@ msgstr "Activer la mise à jour de Warp" #: ../../enterprise/meta/advanced/metasetup.setup.php:288 #: ../../enterprise/meta/include/functions_meta.php:275 #: ../../enterprise/godmode/setup/setup.php:90 -#: ../../include/functions_config.php:415 +#: ../../include/functions_config.php:420 msgid "Size of collection" msgstr "Taille de la collection" @@ -8450,7 +8461,7 @@ msgstr "Activer la visionneuse de journaux" #: ../../enterprise/meta/advanced/metasetup.setup.php:324 #: ../../enterprise/meta/include/functions_meta.php:305 -#: ../../godmode/setup/setup_general.php:467 +#: ../../godmode/setup/setup_general.php:548 msgid "Enable console log" msgstr "Activer la console de journalisation" @@ -8460,7 +8471,7 @@ msgstr "Emplacement du journal : pandora_console/log/console.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:345 #: ../../enterprise/meta/include/functions_meta.php:315 -#: ../../godmode/setup/setup_general.php:478 +#: ../../godmode/setup/setup_general.php:559 msgid "Enable audit log" msgstr "Activer le journal d'audit" @@ -8471,15 +8482,15 @@ msgstr "Emplacement du journal : pandora_console/log/audit.log" #: ../../enterprise/meta/advanced/metasetup.setup.php:368 #: ../../enterprise/meta/advanced/metasetup.setup.php:369 #: ../../enterprise/meta/include/functions_meta.php:325 -#: ../../godmode/setup/setup_general.php:500 -#: ../../godmode/setup/setup_general.php:501 +#: ../../godmode/setup/setup_general.php:581 +#: ../../godmode/setup/setup_general.php:582 #: ../../include/functions_config.php:364 msgid "Enable console report" msgstr "Activer le rapport de console" #: ../../enterprise/meta/advanced/policymanager.sync.php:247 #: ../../enterprise/meta/include/functions_groups_meta.php:174 -#: ../../godmode/groups/group_list.php:667 +#: ../../godmode/groups/group_list.php:672 #, php-format msgid "Error connecting to %s" msgstr "Erreur de connexion à %s" @@ -8543,11 +8554,11 @@ msgstr "%s alertes de politique supprimées" #: ../../enterprise/operation/log/log_viewer.php:655 #: ../../godmode/massive/massive_copy_modules.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:1649 -#: ../../godmode/events/event_edit_filter.php:673 +#: ../../godmode/events/event_edit_filter.php:683 #: ../../godmode/events/custom_events.php:109 #: ../../include/functions_events.php:212 ../../include/functions_events.php:283 -#: ../../include/functions_events.php:4381 -#: ../../include/functions_events.php:4462 +#: ../../include/functions_events.php:4360 +#: ../../include/functions_events.php:4441 #: ../../operation/agentes/log_sources_status.php:56 #: ../../operation/agentes/pandora_networkmap.editor.php:354 #: ../../operation/agentes/pandora_networkmap.view.php:173 @@ -8565,7 +8576,6 @@ msgstr "Cette Métaconsole" #: ../../enterprise/meta/advanced/policymanager.queue.php:257 #: ../../enterprise/extensions/resource_exportation/functions.php:18 #: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 #: ../../enterprise/godmode/agentes/plugins_manager.php:193 #: ../../enterprise/godmode/policies/policy_queue.php:593 #: ../../enterprise/godmode/policies/policy_queue.php:647 @@ -8580,7 +8590,8 @@ msgstr "Cette Métaconsole" #: ../../enterprise/operation/agentes/collection_view.php:74 #: ../../godmode/agentes/status_monitor_custom_fields.php:73 #: ../../godmode/agentes/status_monitor_custom_fields.php:142 -#: ../../godmode/agentes/module_manager.php:883 +#: ../../godmode/agentes/inventory_manager.php:220 +#: ../../godmode/agentes/module_manager.php:884 #: ../../godmode/alerts/alert_view.php:148 #: ../../include/ajax/alert_list.ajax.php:285 ../../include/ajax/module.php:987 #: ../../operation/agentes/status_monitor.php:1315 @@ -8618,7 +8629,7 @@ msgstr "" "groupe du nœud" #: ../../enterprise/meta/advanced/metasetup.performance.php:74 -#: ../../godmode/menu.php:350 ../../godmode/setup/setup.php:125 +#: ../../godmode/menu.php:353 ../../godmode/setup/setup.php:125 #: ../../godmode/setup/setup.php:260 msgid "Performance" msgstr "Performance" @@ -8679,36 +8690,6 @@ msgstr "Limite de ligne dans le journal csv" msgid "Max. macro data fields" msgstr "Nombre maximum de champs macro de données" -#: ../../enterprise/meta/advanced/metasetup.performance.php:154 -#: ../../godmode/setup/performance.php:671 -#, php-format -msgid "" -"%s web2image cache system cleanup. It is always cleaned up after perform an " -"upgrade" -msgstr "" -"%s nettoyage du système de cache web2image. Il est toujours nettoyé après " -"avoir effectué une mise à niveau" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:159 -#: ../../godmode/setup/performance.php:688 -msgid "PhantomJS cache cleanup " -msgstr "Nettoyage du cache PhantomJS " - -#: ../../enterprise/meta/advanced/metasetup.performance.php:166 -#: ../../godmode/setup/performance.php:695 -msgid "No scheduled" -msgstr "Non planifié" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:167 -#: ../../godmode/setup/performance.php:696 -msgid "Each week" -msgstr "Chaque semaine" - -#: ../../enterprise/meta/advanced/metasetup.performance.php:168 -#: ../../godmode/setup/performance.php:697 -msgid "Each day" -msgstr "Tous les jours" - #: ../../enterprise/meta/advanced/collections.php:111 msgid "Collection has been deleted" msgstr "La collection a été supprimée" @@ -8785,7 +8766,7 @@ msgstr "Filtre de contrôle des utilisateurs" #: ../../enterprise/meta/advanced/collections.php:251 #: ../../enterprise/godmode/policies/policy_queue.php:524 #: ../../enterprise/godmode/policies/policy_queue.php:636 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:382 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:384 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:174 #: ../../godmode/users/user_list.php:512 #: ../../godmode/snmpconsole/snmp_alert.php:1180 @@ -8800,67 +8781,67 @@ msgid "Error: The main directory of collections does not exist." msgstr "Erreur : le répertoire principal de la collection n'existe pas." #: ../../enterprise/meta/advanced/collections.php:341 -#: ../../enterprise/godmode/agentes/collections.php:428 +#: ../../enterprise/godmode/agentes/collections.php:442 #: ../../enterprise/include/functions_groups.php:81 -#: ../../enterprise/operation/agentes/ver_agente.php:215 -#: ../../godmode/agentes/configurar_agente.php:713 +#: ../../enterprise/operation/agentes/ver_agente.php:192 +#: ../../godmode/agentes/configurar_agente.php:726 msgid "Collection" msgstr "Collection" #: ../../enterprise/meta/advanced/collections.php:364 #: ../../enterprise/godmode/agentes/collection_manager.php:110 -#: ../../enterprise/godmode/agentes/collections.php:429 +#: ../../enterprise/godmode/agentes/collections.php:443 #: ../../enterprise/godmode/policies/policy_collections.php:170 #: ../../enterprise/godmode/policies/policy_collections.php:264 msgid "Short Name" msgstr "Nom abrégé" #: ../../enterprise/meta/advanced/collections.php:425 -#: ../../enterprise/godmode/agentes/collections.php:461 +#: ../../enterprise/godmode/agentes/collections.php:475 msgid "Are you sure to delete?" msgstr "Êtes-vous sûr(e) de vouloir le supprimer ?" #: ../../enterprise/meta/advanced/collections.php:430 #: ../../enterprise/meta/advanced/collections.php:431 -#: ../../enterprise/godmode/agentes/collections.php:462 +#: ../../enterprise/godmode/agentes/collections.php:476 #: ../../include/class/SatelliteCollection.class.php:590 msgid "Delete collection" msgstr "Supprimer la collection" #: ../../enterprise/meta/advanced/collections.php:440 -#: ../../enterprise/godmode/agentes/collections.php:469 +#: ../../enterprise/godmode/agentes/collections.php:483 msgid "Are you sure to re-apply?" msgstr "Êtes-vous sûr(e) de vouloir appliquer à nouveau ?" #: ../../enterprise/meta/advanced/collections.php:441 -#: ../../enterprise/godmode/agentes/collections.php:470 +#: ../../enterprise/godmode/agentes/collections.php:484 msgid "Re-Apply changes" msgstr "Appliquer les changements à nouveau" #: ../../enterprise/meta/advanced/collections.php:448 -#: ../../enterprise/godmode/agentes/collections.php:477 +#: ../../enterprise/godmode/agentes/collections.php:491 msgid "Are you sure to apply?" msgstr "Êtes-vous sûr(e) de vouloir appliquer ?" #: ../../enterprise/meta/advanced/collections.php:449 -#: ../../enterprise/godmode/agentes/collections.php:478 +#: ../../enterprise/godmode/agentes/collections.php:492 msgid "Apply changes" msgstr "Appliquer les modifications" #: ../../enterprise/meta/advanced/collections.php:454 -#: ../../enterprise/godmode/agentes/collections.php:483 +#: ../../enterprise/godmode/agentes/collections.php:497 msgid "Are you sure to re-create directory?" msgstr "Êtes-vous sûr de recréer un répertoire ?" #: ../../enterprise/meta/advanced/collections.php:459 #: ../../enterprise/meta/advanced/collections.php:460 -#: ../../enterprise/godmode/agentes/collections.php:488 -#: ../../enterprise/godmode/agentes/collections.php:489 +#: ../../enterprise/godmode/agentes/collections.php:502 +#: ../../enterprise/godmode/agentes/collections.php:503 msgid "The collection directory does not exist. Re-create directory" msgstr "Le répertoire de la collection n'existe pas. Recréez un répertoire." #: ../../enterprise/meta/advanced/collections.php:492 -#: ../../enterprise/godmode/agentes/collections.php:509 +#: ../../enterprise/godmode/agentes/collections.php:525 msgid "Re-create directories" msgstr "Recréer des répertoires" @@ -8890,7 +8871,7 @@ msgstr "Impossible de supprimer l'opération de la file d'attente" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:155 #: ../../enterprise/include/functions_reporting_csv.php:1064 #: ../../enterprise/include/class/CommandCenter.class.php:451 -#: ../../extensions/api_checker.php:156 ../../godmode/extensions.php:148 +#: ../../extensions/api_checker.php:240 ../../godmode/extensions.php:148 #: ../../godmode/reporting/reporting_builder.item_editor.php:4537 #: ../../include/functions_reporting_html.php:2370 #: ../../include/functions_reporting_html.php:4872 @@ -8931,7 +8912,7 @@ msgstr "Inachevé" #: ../../enterprise/godmode/setup/setup_acl.php:574 #: ../../enterprise/include/class/SAPView.class.php:409 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2870 -#: ../../enterprise/include/functions_ipam.php:1779 +#: ../../enterprise/include/functions_ipam.php:1787 #: ../../enterprise/operation/services/services.treeview_services.php:164 #: ../../enterprise/operation/services/services.treeview_services.php:168 #: ../../enterprise/operation/services/services.list.php:454 @@ -8948,8 +8929,8 @@ msgstr "Inachevé" #: ../../godmode/reporting/reporting_builder.list_items.php:217 #: ../../godmode/reporting/reporting_builder.list_items.php:261 #: ../../godmode/reporting/reporting_builder.item_editor.php:1123 -#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3386 -#: ../../include/functions_ui.php:3408 ../../include/functions_ui.php:3420 +#: ../../godmode/tag/tag.php:233 ../../include/functions_ui.php:3390 +#: ../../include/functions_ui.php:3412 ../../include/functions_ui.php:3424 #: ../../include/class/ModuleTemplates.class.php:766 ../../operation/tree.php:260 #: ../../operation/agentes/graphs.php:265 #: ../../operation/agentes/estado_monitores.php:594 @@ -8974,17 +8955,18 @@ msgstr "Filtre" #: ../../enterprise/include/class/SAPView.class.php:226 #: ../../enterprise/include/functions_events.php:216 #: ../../enterprise/operation/log/log_viewer.php:614 -#: ../../enterprise/operation/inventory/inventory.php:331 #: ../../godmode/modules/manage_network_components.php:752 #: ../../godmode/agentes/agent_manager.php:423 -#: ../../godmode/agentes/module_manager.php:886 +#: ../../godmode/agentes/module_manager.php:887 #: ../../godmode/massive/massive_edit_agents.php:757 #: ../../godmode/reporting/reporting_builder.item_editor.php:1218 #: ../../godmode/reporting/reporting_builder.item_editor.php:1240 #: ../../godmode/reporting/reporting_builder.item_editor.php:3649 +#: ../../godmode/events/event_edit_filter.php:753 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1045 #: ../../include/functions_reporting_html.php:2261 #: ../../include/class/AgentWizard.class.php:1279 +#: ../../operation/inventory/inventory.php:334 #: ../../operation/events/events.php:1914 msgid "Server" msgstr "Serveur" @@ -9002,9 +8984,9 @@ msgstr "Serveur" #: ../../enterprise/godmode/policies/policy_queue.php:648 #: ../../enterprise/godmode/policies/policies.php:411 #: ../../enterprise/godmode/policies/policies.php:535 -#: ../../enterprise/godmode/policies/policy_agents.php:531 -#: ../../enterprise/godmode/policies/policy_agents.php:664 -#: ../../enterprise/godmode/policies/policy_agents.php:778 +#: ../../enterprise/godmode/policies/policy_agents.php:567 +#: ../../enterprise/godmode/policies/policy_agents.php:700 +#: ../../enterprise/godmode/policies/policy_agents.php:814 #: ../../enterprise/godmode/policies/policy.php:71 #: ../../enterprise/godmode/massive/massive_edit_modules_satellite.php:248 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:228 @@ -9012,7 +8994,7 @@ msgstr "Serveur" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:305 #: ../../enterprise/include/functions_cron.php:215 #: ../../enterprise/include/functions_tasklist.php:366 -#: ../../enterprise/include/functions_reporting_pdf.php:886 +#: ../../enterprise/include/functions_reporting_pdf.php:887 #: ../../enterprise/include/functions_policies.php:3825 #: ../../enterprise/operation/services/massive/services.create.php:988 #: ../../enterprise/operation/services/massive/service.create.elements.php:383 @@ -9101,9 +9083,8 @@ msgstr "Vider la file" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:441 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:709 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:788 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3505 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3506 #: ../../enterprise/meta/agentsearch.php:135 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:305 #: ../../enterprise/godmode/agentes/collections.agents.php:94 #: ../../enterprise/godmode/agentes/module_manager_editor_prediction.php:85 #: ../../enterprise/godmode/policies/policy_linking.php:150 @@ -9120,9 +9101,6 @@ msgstr "Vider la file" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:220 #: ../../enterprise/include/functions_log.php:279 #: ../../enterprise/include/functions_log.php:282 -#: ../../enterprise/include/functions_inventory.php:393 -#: ../../enterprise/include/functions_inventory.php:880 -#: ../../enterprise/include/functions_inventory.php:936 #: ../../enterprise/include/functions_reporting_pdf.php:528 #: ../../enterprise/include/functions_reporting_pdf.php:536 #: ../../enterprise/include/functions_reporting_pdf.php:544 @@ -9168,10 +9146,10 @@ msgstr "Vider la file" #: ../../enterprise/include/functions_events.php:80 #: ../../enterprise/operation/agentes/tag_view.php:599 #: ../../enterprise/operation/log/log_viewer.php:633 -#: ../../enterprise/operation/inventory/inventory.php:401 #: ../../enterprise/tools/ipam/ipam_network.php:398 #: ../../enterprise/tools/ipam/ipam_ajax.php:379 #: ../../extensions/insert_data.php:158 +#: ../../godmode/modules/manage_inventory_modules.php:305 #: ../../godmode/agentes/status_monitor_custom_fields.php:77 #: ../../godmode/agentes/status_monitor_custom_fields.php:143 #: ../../godmode/agentes/module_manager_editor_prediction.php:126 @@ -9211,8 +9189,8 @@ msgstr "Vider la file" #: ../../mobile/operation/events.php:841 #: ../../include/functions_visual_map_editor.php:422 #: ../../include/functions_visual_map_editor.php:455 -#: ../../include/functions_reporting_html.php:546 -#: ../../include/functions_reporting_html.php:942 +#: ../../include/functions_reporting_html.php:547 +#: ../../include/functions_reporting_html.php:943 #: ../../include/functions_reporting_html.php:1054 #: ../../include/functions_reporting_html.php:1062 #: ../../include/functions_reporting_html.php:1927 @@ -9231,23 +9209,26 @@ msgstr "Vider la file" #: ../../include/functions_reporting_html.php:4869 #: ../../include/functions_reporting_html.php:4917 #: ../../include/functions_reporting_html.php:4956 -#: ../../include/functions_reporting_html.php:5265 -#: ../../include/functions_reporting_html.php:5305 -#: ../../include/functions_reporting_html.php:5555 +#: ../../include/functions_reporting_html.php:5284 +#: ../../include/functions_reporting_html.php:5324 +#: ../../include/functions_reporting_html.php:5574 #: ../../include/ajax/heatmap.ajax.php:244 #: ../../include/ajax/heatmap.ajax.php:283 #: ../../include/ajax/heatmap.ajax.php:318 #: ../../include/ajax/alert_list.ajax.php:459 -#: ../../include/functions_graph.php:5288 ../../include/functions_gis.php:229 +#: ../../include/functions_inventory.php:393 +#: ../../include/functions_inventory.php:880 +#: ../../include/functions_inventory.php:936 +#: ../../include/functions_graph.php:5076 ../../include/functions_gis.php:229 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:546 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:394 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:281 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:371 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:332 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:511 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:235 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:585 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:224 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:414 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:240 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:575 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:217 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:368 #: ../../include/functions_reports.php:1320 #: ../../include/class/NetworkMap.class.php:2968 @@ -9255,7 +9236,7 @@ msgstr "Vider la file" #: ../../include/class/NetworkMap.class.php:3295 #: ../../include/class/AgentsAlerts.class.php:410 #: ../../include/class/AgentsAlerts.class.php:962 -#: ../../include/functions_reporting.php:7013 +#: ../../include/functions_reporting.php:7228 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:337 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:279 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:360 @@ -9278,11 +9259,12 @@ msgstr "Vider la file" #: ../../operation/agentes/exportdata.php:83 #: ../../operation/agentes/status_monitor.php:1320 #: ../../operation/agentes/estado_monitores.php:123 -#: ../../operation/agentes/ver_agente.php:1181 +#: ../../operation/agentes/ver_agente.php:1187 #: ../../operation/agentes/exportdata.excel.php:74 #: ../../operation/gis_maps/ajax.php:236 ../../operation/gis_maps/ajax.php:269 -#: ../../operation/search_alerts.php:34 ../../operation/search_modules.php:33 -#: ../../operation/events/events.php:2611 +#: ../../operation/search_alerts.php:34 +#: ../../operation/inventory/inventory.php:404 +#: ../../operation/search_modules.php:33 ../../operation/events/events.php:2611 msgid "Agent" msgstr "Agent" @@ -9296,11 +9278,11 @@ msgstr "Agent" #: ../../enterprise/include/class/DeploymentCenter.class.php:1280 #: ../../enterprise/include/class/DeploymentCenter.class.php:1397 #: ../../enterprise/include/class/Aws.S3.php:564 -#: ../../enterprise/include/class/Aws.cloud.php:547 +#: ../../enterprise/include/class/Aws.cloud.php:546 #: ../../enterprise/include/functions_reporting.php:2317 -#: ../../enterprise/include/functions_ipam.php:1646 -#: ../../enterprise/include/functions_ipam.php:1647 -#: ../../extensions/api_checker.php:123 ../../extensions/users_connected.php:144 +#: ../../enterprise/include/functions_ipam.php:1654 +#: ../../enterprise/include/functions_ipam.php:1655 +#: ../../extensions/api_checker.php:202 ../../extensions/users_connected.php:144 #: ../../godmode/reporting/reporting_builder.item_editor.php:70 #: ../../godmode/reporting/visual_console_builder.elements.php:790 #: ../../include/functions_visual_map_editor.php:1460 @@ -9328,7 +9310,7 @@ msgstr "État des agents" #: ../../enterprise/include/functions_services.php:1428 #: ../../enterprise/operation/agentes/tag_view.php:131 #: ../../enterprise/operation/services/services.treeview_services.php:295 -#: ../../godmode/groups/group_list.php:1074 +#: ../../godmode/groups/group_list.php:1079 #: ../../godmode/netflow/nf_edit_form.php:236 #: ../../godmode/massive/massive_copy_modules.php:115 #: ../../godmode/massive/massive_copy_modules.php:275 @@ -9339,24 +9321,24 @@ msgstr "État des agents" #: ../../godmode/reporting/reporting_builder.item_editor.php:3784 #: ../../mobile/operation/agents.php:58 ../../mobile/operation/modules.php:69 #: ../../include/functions_reporting_html.php:2483 -#: ../../include/functions.php:1051 ../../include/functions.php:1291 -#: ../../include/functions.php:1298 ../../include/functions.php:1331 -#: ../../include/functions_graph.php:3487 ../../include/functions_graph.php:3488 -#: ../../include/functions_graph.php:5068 +#: ../../include/functions.php:1077 ../../include/functions.php:1317 +#: ../../include/functions.php:1324 ../../include/functions.php:1357 +#: ../../include/functions_graph.php:3330 ../../include/functions_graph.php:3332 +#: ../../include/functions_graph.php:4856 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:432 #: ../../include/functions_massive_operations.php:148 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:315 #: ../../include/lib/Dashboard/Widgets/tree_view.php:385 #: ../../include/lib/Dashboard/Widgets/tree_view.php:418 #: ../../include/lib/Dashboard/Widgets/tree_view.php:683 -#: ../../include/functions_events.php:3098 ../../operation/tree.php:212 +#: ../../include/functions_events.php:3077 ../../operation/tree.php:212 #: ../../operation/tree.php:269 ../../operation/tree.php:486 #: ../../operation/agentes/estado_agente.php:268 #: ../../operation/agentes/status_monitor.php:492 #: ../../operation/agentes/group_view.php:226 #: ../../operation/agentes/group_view.php:231 #: ../../operation/agentes/estado_monitores.php:523 -#: ../../operation/agentes/tactical.php:180 +#: ../../operation/agentes/tactical.php:181 #: ../../operation/netflow/nf_live_view.php:392 ../../general/logon_ok.php:144 msgid "Normal" msgstr "Normal" @@ -9394,7 +9376,7 @@ msgstr "Normal" #: ../../enterprise/operation/services/services.table_services.php:161 #: ../../extensions/module_groups.php:50 #: ../../godmode/modules/manage_network_components_form_wizard.php:418 -#: ../../godmode/groups/group_list.php:1054 +#: ../../godmode/groups/group_list.php:1059 #: ../../godmode/massive/massive_copy_modules.php:117 #: ../../godmode/massive/massive_copy_modules.php:277 #: ../../godmode/massive/massive_delete_modules.php:420 @@ -9403,14 +9385,14 @@ msgstr "Normal" #: ../../godmode/massive/massive_edit_modules.php:473 #: ../../godmode/reporting/reporting_builder.item_editor.php:3786 #: ../../mobile/operation/agents.php:57 ../../mobile/operation/modules.php:71 -#: ../../include/functions_reporting_html.php:863 +#: ../../include/functions_reporting_html.php:864 #: ../../include/functions_reporting_html.php:2484 #: ../../include/functions_reporting_html.php:4785 -#: ../../include/functions.php:1059 ../../include/functions.php:1295 -#: ../../include/functions.php:1296 ../../include/functions.php:1298 -#: ../../include/functions.php:1339 ../../include/functions_graph.php:3507 -#: ../../include/functions_graph.php:3508 ../../include/functions_graph.php:5076 -#: ../../include/functions_ui.php:2610 +#: ../../include/functions.php:1085 ../../include/functions.php:1321 +#: ../../include/functions.php:1322 ../../include/functions.php:1324 +#: ../../include/functions.php:1365 ../../include/functions_graph.php:3354 +#: ../../include/functions_graph.php:3356 ../../include/functions_graph.php:4864 +#: ../../include/functions_ui.php:2614 #: ../../include/rest-api/models/VisualConsole/Items/Group.php:418 #: ../../include/functions_massive_operations.php:150 #: ../../include/class/AgentWizard.class.php:1401 @@ -9419,14 +9401,14 @@ msgstr "Normal" #: ../../include/lib/Dashboard/Widgets/tree_view.php:387 #: ../../include/lib/Dashboard/Widgets/tree_view.php:420 #: ../../include/lib/Dashboard/Widgets/tree_view.php:663 -#: ../../include/functions_events.php:3106 ../../operation/tree.php:214 +#: ../../include/functions_events.php:3085 ../../operation/tree.php:214 #: ../../operation/tree.php:271 ../../operation/tree.php:466 #: ../../operation/agentes/estado_agente.php:270 #: ../../operation/agentes/status_monitor.php:494 #: ../../operation/agentes/group_view.php:228 #: ../../operation/agentes/group_view.php:233 #: ../../operation/agentes/estado_monitores.php:521 -#: ../../operation/agentes/tactical.php:178 +#: ../../operation/agentes/tactical.php:179 #: ../../operation/gis_maps/render_view.php:164 ../../general/logon_ok.php:142 msgid "Critical" msgstr "Critique" @@ -9468,11 +9450,11 @@ msgstr "Récursion" #: ../../godmode/massive/massive_edit_modules.php:389 #: ../../godmode/massive/massive_edit_modules.php:475 #: ../../godmode/reporting/reporting_builder.item_editor.php:3788 -#: ../../godmode/events/event_edit_filter.php:332 -#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1297 +#: ../../godmode/events/event_edit_filter.php:342 +#: ../../mobile/operation/modules.php:73 ../../include/functions.php:1323 #: ../../include/functions_massive_operations.php:152 #: ../../include/lib/Dashboard/Widgets/events_list.php:319 -#: ../../include/functions_events.php:3054 +#: ../../include/functions_events.php:3033 #: ../../operation/agentes/estado_agente.php:272 #: ../../operation/agentes/status_monitor.php:496 #: ../../operation/events/events.php:1664 @@ -9486,7 +9468,7 @@ msgstr "Anormal" #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:124 #: ../../enterprise/operation/agentes/tag_view.php:137 #: ../../enterprise/operation/services/services.treeview_services.php:290 -#: ../../godmode/groups/group_list.php:1069 +#: ../../godmode/groups/group_list.php:1074 #: ../../godmode/massive/massive_copy_modules.php:120 #: ../../godmode/massive/massive_copy_modules.php:280 #: ../../godmode/massive/massive_delete_modules.php:423 @@ -9495,7 +9477,7 @@ msgstr "Anormal" #: ../../godmode/massive/massive_edit_modules.php:476 #: ../../godmode/reporting/reporting_builder.item_editor.php:3789 #: ../../mobile/operation/modules.php:75 -#: ../../include/functions_reporting_html.php:656 +#: ../../include/functions_reporting_html.php:657 #: ../../include/functions_reporting_html.php:2487 #: ../../include/functions_reporting_html.php:4593 #: ../../include/functions_massive_operations.php:153 @@ -9507,7 +9489,7 @@ msgstr "Anormal" #: ../../operation/agentes/status_monitor.php:498 #: ../../operation/agentes/group_view.php:225 #: ../../operation/agentes/group_view.php:230 -#: ../../operation/agentes/tactical.php:182 ../../general/logon_ok.php:146 +#: ../../operation/agentes/tactical.php:183 ../../general/logon_ok.php:146 msgid "Not init" msgstr "Non initialisé" @@ -9522,15 +9504,15 @@ msgstr "Module d’état" #: ../../enterprise/meta/monitoring/custom_fields_view.php:222 #: ../../enterprise/meta/monitoring/custom_fields_view.php:228 #: ../../enterprise/meta/monitoring/custom_fields_view.php:229 -#: ../../include/ajax/events.php:847 ../../operation/events/events.php:1834 +#: ../../include/ajax/events.php:848 ../../operation/events/events.php:1834 msgid "Save filter" msgstr "Sauvegarder le filtre" #: ../../enterprise/meta/monitoring/custom_fields_view.php:236 #: ../../enterprise/meta/monitoring/custom_fields_view.php:242 #: ../../enterprise/meta/monitoring/custom_fields_view.php:243 -#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:583 -#: ../../include/ajax/events.php:599 ../../operation/netflow/nf_live_view.php:397 +#: ../../include/ajax/custom_fields.php:589 ../../include/ajax/events.php:584 +#: ../../include/ajax/events.php:600 ../../operation/netflow/nf_live_view.php:397 #: ../../operation/events/sound_events.php:184 #: ../../operation/events/events.php:1826 msgid "Load filter" @@ -9546,7 +9528,7 @@ msgid "Custom Fields Data" msgstr "Données des champs personnalisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:293 -#: ../../godmode/events/event_edit_filter.php:660 +#: ../../godmode/events/event_edit_filter.php:670 #: ../../operation/events/events.php:1930 msgid "Module search" msgstr "Rechercher module" @@ -9574,7 +9556,7 @@ msgstr "Afficher" #: ../../enterprise/operation/reporting/custom_reporting.php:80 #: ../../godmode/modules/manage_network_templates.php:290 #: ../../godmode/agentes/planned_downtime.list.php:907 -#: ../../include/graphs/functions_flot.php:377 +#: ../../include/graphs/functions_flot.php:382 #: ../../include/class/ModuleTemplates.class.php:935 #: ../../operation/network/network_report.php:140 #: ../../operation/incidents/list_integriaims_incidents.php:428 @@ -9585,25 +9567,25 @@ msgstr "Exporter un fichier en CSV" #: ../../enterprise/meta/monitoring/custom_fields_view.php:349 #: ../../enterprise/include/class/DatabaseHA.class.php:217 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1863 -#: ../../include/functions_ui.php:3432 +#: ../../include/functions_ui.php:3436 msgid "Processing" msgstr "Traitement en cours" #: ../../enterprise/meta/monitoring/custom_fields_view.php:374 #: ../../mobile/operation/groups.php:153 -#: ../../include/functions_reporting_html.php:5737 +#: ../../include/functions_reporting_html.php:5756 #: ../../include/functions_agents.php:3881 msgid "Agents critical" msgstr "Agents en état critique" #: ../../enterprise/meta/monitoring/custom_fields_view.php:387 -#: ../../include/functions_reporting_html.php:5740 +#: ../../include/functions_reporting_html.php:5759 #: ../../include/functions_agents.php:3891 msgid "Agents warning" msgstr "Agents en état d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:400 -#: ../../include/functions_reporting_html.php:5746 +#: ../../include/functions_reporting_html.php:5765 #: ../../include/functions_agents.php:3871 #: ../../include/functions_agents.php:3925 msgid "Agents ok" @@ -9611,58 +9593,58 @@ msgstr "Agents en état OK" #: ../../enterprise/meta/monitoring/custom_fields_view.php:413 #: ../../mobile/operation/groups.php:156 -#: ../../include/functions_reporting_html.php:5749 +#: ../../include/functions_reporting_html.php:5768 #: ../../include/functions_agents.php:3901 msgid "Agents unknown" msgstr "Agents inconnus" #: ../../enterprise/meta/monitoring/custom_fields_view.php:426 #: ../../mobile/operation/groups.php:150 -#: ../../include/functions_reporting_html.php:5755 +#: ../../include/functions_reporting_html.php:5774 #: ../../include/functions_agents.php:3915 msgid "Agents not init" msgstr "Agents non initialisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:452 -#: ../../include/functions_reporting.php:11751 +#: ../../include/functions_reporting.php:12037 msgid "Monitor critical" msgstr "Moniteur en état critique" #: ../../enterprise/meta/monitoring/custom_fields_view.php:463 -#: ../../include/functions_reporting.php:11755 +#: ../../include/functions_reporting.php:12041 msgid "Monitor warning" msgstr "Moniteur en état d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:474 -#: ../../include/functions_reporting.php:11762 +#: ../../include/functions_reporting.php:12048 msgid "Monitor normal" msgstr "Moniteur en état normal" #: ../../enterprise/meta/monitoring/custom_fields_view.php:485 -#: ../../include/functions_reporting.php:11766 +#: ../../include/functions_reporting.php:12052 msgid "Monitor unknown" msgstr "Moniteur inconnu" #: ../../enterprise/meta/monitoring/custom_fields_view.php:496 -#: ../../include/functions_reporting.php:11773 +#: ../../include/functions_reporting.php:12059 msgid "Monitor not init" msgstr "Moniteur non initialisé" #: ../../enterprise/meta/monitoring/custom_fields_view.php:511 -#: ../../include/functions_reporting_html.php:5764 -#: ../../include/functions_reporting_html.php:5769 +#: ../../include/functions_reporting_html.php:5783 +#: ../../include/functions_reporting_html.php:5788 msgid "Agents by status" msgstr "Agents par état" #: ../../enterprise/meta/monitoring/custom_fields_view.php:519 -#: ../../include/functions_reporting.php:11793 -#: ../../include/functions_reporting.php:11799 +#: ../../include/functions_reporting.php:12079 +#: ../../include/functions_reporting.php:12085 msgid "Monitors by status" msgstr "Moniteurs par état" #: ../../enterprise/meta/monitoring/custom_fields_view.php:533 #: ../../enterprise/operation/services/services.treeview_services.php:273 -#: ../../godmode/groups/group_list.php:1052 +#: ../../godmode/groups/group_list.php:1057 #: ../../include/lib/Dashboard/Widgets/tree_view.php:661 #: ../../operation/tree.php:464 msgid "Critical agents" @@ -9670,7 +9652,7 @@ msgstr "Agents critiques" #: ../../enterprise/meta/monitoring/custom_fields_view.php:543 #: ../../enterprise/operation/services/services.treeview_services.php:278 -#: ../../godmode/groups/group_list.php:1057 +#: ../../godmode/groups/group_list.php:1062 #: ../../include/lib/Dashboard/Widgets/tree_view.php:666 #: ../../operation/tree.php:469 msgid "Warning agents" @@ -9678,7 +9660,7 @@ msgstr "Agents d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:553 #: ../../enterprise/operation/services/services.treeview_services.php:293 -#: ../../godmode/groups/group_list.php:1072 +#: ../../godmode/groups/group_list.php:1077 #: ../../include/lib/Dashboard/Widgets/tree_view.php:681 #: ../../operation/tree.php:484 msgid "Normal agents" @@ -9686,7 +9668,7 @@ msgstr "Agents normaux" #: ../../enterprise/meta/monitoring/custom_fields_view.php:563 #: ../../enterprise/operation/services/services.treeview_services.php:283 -#: ../../godmode/groups/group_list.php:1062 +#: ../../godmode/groups/group_list.php:1067 #: ../../include/lib/Dashboard/Widgets/tree_view.php:671 #: ../../operation/tree.php:474 msgid "Unknown agents" @@ -9694,7 +9676,7 @@ msgstr "Agents inconnus" #: ../../enterprise/meta/monitoring/custom_fields_view.php:573 #: ../../enterprise/operation/services/services.treeview_services.php:288 -#: ../../godmode/groups/group_list.php:1067 +#: ../../godmode/groups/group_list.php:1072 #: ../../include/lib/Dashboard/Widgets/tree_view.php:676 #: ../../operation/tree.php:479 msgid "Not init agents" @@ -9703,7 +9685,7 @@ msgstr "Agents non initialisés" #: ../../enterprise/meta/monitoring/custom_fields_view.php:602 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:274 -#: ../../godmode/groups/group_list.php:1053 ../../mobile/operation/groups.php:171 +#: ../../godmode/groups/group_list.php:1058 ../../mobile/operation/groups.php:171 #: ../../include/lib/Dashboard/Widgets/tree_view.php:662 #: ../../operation/tree.php:465 msgid "Critical modules" @@ -9712,7 +9694,7 @@ msgstr "Modules en état critique" #: ../../enterprise/meta/monitoring/custom_fields_view.php:613 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:279 -#: ../../godmode/groups/group_list.php:1058 ../../mobile/operation/groups.php:168 +#: ../../godmode/groups/group_list.php:1063 ../../mobile/operation/groups.php:168 #: ../../include/lib/Dashboard/Widgets/tree_view.php:667 #: ../../operation/tree.php:470 msgid "Warning modules" @@ -9721,7 +9703,7 @@ msgstr "Modules en état d'alerte" #: ../../enterprise/meta/monitoring/custom_fields_view.php:624 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:294 -#: ../../godmode/groups/group_list.php:1073 ../../mobile/operation/groups.php:165 +#: ../../godmode/groups/group_list.php:1078 ../../mobile/operation/groups.php:165 #: ../../include/lib/Dashboard/Widgets/tree_view.php:682 #: ../../operation/tree.php:485 msgid "Normal modules" @@ -9730,7 +9712,7 @@ msgstr "Modules normaux" #: ../../enterprise/meta/monitoring/custom_fields_view.php:635 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:284 -#: ../../godmode/groups/group_list.php:1063 ../../mobile/operation/groups.php:159 +#: ../../godmode/groups/group_list.php:1068 ../../mobile/operation/groups.php:159 #: ../../include/lib/Dashboard/Widgets/tree_view.php:672 #: ../../operation/tree.php:475 msgid "Unknown modules" @@ -9739,7 +9721,7 @@ msgstr "Modules inconnus" #: ../../enterprise/meta/monitoring/custom_fields_view.php:646 #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:289 -#: ../../godmode/groups/group_list.php:1068 ../../mobile/operation/groups.php:162 +#: ../../godmode/groups/group_list.php:1073 ../../mobile/operation/groups.php:162 #: ../../include/lib/Dashboard/Widgets/tree_view.php:677 #: ../../operation/tree.php:480 msgid "Not init modules" @@ -9780,9 +9762,9 @@ msgstr "Confirmer " #: ../../enterprise/meta/monitoring/wizard/wizard.agent.php:76 #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:229 -#: ../../godmode/agentes/configurar_agente.php:853 +#: ../../godmode/agentes/configurar_agente.php:866 #: ../../godmode/agentes/modificar_agente.php:947 -#: ../../include/class/SnmpConsole.class.php:814 +#: ../../include/class/SnmpConsole.class.php:815 #: ../../operation/agentes/estado_agente.php:964 #: ../../operation/agentes/estado_agente.php:974 #: ../../operation/snmpconsole/snmp_statistics.php:193 @@ -9815,7 +9797,7 @@ msgstr "Créer une alerte" #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:213 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:222 -#: ../../enterprise/meta/include/functions_wizard_meta.php:3512 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3513 #: ../../enterprise/extensions/disabled/check_acls.php:133 #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:211 #: ../../enterprise/godmode/policies/policy_alerts.php:352 @@ -9834,8 +9816,6 @@ msgstr "Créer une alerte" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3790 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:3808 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:239 -#: ../../enterprise/include/functions_inventory.php:881 -#: ../../enterprise/include/functions_inventory.php:937 #: ../../enterprise/include/functions_ui.php:47 #: ../../enterprise/include/functions_reporting_pdf.php:529 #: ../../enterprise/include/functions_reporting_pdf.php:537 @@ -9873,8 +9853,6 @@ msgstr "Créer une alerte" #: ../../enterprise/include/functions_services.php:1779 #: ../../enterprise/include/functions_events.php:90 #: ../../enterprise/operation/agentes/policy_view.php:258 -#: ../../enterprise/operation/agentes/agent_inventory.php:116 -#: ../../enterprise/operation/inventory/inventory.php:357 #: ../../extensions/agents_modules.php:444 ../../extensions/insert_data.php:175 #: ../../godmode/agentes/module_manager_editor_prediction.php:154 #: ../../godmode/agentes/planned_downtime.list.php:395 @@ -9910,8 +9888,8 @@ msgstr "Créer une alerte" #: ../../godmode/reporting/visual_console_builder.wizard.php:770 #: ../../godmode/servers/plugin.php:88 ../../mobile/operation/alerts.php:338 #: ../../include/functions_visual_map_editor.php:497 -#: ../../include/functions_reporting_html.php:547 -#: ../../include/functions_reporting_html.php:943 +#: ../../include/functions_reporting_html.php:548 +#: ../../include/functions_reporting_html.php:944 #: ../../include/functions_reporting_html.php:1928 #: ../../include/functions_reporting_html.php:2265 #: ../../include/functions_reporting_html.php:2369 @@ -9928,21 +9906,24 @@ msgstr "Créer une alerte" #: ../../include/ajax/alert_list.ajax.php:292 #: ../../include/ajax/alert_list.ajax.php:317 #: ../../include/ajax/alert_list.ajax.php:480 -#: ../../include/functions_graph.php:5395 ../../include/functions_treeview.php:64 +#: ../../include/functions_inventory.php:881 +#: ../../include/functions_inventory.php:937 +#: ../../include/functions_graph.php:5183 ../../include/functions_treeview.php:64 +#: ../../include/functions_ui.php:6863 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:563 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:411 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:299 #: ../../include/rest-api/models/VisualConsole/Items/StaticGraph.php:388 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:349 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:529 -#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:252 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:604 -#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:242 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:432 +#: ../../include/rest-api/models/VisualConsole/Items/EventsHistory.php:257 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:594 +#: ../../include/rest-api/models/VisualConsole/Items/DonutGraph.php:235 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:385 #: ../../include/functions_reports.php:1351 #: ../../include/class/AgentsAlerts.class.php:412 #: ../../include/class/AgentsAlerts.class.php:891 -#: ../../include/functions_reporting.php:7014 +#: ../../include/functions_reporting.php:7229 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:355 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:278 #: ../../include/lib/Dashboard/Widgets/DataMatrix.php:359 @@ -9959,15 +9940,18 @@ msgstr "Créer une alerte" #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:83 #: ../../operation/agentes/estado_monitores.php:125 +#: ../../operation/agentes/agent_inventory.php:116 #: ../../operation/agentes/exportdata.excel.php:74 -#: ../../operation/search_alerts.php:35 ../../operation/search_modules.php:32 +#: ../../operation/search_alerts.php:35 +#: ../../operation/inventory/inventory.php:360 +#: ../../operation/search_modules.php:32 msgid "Module" msgstr "Module" #: ../../enterprise/meta/monitoring/wizard/wizard.manage_alert.php:224 #: ../../enterprise/godmode/policies/policy_alerts.php:351 #: ../../enterprise/godmode/policies/policy_alerts.php:557 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:338 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:340 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:322 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:1417 #: ../../enterprise/include/functions_tasklist.php:356 @@ -10004,7 +9988,7 @@ msgstr "Modèle" #: ../../enterprise/meta/general/header.php:125 #: ../../enterprise/meta/general/main_header.php:558 #: ../../enterprise/godmode/policies/policy_alerts.php:648 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:685 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:687 #: ../../enterprise/godmode/massive/massive_add_modules_policy.php:141 #: ../../enterprise/godmode/services/services.service.php:906 #: ../../enterprise/godmode/services/services.service.php:918 @@ -10069,7 +10053,7 @@ msgstr "Créer une nouvelle action" #: ../../godmode/alerts/alert_view.php:361 #: ../../godmode/alerts/alert_list.builder.php:173 #: ../../include/functions_reporting_html.php:3616 -#: ../../include/functions_reporting_html.php:5387 +#: ../../include/functions_reporting_html.php:5406 #: ../../include/ajax/alert_list.ajax.php:540 #: ../../include/ajax/custom_fields.php:413 #: ../../include/class/AgentsAlerts.class.php:385 @@ -10090,7 +10074,7 @@ msgstr "Configuration avancée" #: ../../enterprise/meta/monitoring/wizard/wizard.module.web.php:113 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:42 #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:119 -#: ../../operation/snmpconsole/snmp_browser.php:639 +#: ../../operation/snmpconsole/snmp_browser.php:637 msgid "Create module" msgstr "Créer un module" @@ -10121,9 +10105,9 @@ msgid "Invalid characters founded in module name" msgstr "Caractères non valides trouvés dans le nom du module" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:234 -#: ../../godmode/agentes/configurar_agente.php:830 -#: ../../godmode/agentes/configurar_agente.php:852 -#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:93 +#: ../../godmode/agentes/configurar_agente.php:843 +#: ../../godmode/agentes/configurar_agente.php:865 +#: ../../godmode/agentes/modificar_agente.php:108 ../../godmode/menu.php:94 #: ../../godmode/servers/modificar_server.php:140 msgid "Manage agents" msgstr "Gérer les agents" @@ -10135,7 +10119,7 @@ msgstr "Gérer les agents" #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:785 #: ../../enterprise/meta/agentsearch.php:52 #: ../../enterprise/meta/agentsearch.php:58 -#: ../../godmode/events/event_edit_filter.php:397 +#: ../../godmode/events/event_edit_filter.php:407 #: ../../mobile/operation/home.php:168 ../../operation/events/events.php:1908 msgid "Agent search" msgstr "Rechercher agent" @@ -10222,8 +10206,8 @@ msgstr "Le modèle doit être défini." #: ../../enterprise/meta/monitoring/wizard/wizard.main.php:653 #: ../../godmode/users/configure_profile.php:291 -#: ../../godmode/alerts/alert_list.php:501 -#: ../../godmode/alerts/alert_list.php:503 +#: ../../godmode/alerts/alert_list.php:519 +#: ../../godmode/alerts/alert_list.php:521 msgid "Manage alerts" msgstr "Gestion d'alertes" @@ -10252,8 +10236,8 @@ msgstr "Type de module" #: ../../enterprise/meta/monitoring/wizard/wizard.create_module.php:148 #: ../../mobile/include/functions_web.php:24 -#: ../../include/functions_reporting_html.php:5306 -#: ../../include/functions_reporting_html.php:5460 +#: ../../include/functions_reporting_html.php:5325 +#: ../../include/functions_reporting_html.php:5479 msgid "Monitor" msgstr "Moniteur" @@ -10279,12 +10263,12 @@ msgstr "Vérification web" #: ../../include/functions_reporting_html.php:1717 #: ../../include/ajax/heatmap.ajax.php:191 #: ../../include/ajax/heatmap.ajax.php:255 -#: ../../include/ajax/heatmap.ajax.php:294 ../../include/functions_graph.php:5311 +#: ../../include/ajax/heatmap.ajax.php:294 ../../include/functions_graph.php:5099 #: ../../include/functions_treeview.php:122 ../../include/functions_html.php:1570 -#: ../../include/functions_events.php:4302 ../../operation/heatmap.php:100 +#: ../../include/functions_events.php:4281 ../../operation/heatmap.php:100 #: ../../operation/heatmap.php:102 ../../operation/agentes/status_monitor.php:517 #: ../../operation/agentes/estado_monitores.php:552 -#: ../../operation/agentes/ver_agente.php:1169 +#: ../../operation/agentes/ver_agente.php:1175 msgid "Module group" msgstr "Groupe de modules" @@ -10303,10 +10287,10 @@ msgstr "Assistant étape par étape" #: ../../enterprise/godmode/agentes/plugins_manager.php:126 #: ../../enterprise/godmode/policies/policy_plugins.php:126 #: ../../godmode/modules/manage_network_components_form_common.php:53 -#: ../../godmode/users/configure_user.php:1391 +#: ../../godmode/users/configure_user.php:1450 #: ../../godmode/netflow/nf_edit_form.php:237 -#: ../../godmode/alerts/alert_commands.php:158 -#: ../../godmode/alerts/alert_commands.php:195 +#: ../../godmode/alerts/alert_commands.php:159 +#: ../../godmode/alerts/alert_commands.php:196 #: ../../godmode/alerts/configure_alert_template.php:946 #: ../../godmode/alerts/configure_alert_template.php:987 #: ../../godmode/alerts/configure_alert_template.php:1138 @@ -10331,13 +10315,13 @@ msgstr "Veuillez sélectionner un module" #: ../../enterprise/include/class/Omnishell.class.php:854 #: ../../enterprise/include/class/DB2.app.php:841 #: ../../enterprise/include/class/SAP.app.php:803 -#: ../../enterprise/include/class/Aws.cloud.php:1425 +#: ../../enterprise/include/class/Aws.cloud.php:1424 #: ../../enterprise/include/class/MySQL.app.php:909 #: ../../enterprise/include/class/Oracle.app.php:950 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:794 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2182 #: ../../godmode/alerts/configure_alert_template.php:1171 -#: ../../godmode/wizards/HostDevices.class.php:1594 +#: ../../godmode/wizards/HostDevices.class.php:1593 #: ../../include/class/CustomNetScan.class.php:726 #: ../../include/lib/ClusterViewer/ClusterWizard.php:1240 msgid "Finish" @@ -10361,14 +10345,14 @@ msgstr "Aucune description disponible" #: ../../godmode/modules/manage_network_components_form_wmi.php:60 #: ../../godmode/alerts/configure_alert_template.php:1288 #: ../../godmode/alerts/alert_list.builder.php:293 -#: ../../include/functions.php:2732 +#: ../../include/functions.php:2758 #: ../../include/class/AgentWizard.class.php:2626 msgid "Empty" msgstr "Vide" #: ../../enterprise/meta/monitoring/wizard/wizard.php:139 -#: ../../include/functions_events.php:3148 -#: ../../include/functions_events.php:3419 +#: ../../include/functions_events.php:3127 +#: ../../include/functions_events.php:3398 msgid "New" msgstr "Nouveau" @@ -10396,16 +10380,16 @@ msgstr "Veuillez sélectionner un agent" #: ../../godmode/massive/massive_copy_modules.php:235 #: ../../godmode/massive/massive_operations.php:344 #: ../../godmode/massive/massive_add_profiles.php:292 -#: ../../include/functions_events.php:4150 +#: ../../include/functions_events.php:4129 #: ../../operation/reporting/reporting_viewer.php:347 -#: ../../operation/reporting/graph_viewer.php:316 +#: ../../operation/reporting/graph_viewer.php:384 #: ../../general/ui/agents_list.php:146 msgid "Loading" msgstr "Chargement en cours" #: ../../enterprise/meta/monitoring/wizard/wizard.php:151 #: ../../enterprise/meta/include/functions_wizard_meta.php:642 -#: ../../godmode/tag/edit_tag.php:227 ../../include/functions_reporting.php:7151 +#: ../../godmode/tag/edit_tag.php:227 ../../include/functions_reporting.php:7366 #: ../../include/lib/Dashboard/Widgets/url.php:216 msgid "Url" msgstr "URL" @@ -10440,10 +10424,10 @@ msgid "Group View" msgstr "Vue du groupe" #: ../../enterprise/meta/monitoring/group_view.php:72 -#: ../../godmode/groups/group_list.php:321 -#: ../../godmode/users/configure_user.php:1292 +#: ../../godmode/groups/group_list.php:326 +#: ../../godmode/users/configure_user.php:1351 #: ../../godmode/massive/massive_edit_users.php:277 -#: ../../operation/users/user_edit.php:362 +#: ../../operation/users/user_edit.php:436 #: ../../operation/agentes/group_view.php:89 ../../operation/menu.php:50 msgid "Group view" msgstr "Affichage du groupe" @@ -10506,16 +10490,16 @@ msgid "Group or Tag" msgstr "Groupe ou étiquette" #: ../../enterprise/meta/monitoring/group_view.php:235 -#: ../../enterprise/include/functions_inventory.php:511 -#: ../../enterprise/include/functions_inventory.php:654 -#: ../../enterprise/operation/agentes/agent_inventory.php:266 #: ../../enterprise/operation/services/services.treeview_services.php:265 -#: ../../godmode/groups/group_list.php:1044 +#: ../../godmode/groups/group_list.php:1049 #: ../../include/functions_reporting_html.php:2472 #: ../../include/functions_reporting_html.php:2482 -#: ../../include/functions_alerts.php:3363 +#: ../../include/functions_inventory.php:511 +#: ../../include/functions_inventory.php:654 +#: ../../include/functions_alerts.php:3386 #: ../../include/lib/Dashboard/Widgets/tree_view.php:653 #: ../../operation/tree.php:456 ../../operation/agentes/group_view.php:223 +#: ../../operation/agentes/agent_inventory.php:266 msgid "Total" msgstr "Total" @@ -10523,13 +10507,13 @@ msgstr "Total" #: ../../enterprise/operation/agentes/policy_view.php:345 #: ../../godmode/alerts/alert_list.list.php:573 #: ../../godmode/alerts/alert_view.php:105 ../../mobile/operation/alerts.php:324 -#: ../../include/functions.php:1248 ../../include/functions_agents.php:2942 +#: ../../include/functions.php:1274 ../../include/functions_agents.php:2942 #: ../../include/functions_agents.php:2953 ../../include/functions_ui.php:1253 #: ../../include/class/AgentsAlerts.class.php:937 -#: ../../include/class/SnmpConsole.class.php:874 -#: ../../include/functions_reporting.php:12667 -#: ../../include/functions_events.php:2822 -#: ../../include/functions_events.php:3022 +#: ../../include/class/SnmpConsole.class.php:875 +#: ../../include/functions_reporting.php:12953 +#: ../../include/functions_events.php:2801 +#: ../../include/functions_events.php:3001 #: ../../operation/agentes/group_view.php:234 msgid "Alert fired" msgstr "Alerte déclenchée" @@ -10552,13 +10536,13 @@ msgstr "Vue tactique" #: ../../enterprise/meta/monitoring/tactical.php:63 #: ../../enterprise/meta/general/main_header.php:103 #: ../../enterprise/meta/general/main_menu.php:202 -#: ../../godmode/users/configure_user.php:1293 +#: ../../godmode/users/configure_user.php:1352 #: ../../godmode/massive/massive_edit_users.php:278 #: ../../mobile/operation/home.php:45 ../../mobile/operation/tactical.php:97 #: ../../include/lib/Dashboard/Widgets/tactical.php:176 #: ../../include/lib/Dashboard/Widgets/tactical.php:533 -#: ../../operation/users/user_edit.php:363 -#: ../../operation/agentes/tactical.php:69 ../../operation/menu.php:47 +#: ../../operation/users/user_edit.php:437 +#: ../../operation/agentes/tactical.php:70 ../../operation/menu.php:47 msgid "Tactical view" msgstr "Affichage tactique" @@ -10572,13 +10556,13 @@ msgstr "Rapport de l'état" #: ../../enterprise/meta/general/main_menu.php:267 #: ../../enterprise/include/class/CommandCenter.class.php:1078 #: ../../enterprise/tools/ipam/ipam_network.php:400 -#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:240 +#: ../../enterprise/tools/ipam/ipam_massive.php:103 ../../godmode/menu.php:243 #: ../../godmode/events/events.php:128 ../../mobile/include/functions_web.php:25 #: ../../mobile/operation/home.php:51 ../../mobile/operation/events.php:908 -#: ../../include/functions.php:4119 ../../include/ajax/events.php:2123 +#: ../../include/functions.php:4145 ../../include/ajax/events.php:2134 #: ../../include/functions_reports.php:864 #: ../../include/functions_reports.php:868 -#: ../../include/functions_reports.php:872 ../../operation/menu.php:383 +#: ../../include/functions_reports.php:872 ../../operation/menu.php:387 #: ../../operation/events/events.php:1558 ../../operation/events/events.php:1566 msgid "Events" msgstr "Événements" @@ -10597,7 +10581,7 @@ msgstr "Plus d'événements" #: ../../enterprise/meta/event/custom_events.php:38 #: ../../enterprise/godmode/reporting/graph_template_editor.php:255 -#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:389 +#: ../../godmode/users/configure_profile.php:298 ../../operation/menu.php:393 msgid "View events" msgstr "Afficher les événements" @@ -10610,7 +10594,7 @@ msgstr "Afficher les événements" msgid "Create filter" msgstr "Créer un filtre" -#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:235 +#: ../../enterprise/meta/event/custom_events.php:50 ../../godmode/menu.php:238 #: ../../godmode/events/events.php:68 msgid "Event responses" msgstr "Réponses des événements" @@ -10620,14 +10604,14 @@ msgstr "Réponses des événements" #: ../../enterprise/meta/event/custom_events.php:74 #: ../../enterprise/meta/event/custom_events.php:92 #: ../../godmode/agentes/agent_manager.php:945 -#: ../../godmode/agentes/agent_manager.php:970 ../../godmode/menu.php:99 +#: ../../godmode/agentes/agent_manager.php:970 ../../godmode/menu.php:100 #: ../../godmode/massive/massive_edit_agents.php:1251 #: ../../godmode/reporting/reporting_builder.item_editor.php:76 #: ../../include/functions_reporting_html.php:1585 -#: ../../include/functions_events.php:4264 +#: ../../include/functions_events.php:4243 #: ../../operation/agentes/status_monitor.php:62 #: ../../operation/agentes/status_monitor.php:85 -#: ../../operation/agentes/ver_agente.php:1556 +#: ../../operation/agentes/ver_agente.php:1574 msgid "Custom fields" msgstr "Champs personnalisés" @@ -10642,7 +10626,7 @@ msgid "Filters" msgstr "Filtres" #: ../../enterprise/meta/event/custom_events.php:79 -#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1710 +#: ../../godmode/events/events.php:100 ../../include/ajax/events.php:1717 msgid "Responses" msgstr "Réponses" @@ -10742,7 +10726,7 @@ msgstr "" #: ../../enterprise/meta/include/functions_autoprovision.php:640 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2946 -#: ../../enterprise/include/functions_ipam.php:1643 +#: ../../enterprise/include/functions_ipam.php:1651 #: ../../godmode/reporting/reporting_builder.list_items.php:440 #: ../../godmode/reporting/reporting_builder.list_items.php:740 #: ../../godmode/reporting/graph_builder.graph_editor.php:217 @@ -10840,7 +10824,7 @@ msgstr "Erreur Nom dupliqué" #: ../../godmode/users/configure_profile.php:76 #: ../../godmode/users/user_list.php:253 ../../godmode/users/user_list.php:278 #: ../../godmode/users/user_list.php:289 -#: ../../godmode/users/configure_user.php:293 +#: ../../godmode/users/configure_user.php:287 #: ../../operation/users/user_edit_header.php:91 msgid "User management" msgstr "Gestion des utilisateurs" @@ -10850,7 +10834,7 @@ msgstr "Gestion des utilisateurs" #: ../../godmode/users/profile_list.php:74 #: ../../godmode/users/configure_profile.php:66 #: ../../godmode/users/user_list.php:264 -#: ../../godmode/users/configure_user.php:304 ../../godmode/menu.php:155 +#: ../../godmode/users/configure_user.php:298 ../../godmode/menu.php:156 msgid "Profile management" msgstr "Gestion des profils" @@ -10859,7 +10843,7 @@ msgstr "Gestion des profils" #: ../../enterprise/meta/general/header.php:211 #: ../../enterprise/meta/general/header.php:221 #: ../../enterprise/meta/general/main_header.php:624 -#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:488 +#: ../../enterprise/meta/general/main_header.php:630 ../../operation/menu.php:492 #: ../../general/header.php:407 ../../general/header.php:417 msgid "Edit my user" msgstr "Modifier mon utilisateur" @@ -10894,7 +10878,7 @@ msgstr "Alias" #: ../../include/functions_reporting_html.php:4054 #: ../../include/functions_reporting_html.php:4148 #: ../../include/functions_treeview.php:640 -#: ../../include/functions_events.php:4240 ../../operation/gis_maps/ajax.php:290 +#: ../../include/functions_events.php:4219 ../../operation/gis_maps/ajax.php:290 msgid "IP Address" msgstr "Adresse IP" @@ -10903,13 +10887,13 @@ msgstr "Adresse IP" #: ../../enterprise/godmode/modules/configure_local_component.php:515 #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:183 #: ../../enterprise/godmode/setup/setup_log_collector.php:49 -#: ../../enterprise/include/functions_metaconsole.php:1338 -#: ../../enterprise/include/functions_metaconsole.php:1371 -#: ../../enterprise/include/functions_metaconsole.php:1404 -#: ../../enterprise/include/functions_metaconsole.php:1437 -#: ../../enterprise/include/functions_metaconsole.php:1470 -#: ../../enterprise/include/functions_metaconsole.php:1501 -#: ../../enterprise/include/functions_metaconsole.php:1534 +#: ../../enterprise/include/functions_metaconsole.php:1339 +#: ../../enterprise/include/functions_metaconsole.php:1372 +#: ../../enterprise/include/functions_metaconsole.php:1405 +#: ../../enterprise/include/functions_metaconsole.php:1438 +#: ../../enterprise/include/functions_metaconsole.php:1471 +#: ../../enterprise/include/functions_metaconsole.php:1502 +#: ../../enterprise/include/functions_metaconsole.php:1535 #: ../../godmode/agentes/module_manager_editor_web.php:172 msgid "Check" msgstr "Vérifier" @@ -10925,8 +10909,8 @@ msgstr "Vérifier" #: ../../godmode/alerts/configure_alert_template.php:233 #: ../../godmode/setup/setup.php:96 ../../godmode/setup/setup.php:249 #: ../../godmode/servers/plugin.php:367 ../../godmode/servers/plugin.php:372 -#: ../../include/ajax/events.php:1660 ../../include/functions_reports.php:771 -#: ../../include/functions_reporting.php:9764 +#: ../../include/ajax/events.php:1667 ../../include/functions_reports.php:771 +#: ../../include/functions_reporting.php:9982 msgid "General" msgstr "Général" @@ -10983,7 +10967,7 @@ msgstr "Forcer clé principale" #: ../../enterprise/include/class/MySQL.app.php:523 #: ../../enterprise/include/class/Oracle.app.php:508 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:502 -#: ../../extensions/api_checker.php:138 ../../extensions/users_connected.php:143 +#: ../../extensions/api_checker.php:222 ../../extensions/users_connected.php:143 #: ../../godmode/update_manager/update_manager.history.php:43 #: ../../godmode/setup/setup_ehorus.php:80 #: ../../godmode/setup/setup_integria.php:283 @@ -10991,16 +10975,16 @@ msgstr "Forcer clé principale" #: ../../godmode/events/custom_events.php:99 #: ../../mobile/include/user.class.php:396 #: ../../mobile/operation/tactical.php:349 -#: ../../include/functions_reporting_html.php:5904 -#: ../../include/functions.php:3073 ../../include/functions_cron.php:500 +#: ../../include/functions_reporting_html.php:5923 +#: ../../include/functions.php:3099 ../../include/functions_cron.php:500 #: ../../include/functions_config.php:705 ../../include/functions_config.php:725 #: ../../include/class/CredentialStore.class.php:843 #: ../../include/class/CredentialStore.class.php:1322 #: ../../include/class/AuditLog.class.php:107 #: ../../include/class/AuditLog.class.php:210 #: ../../include/functions_events.php:202 ../../include/functions_events.php:253 -#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:721 -#: ../../operation/users/user_edit.php:767 +#: ../../operation/search_users.php:71 ../../operation/users/user_edit.php:795 +#: ../../operation/users/user_edit.php:841 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:118 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:249 #: ../../general/logon_ok.php:249 ../../general/login_page.php:230 @@ -11033,23 +11017,23 @@ msgstr "Utilisateur" #: ../../enterprise/include/class/MySQL.app.php:535 #: ../../enterprise/include/class/Oracle.app.php:520 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:514 -#: ../../extensions/api_checker.php:143 +#: ../../extensions/api_checker.php:227 #: ../../godmode/modules/manage_network_components_form_wmi.php:49 -#: ../../godmode/users/configure_user.php:1110 +#: ../../godmode/users/configure_user.php:1169 #: ../../godmode/agentes/module_manager_editor_wmi.php:116 #: ../../godmode/massive/massive_edit_modules.php:908 #: ../../godmode/setup/setup_ehorus.php:86 #: ../../godmode/setup/setup_integria.php:289 -#: ../../mobile/include/user.class.php:403 ../../include/functions_config.php:709 -#: ../../include/functions_config.php:729 +#: ../../mobile/include/user.class.php:403 ../../include/functions_ui.php:6920 +#: ../../include/functions_config.php:709 ../../include/functions_config.php:729 #: ../../include/class/CredentialStore.class.php:998 #: ../../include/class/CredentialStore.class.php:1048 #: ../../include/class/CredentialStore.class.php:1323 #: ../../include/class/CredentialStore.class.php:1346 #: ../../include/class/CredentialStore.class.php:1368 #: ../../include/class/AgentWizard.class.php:689 -#: ../../operation/users/user_edit.php:727 -#: ../../operation/users/user_edit.php:773 ../../general/login_page.php:244 +#: ../../operation/users/user_edit.php:801 +#: ../../operation/users/user_edit.php:847 ../../general/login_page.php:244 #: ../../general/login_page.php:285 msgid "Password" msgstr "Mot de passe" @@ -11142,7 +11126,6 @@ msgstr "Contrôles web établis correctement" #: ../../enterprise/meta/include/functions_wizard_meta.php:1742 #: ../../enterprise/meta/agentsearch.php:138 #: ../../enterprise/godmode/modules/configure_local_component.php:291 -#: ../../enterprise/godmode/agentes/inventory_manager.php:224 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:465 #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:507 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:304 @@ -11155,8 +11138,8 @@ msgstr "Contrôles web établis correctement" #: ../../enterprise/include/class/DB2.app.php:536 #: ../../enterprise/include/class/Aws.S3.php:506 #: ../../enterprise/include/class/SAP.app.php:513 -#: ../../enterprise/include/class/Aws.cloud.php:592 -#: ../../enterprise/include/class/Aws.cloud.php:1319 +#: ../../enterprise/include/class/Aws.cloud.php:591 +#: ../../enterprise/include/class/Aws.cloud.php:1318 #: ../../enterprise/include/class/MySQL.app.php:558 #: ../../enterprise/include/class/Google.cloud.php:797 #: ../../enterprise/include/class/Oracle.app.php:543 @@ -11168,10 +11151,11 @@ msgstr "Contrôles web établis correctement" #: ../../godmode/modules/manage_network_components_form_common.php:143 #: ../../godmode/agentes/status_monitor_custom_fields.php:93 #: ../../godmode/agentes/status_monitor_custom_fields.php:147 +#: ../../godmode/agentes/inventory_manager.php:224 #: ../../godmode/agentes/agent_manager.php:378 #: ../../godmode/agentes/module_manager_editor_common.php:632 #: ../../godmode/agentes/module_manager_editor_common.php:657 -#: ../../godmode/agentes/module_manager.php:898 +#: ../../godmode/agentes/module_manager.php:899 #: ../../godmode/massive/massive_edit_agents.php:714 #: ../../godmode/massive/massive_edit_modules.php:754 #: ../../godmode/wizards/HostDevices.class.php:800 @@ -11179,8 +11163,8 @@ msgstr "Contrôles web établis correctement" #: ../../mobile/operation/modules.php:657 ../../mobile/operation/modules.php:659 #: ../../mobile/operation/modules.php:851 #: ../../include/functions_reporting_html.php:3619 -#: ../../include/ajax/events.php:2276 ../../include/functions_treeview.php:84 -#: ../../include/functions_treeview.php:646 +#: ../../include/ajax/events.php:2287 ../../include/functions_treeview.php:84 +#: ../../include/functions_treeview.php:646 ../../include/functions_ui.php:6900 #: ../../include/class/CustomNetScan.class.php:520 #: ../../include/lib/Dashboard/Widgets/sla_percent.php:372 #: ../../include/lib/Dashboard/Widgets/BlockHistogram.php:296 @@ -11232,8 +11216,8 @@ msgstr "Communauté SNMP" #: ../../enterprise/include/class/DeploymentCenter.class.php:1189 #: ../../enterprise/include/class/DeploymentCenter.class.php:1316 #: ../../enterprise/include/class/DeploymentCenter.class.php:1326 -#: ../../extensions/api_checker.php:195 -#: ../../godmode/wizards/HostDevices.class.php:1492 +#: ../../extensions/api_checker.php:279 +#: ../../godmode/wizards/HostDevices.class.php:1491 msgid "Credentials" msgstr "Identifiants" @@ -11260,7 +11244,7 @@ msgstr "Identifiants" #: ../../godmode/reporting/reporting_builder.item_editor.php:1455 #: ../../godmode/reporting/reporting_builder.item_editor.php:2529 #: ../../include/functions_reporting_html.php:4921 -#: ../../include/functions_ui.php:2610 ../../include/functions_reporting.php:1533 +#: ../../include/functions_ui.php:2614 ../../include/functions_reporting.php:1534 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:363 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:410 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:439 @@ -11290,7 +11274,7 @@ msgstr "Minimum" #: ../../godmode/reporting/reporting_builder.item_editor.php:1457 #: ../../godmode/reporting/reporting_builder.item_editor.php:2522 #: ../../include/functions_reporting_html.php:4920 -#: ../../include/functions_ui.php:2610 ../../include/functions_reporting.php:1529 +#: ../../include/functions_ui.php:2614 ../../include/functions_reporting.php:1530 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:372 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:419 #: ../../include/lib/Dashboard/Widgets/GroupedMeterGraphs.php:448 @@ -11359,7 +11343,7 @@ msgid "Alerts in module" msgstr "Alertes dans le module" #: ../../enterprise/meta/include/functions_wizard_meta.php:1376 -#: ../../include/functions_reporting_html.php:5266 +#: ../../include/functions_reporting_html.php:5285 msgid "Alert description" msgstr "Description de l'alerte" @@ -11456,7 +11440,7 @@ msgstr "Erreur de mise à jour des alertes ; l'opération a été annulée." msgid "Successfully updated module." msgstr "Module mis à jour correctement" -#: ../../enterprise/meta/include/functions_wizard_meta.php:3507 +#: ../../enterprise/meta/include/functions_wizard_meta.php:3508 msgid "Manage agent modules" msgstr "Gérer les modules d'agents" @@ -11466,11 +11450,11 @@ msgid "Everyday" msgstr "Tous les jours" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:104 -#: ../../enterprise/meta/include/functions_meta.php:2136 +#: ../../enterprise/meta/include/functions_meta.php:2117 #: ../../enterprise/include/ajax/ipam.ajax.php:521 #: ../../enterprise/tools/ipam/ipam_editor.php:327 #: ../../godmode/alerts/alert_templates.php:73 -#: ../../include/functions_config.php:1605 +#: ../../include/functions_config.php:1586 msgid "Days" msgstr "Jours" @@ -11497,10 +11481,10 @@ msgstr "Seuil de temps" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:127 #: ../../enterprise/godmode/policies/policy_alerts.php:436 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 -#: ../../enterprise/include/functions_reporting_pdf.php:1819 -#: ../../enterprise/include/functions_reporting_pdf.php:1892 -#: ../../enterprise/include/functions_reporting_pdf.php:2007 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:478 +#: ../../enterprise/include/functions_reporting_pdf.php:1820 +#: ../../enterprise/include/functions_reporting_pdf.php:1893 +#: ../../enterprise/include/functions_reporting_pdf.php:2008 #: ../../enterprise/include/functions_reporting_csv.php:722 #: ../../enterprise/include/functions_reporting_csv.php:1001 #: ../../enterprise/include/functions_reporting_csv.php:1375 @@ -11511,10 +11495,10 @@ msgstr "Seuil de temps" #: ../../godmode/alerts/alert_list.list.php:658 #: ../../godmode/alerts/alert_list.list.php:661 #: ../../godmode/alerts/alert_templates.php:96 -#: ../../include/functions_reporting_html.php:147 +#: ../../include/functions_reporting_html.php:148 #: ../../include/functions_reporting_html.php:3118 #: ../../include/functions_reporting_html.php:3929 -#: ../../include/rest-api/index.php:371 +#: ../../include/rest-api/index.php:372 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:449 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:510 #: ../../operation/agentes/gis_view.php:220 @@ -11525,9 +11509,9 @@ msgstr "De" #: ../../enterprise/meta/include/ajax/tree_view.ajax.php:129 #: ../../enterprise/godmode/policies/policy_alerts.php:436 #: ../../enterprise/godmode/policies/policy_alerts.php:600 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:611 -#: ../../enterprise/include/functions_reporting_pdf.php:1825 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:478 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:613 +#: ../../enterprise/include/functions_reporting_pdf.php:1826 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1019 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2377 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2381 @@ -11539,11 +11523,11 @@ msgstr "De" #: ../../godmode/alerts/alert_list.list.php:778 #: ../../godmode/alerts/alert_templates.php:98 #: ../../godmode/alerts/alert_list.builder.php:129 -#: ../../include/functions_reporting_html.php:148 +#: ../../include/functions_reporting_html.php:149 #: ../../include/functions_reporting_html.php:3123 #: ../../include/ajax/alert_list.ajax.php:527 #: ../../include/class/AgentsAlerts.class.php:316 -#: ../../include/functions_reporting.php:14390 +#: ../../include/functions_reporting.php:14676 #: ../../operation/reporting/reporting_viewer.php:308 msgid "to" msgstr "pour" @@ -11567,15 +11551,15 @@ msgstr "Identifiant de l'événement" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:526 #: ../../include/functions_reporting_html.php:1314 #: ../../include/functions_reporting_html.php:1322 -#: ../../include/functions_reporting_html.php:5198 +#: ../../include/functions_reporting_html.php:5217 #: ../../include/functions_events.php:200 ../../include/functions_events.php:2528 -#: ../../include/functions_events.php:4727 +#: ../../include/functions_events.php:4706 msgid "Event name" msgstr "Nom de l'événement" #: ../../enterprise/meta/include/functions_events_meta.php:66 #: ../../enterprise/include/functions_reporting_csv.php:921 -#: ../../enterprise/include/functions_ipam.php:2045 +#: ../../enterprise/include/functions_ipam.php:2053 #: ../../godmode/agentes/modificar_agente.php:647 #: ../../godmode/agentes/agent_manager.php:213 #: ../../mobile/operation/modules.php:597 ../../mobile/operation/modules.php:849 @@ -11588,11 +11572,6 @@ msgid "Agent name" msgstr "Nom de l'agent" #: ../../enterprise/meta/include/functions_events_meta.php:82 -#: ../../enterprise/include/functions_inventory.php:143 -#: ../../enterprise/include/functions_inventory.php:177 -#: ../../enterprise/include/functions_inventory.php:379 -#: ../../enterprise/include/functions_inventory.php:399 -#: ../../enterprise/include/functions_inventory.php:585 #: ../../enterprise/include/functions_reporting_csv.php:852 #: ../../enterprise/include/functions_reporting_csv.php:925 #: ../../enterprise/include/functions_reporting_csv.php:1508 @@ -11613,14 +11592,19 @@ msgstr "Nom de l'agent" #: ../../include/functions_reporting_html.php:1318 #: ../../include/functions_reporting_html.php:1325 #: ../../include/functions_reporting_html.php:2555 -#: ../../include/functions_reporting_html.php:5200 +#: ../../include/functions_reporting_html.php:5219 #: ../../include/ajax/events_extended.php:90 #: ../../include/ajax/custom_fields.php:415 +#: ../../include/functions_inventory.php:143 +#: ../../include/functions_inventory.php:177 +#: ../../include/functions_inventory.php:379 +#: ../../include/functions_inventory.php:399 +#: ../../include/functions_inventory.php:585 #: ../../include/functions_netflow.php:278 #: ../../include/class/SnmpConsole.class.php:342 #: ../../include/functions_events.php:205 ../../include/functions_events.php:262 #: ../../include/functions_events.php:2538 -#: ../../include/functions_events.php:4740 +#: ../../include/functions_events.php:4719 #: ../../operation/agentes/exportdata.csv.php:74 #: ../../operation/agentes/exportdata.php:83 #: ../../operation/agentes/status_monitor.php:1377 @@ -11637,24 +11621,24 @@ msgstr "Horodatage" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:658 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2905 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1384 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1123 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1124 #: ../../enterprise/include/functions_events.php:60 #: ../../godmode/reporting/reporting_builder.item_editor.php:2979 #: ../../godmode/events/event_filter.php:138 -#: ../../godmode/events/event_edit_filter.php:334 +#: ../../godmode/events/event_edit_filter.php:344 #: ../../include/lib/Dashboard/Widgets/events_list.php:332 #: ../../include/functions_events.php:206 ../../operation/events/events.php:1674 msgid "Event type" msgstr "Type d'événement" #: ../../enterprise/meta/include/functions_events_meta.php:90 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:347 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:349 #: ../../enterprise/include/functions_reporting_csv.php:923 #: ../../enterprise/operation/agentes/tag_view.php:205 #: ../../godmode/modules/manage_network_templates_form.php:231 #: ../../godmode/modules/manage_network_components.php:751 #: ../../godmode/modules/manage_network_components_form_wizard.php:272 -#: ../../godmode/agentes/agent_template.php:235 +#: ../../godmode/agentes/agent_template.php:236 #: ../../godmode/agentes/status_monitor_custom_fields.php:85 #: ../../godmode/agentes/status_monitor_custom_fields.php:145 #: ../../godmode/alerts/alert_list.list.php:99 @@ -11668,12 +11652,12 @@ msgid "Module name" msgstr "Nom du module" #: ../../enterprise/meta/include/functions_events_meta.php:94 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:391 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:393 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:362 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:4353 -#: ../../godmode/agentes/configurar_agente.php:745 +#: ../../godmode/agentes/configurar_agente.php:758 #: ../../godmode/alerts/configure_alert_template.php:1552 -#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4126 +#: ../../godmode/events/custom_events.php:105 ../../include/functions.php:4152 #: ../../include/functions_snmp.php:324 #: ../../include/class/SnmpConsole.class.php:343 #: ../../include/class/SnmpConsole.class.php:416 @@ -11684,7 +11668,7 @@ msgid "Alert" msgstr "Alerte" #: ../../enterprise/meta/include/functions_events_meta.php:98 -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:90 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:93 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:384 #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:632 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2878 @@ -11692,7 +11676,7 @@ msgstr "Alerte" #: ../../enterprise/include/functions_events.php:70 #: ../../godmode/reporting/reporting_builder.item_editor.php:2952 #: ../../godmode/events/event_filter.php:140 -#: ../../godmode/events/event_edit_filter.php:349 +#: ../../godmode/events/event_edit_filter.php:359 #: ../../godmode/events/custom_events.php:106 #: ../../mobile/operation/events.php:678 ../../mobile/operation/events.php:679 #: ../../mobile/operation/events.php:820 ../../mobile/operation/events.php:982 @@ -11708,17 +11692,17 @@ msgstr "Alerte" #: ../../include/lib/Dashboard/Widgets/events_list.php:404 #: ../../include/functions_events.php:209 ../../include/functions_events.php:274 #: ../../include/functions_events.php:2520 -#: ../../include/functions_events.php:4801 ../../operation/events/events.php:1770 +#: ../../include/functions_events.php:4780 ../../operation/events/events.php:1770 msgid "Severity" msgstr "Sévérité" #: ../../enterprise/meta/include/functions_events_meta.php:102 -#: ../../godmode/events/event_edit_filter.php:679 +#: ../../godmode/events/event_edit_filter.php:689 #: ../../godmode/events/custom_events.php:107 #: ../../godmode/wizards/HostDevices.class.php:961 #: ../../include/class/CustomNetScan.class.php:468 #: ../../include/functions_events.php:210 ../../include/functions_events.php:277 -#: ../../include/functions_events.php:3496 ../../operation/events/events.php:1868 +#: ../../include/functions_events.php:3475 ../../operation/events/events.php:1868 msgid "Comment" msgstr "Commentaire" @@ -11751,8 +11735,8 @@ msgstr "Commentaire" #: ../../include/lib/Dashboard/Widgets/events_list.php:461 #: ../../include/lib/Dashboard/Widgets/tree_view.php:329 #: ../../include/functions_events.php:211 ../../include/functions_events.php:280 -#: ../../include/functions_events.php:4888 ../../operation/tree.php:66 -#: ../../operation/users/user_edit.php:840 +#: ../../include/functions_events.php:4867 ../../operation/tree.php:66 +#: ../../operation/users/user_edit.php:914 #: ../../operation/agentes/status_monitor.php:550 #: ../../operation/agentes/group_view.php:222 #: ../../operation/agentes/alerts_status.functions.php:108 @@ -11761,7 +11745,7 @@ msgid "Tags" msgstr "Étiquettes" #: ../../enterprise/meta/include/functions_events_meta.php:114 -#: ../../include/functions_events.php:213 ../../include/functions_events.php:4452 +#: ../../include/functions_events.php:213 ../../include/functions_events.php:4431 msgid "Extra id" msgstr "Identifiant supplémentaire" @@ -11770,7 +11754,7 @@ msgstr "Identifiant supplémentaire" #: ../../godmode/setup/setup_integria.php:519 #: ../../godmode/events/custom_events.php:111 #: ../../mobile/operation/events.php:808 ../../include/functions_events.php:214 -#: ../../include/functions_events.php:289 ../../include/functions_events.php:4755 +#: ../../include/functions_events.php:289 ../../include/functions_events.php:4734 #: ../../operation/incidents/integriaims_export_csv.php:89 #: ../../operation/incidents/configure_integriaims_incident.php:312 #: ../../operation/incidents/list_integriaims_incidents.php:342 @@ -11788,14 +11772,14 @@ msgstr "Horodatage ACK" #: ../../enterprise/meta/include/functions_events_meta.php:126 #: ../../godmode/events/custom_events.php:113 #: ../../include/functions_events.php:216 ../../include/functions_events.php:295 -#: ../../include/functions_events.php:4440 ../../operation/events/events.php:3152 +#: ../../include/functions_events.php:4419 ../../operation/events/events.php:3152 msgid "Instructions" msgstr "Instructions" #: ../../enterprise/meta/include/functions_events_meta.php:130 #: ../../enterprise/godmode/setup/setup_metaconsole.php:198 #: ../../enterprise/godmode/setup/setup_metaconsole.php:273 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:852 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:878 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:69 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:252 #: ../../godmode/wizards/DiscoveryTaskList.class.php:593 @@ -11860,7 +11844,7 @@ msgstr "Aide" #: ../../enterprise/meta/include/process_reset_pass.php:96 #: ../../enterprise/include/process_reset_pass.php:103 -#: ../../operation/users/user_edit.php:301 +#: ../../operation/users/user_edit.php:375 msgid "New Password" msgstr "Nouveau mot de passe" @@ -11876,7 +11860,7 @@ msgstr "Modifier le mot de passe" #: ../../enterprise/meta/include/process_reset_pass.php:123 #: ../../enterprise/meta/index.php:668 -#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:843 +#: ../../enterprise/include/process_reset_pass.php:127 ../../index.php:846 msgid "Passwords must be the same" msgstr "Les mots de passe doivent être identiques." @@ -11896,7 +11880,7 @@ msgstr "GÉNÉRATION SUIVANTE %s" #: ../../enterprise/meta/include/process_reset_pass.php:150 #: ../../enterprise/meta/include/reset_pass.php:147 #: ../../enterprise/meta/general/login_page.php:217 -#: ../../include/functions_config.php:2554 +#: ../../include/functions_config.php:2530 msgid "METACONSOLE" msgstr "MÉTACONSOLE" @@ -11904,7 +11888,8 @@ msgstr "MÉTACONSOLE" #: ../../enterprise/meta/include/reset_pass.php:161 #: ../../enterprise/meta/general/login_page.php:232 #: ../../enterprise/include/process_reset_pass.php:183 -#: ../../enterprise/include/reset_pass.php:170 ../../general/login_page.php:424 +#: ../../enterprise/include/reset_pass.php:170 +#: ../../include/functions_menu.php:836 ../../general/login_page.php:424 msgid "Build" msgstr "Générer" @@ -11967,7 +11952,7 @@ msgstr "Gestion des agents" #: ../../enterprise/meta/include/functions_agents_meta.php:630 #: ../../enterprise/extensions/disabled/check_acls.php:53 #: ../../enterprise/extensions/disabled/check_acls.php:140 -#: ../../godmode/menu.php:150 +#: ../../godmode/menu.php:151 msgid "Users management" msgstr "Gestion des utilisateurs" @@ -11976,7 +11961,7 @@ msgid "No admin user" msgstr "Aucun utilisateur administrateur" #: ../../enterprise/meta/include/functions_meta.php:70 -#: ../../include/functions_config.php:411 +#: ../../include/functions_config.php:416 msgid "Activate Metaconsole" msgstr "Activer la Métaconsole" @@ -11994,7 +11979,7 @@ msgid "Netflow disable custom live view filters" msgstr "Désactiver les filtres de vue personnalisée en temps réel" #: ../../enterprise/meta/include/functions_meta.php:250 -#: ../../enterprise/godmode/setup/setup.php:294 +#: ../../enterprise/godmode/setup/setup.php:210 msgid "Enable update manager" msgstr "Activer le gestionnaire de mises à jour" @@ -12024,7 +12009,7 @@ msgstr "Port ElasticSearch" #: ../../enterprise/meta/include/functions_meta.php:512 #: ../../enterprise/godmode/setup/setup_log_collector.php:41 -#: ../../include/functions_config.php:1546 +#: ../../include/functions_config.php:1527 msgid "Number of logs viewed" msgstr "Nombre de journaux visionnés" @@ -12089,9 +12074,9 @@ msgstr "Créer liste noire automatiquement" #: ../../enterprise/meta/include/functions_meta.php:613 #: ../../enterprise/meta/include/functions_meta.php:915 -#: ../../godmode/users/configure_user.php:1512 +#: ../../godmode/users/configure_user.php:1570 #: ../../godmode/setup/setup_auth.php:369 ../../include/functions_config.php:773 -#: ../../operation/users/user_edit.php:429 +#: ../../operation/users/user_edit.php:503 msgid "Double authentication" msgstr "Double authentification" @@ -12340,12 +12325,12 @@ msgstr "Port MySQL" #: ../../enterprise/meta/include/functions_meta.php:1186 #: ../../enterprise/meta/include/functions_meta.php:1240 #: ../../enterprise/meta/include/functions_meta.php:1294 -#: ../../enterprise/meta/include/functions_meta.php:2106 +#: ../../enterprise/meta/include/functions_meta.php:2087 #: ../../enterprise/godmode/setup/setup_history.php:207 #: ../../enterprise/godmode/setup/setup_auth.php:1031 #: ../../enterprise/godmode/setup/setup_auth.php:1063 #: ../../include/functions_config.php:701 ../../include/functions_config.php:721 -#: ../../include/functions_config.php:1576 +#: ../../include/functions_config.php:1557 msgid "Database name" msgstr "Nom de la base de données" @@ -12360,7 +12345,7 @@ msgid "Integria host" msgstr "Hôte d'Integria IMS" #: ../../enterprise/meta/include/functions_meta.php:1339 -#: ../../include/functions_config.php:966 +#: ../../include/functions_config.php:947 msgid "Timestamp or time comparation" msgstr "Horodatage ou comparaison temporelle" @@ -12377,7 +12362,7 @@ msgid "Graph color (max)" msgstr "Couleur du graphique (max.)" #: ../../enterprise/meta/include/functions_meta.php:1404 -#: ../../include/functions_config.php:1014 +#: ../../include/functions_config.php:995 msgid "Data precision for reports" msgstr "Précision de données pour rapports" @@ -12398,7 +12383,7 @@ msgid "Type of charts" msgstr "Type de graphiques" #: ../../enterprise/meta/include/functions_meta.php:1609 -#: ../../include/functions_config.php:1063 +#: ../../include/functions_config.php:1044 msgid "Custom logo collapsed" msgstr "Le logo personnalisé s'est effondré" @@ -12407,32 +12392,32 @@ msgid "Custom logo (white background)" msgstr "Logo personnalisé (fond blanc)" #: ../../enterprise/meta/include/functions_meta.php:1639 -#: ../../include/functions_config.php:1071 +#: ../../include/functions_config.php:1052 msgid "Custom logo login" msgstr "Logo personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1649 -#: ../../include/functions_config.php:1075 +#: ../../include/functions_config.php:1056 msgid "Custom splash login" msgstr "Splash personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1679 -#: ../../include/functions_config.php:1111 +#: ../../include/functions_config.php:1092 msgid "Custom title1 login" msgstr "Titre1 personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1689 -#: ../../include/functions_config.php:1115 +#: ../../include/functions_config.php:1096 msgid "Custom title2 login" msgstr "Titre2 personnalisé sur écran de connexion" #: ../../enterprise/meta/include/functions_meta.php:1699 -#: ../../include/functions_config.php:1103 +#: ../../include/functions_config.php:1084 msgid "Meta custom title header" msgstr "Entête du titre personnalisé Meta" #: ../../enterprise/meta/include/functions_meta.php:1709 -#: ../../include/functions_config.php:1107 +#: ../../include/functions_config.php:1088 msgid "Meta custom subtitle header" msgstr "Entête du sous-titre personnalisé Meta" @@ -12449,24 +12434,24 @@ msgid "Custom copyright notice" msgstr "Avis de droit d’auteur personnalisé" #: ../../enterprise/meta/include/functions_meta.php:1808 -#: ../../include/functions_config.php:1047 +#: ../../include/functions_config.php:1028 msgid "Font path" msgstr "Chemin de la police" #: ../../enterprise/meta/include/functions_meta.php:1818 -#: ../../include/functions_config.php:1485 +#: ../../include/functions_config.php:1466 msgid "Use data multiplier" msgstr "Utiliser de mutiplicateur de données" #: ../../enterprise/meta/include/functions_meta.php:1830 -#: ../../include/functions_config.php:1441 +#: ../../include/functions_config.php:1422 msgid "Custom report info" msgstr "Information du rapport personnalisé" #: ../../enterprise/meta/include/functions_meta.php:1840 #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:116 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:128 -#: ../../include/functions_config.php:1457 +#: ../../include/functions_config.php:1438 msgid "Font family" msgstr "Type de police" @@ -12474,17 +12459,17 @@ msgstr "Type de police" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:173 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:163 #: ../../godmode/setup/setup_visuals.php:1253 -#: ../../include/functions_config.php:1473 +#: ../../include/functions_config.php:1454 msgid "Footer" msgstr "Pied de page" #: ../../enterprise/meta/include/functions_meta.php:1915 -#: ../../include/functions_config.php:1171 +#: ../../include/functions_config.php:1152 msgid "Use the legacy Visual Console" msgstr "utiliser la Console visuelle Legacy" #: ../../enterprise/meta/include/functions_meta.php:1926 -#: ../../include/functions_config.php:1175 +#: ../../include/functions_config.php:1156 msgid "Default expiration of the Visual Console item's cache" msgstr "Expiration par défaut du caché de l'élément de la Console visuelle" @@ -12509,88 +12494,83 @@ msgstr "Événement d'exécution de taille du bloc par défaut" msgid "Default row limit in csv log" msgstr "Limite de ligne par défaut dans le journal CSV" -#: ../../enterprise/meta/include/functions_meta.php:2063 -#: ../../include/functions_config.php:955 -msgid "PhantomJS cache interval" -msgstr "Intervalle de cache PhantomJS" - -#: ../../enterprise/meta/include/functions_meta.php:2079 +#: ../../enterprise/meta/include/functions_meta.php:2060 msgid "Node address default" msgstr "Adresse du noeud par défaut" -#: ../../enterprise/meta/include/functions_meta.php:2092 -#: ../../include/functions_config.php:1563 +#: ../../enterprise/meta/include/functions_meta.php:2073 +#: ../../include/functions_config.php:1544 msgid "Active and historical database cannot be the same." msgstr "" "Les bases de données actives et historiques ne peuvent pas être identiques." -#: ../../enterprise/meta/include/functions_meta.php:2096 +#: ../../enterprise/meta/include/functions_meta.php:2077 #: ../../enterprise/godmode/setup/setup_history.php:177 -#: ../../include/functions_config.php:1568 +#: ../../include/functions_config.php:1549 msgid "Host" msgstr "Hôte" -#: ../../enterprise/meta/include/functions_meta.php:2112 -#: ../../include/functions_config.php:1581 +#: ../../enterprise/meta/include/functions_meta.php:2093 +#: ../../include/functions_config.php:1562 msgid "Enable history database" msgstr "Activer la base de données de l'historique" -#: ../../enterprise/meta/include/functions_meta.php:2117 -#: ../../include/functions_config.php:1585 +#: ../../enterprise/meta/include/functions_meta.php:2098 +#: ../../include/functions_config.php:1566 msgid "Enable history event" msgstr "Activer historique d'événements" -#: ../../enterprise/meta/include/functions_meta.php:2122 +#: ../../enterprise/meta/include/functions_meta.php:2103 #: ../../enterprise/godmode/setup/setup_history.php:222 -#: ../../include/functions_config.php:1593 +#: ../../include/functions_config.php:1574 msgid "Database user" msgstr "Utilisateur de la base de données" -#: ../../enterprise/meta/include/functions_meta.php:2127 +#: ../../enterprise/meta/include/functions_meta.php:2108 #: ../../enterprise/godmode/setup/setup_history.php:237 -#: ../../include/functions_config.php:1597 +#: ../../include/functions_config.php:1578 msgid "Database password" msgstr "Mot de passe de la base de données" -#: ../../enterprise/meta/include/functions_meta.php:2145 -#: ../../include/functions_config.php:1626 +#: ../../enterprise/meta/include/functions_meta.php:2126 +#: ../../include/functions_config.php:1607 msgid "Event Days" msgstr "Jours d'événements" -#: ../../enterprise/meta/include/functions_meta.php:2163 -#: ../../include/functions_config.php:1658 +#: ../../enterprise/meta/include/functions_meta.php:2144 +#: ../../include/functions_config.php:1639 msgid "Delay" msgstr "Retard" -#: ../../enterprise/meta/include/functions_meta.php:2196 -#: ../../include/functions_config.php:1690 +#: ../../enterprise/meta/include/functions_meta.php:2177 +#: ../../include/functions_config.php:1671 msgid "Historical database purge" msgstr "Purge de la base de données historique" -#: ../../enterprise/meta/include/functions_meta.php:2205 -#: ../../include/functions_config.php:1698 +#: ../../enterprise/meta/include/functions_meta.php:2186 +#: ../../include/functions_config.php:1679 msgid "Historical database partitions" msgstr "Partitions de base de données historiques" -#: ../../enterprise/meta/include/functions_meta.php:2214 -#: ../../include/functions_config.php:1706 +#: ../../enterprise/meta/include/functions_meta.php:2195 +#: ../../include/functions_config.php:1687 msgid "Historical database events purge" msgstr "Purge des événements de base de données historiques" -#: ../../enterprise/meta/include/functions_meta.php:2223 -#: ../../include/functions_config.php:1722 +#: ../../enterprise/meta/include/functions_meta.php:2204 +#: ../../include/functions_config.php:1703 msgid "Historical database string purge" msgstr "Purge de la chaîne de la base de données historique" #: ../../enterprise/meta/include/functions_components_meta.php:80 #: ../../enterprise/meta/include/functions_components_meta.php:135 -#: ../../godmode/menu.php:102 +#: ../../godmode/menu.php:103 msgid "Component groups" msgstr "Groupes de composants" #: ../../enterprise/meta/include/functions_components_meta.php:88 #: ../../enterprise/meta/include/functions_components_meta.php:139 -#: ../../enterprise/godmode/menu.php:87 ../../godmode/menu.php:177 +#: ../../enterprise/godmode/menu.php:78 ../../godmode/menu.php:178 msgid "Local components" msgstr "Composants locaux" @@ -12606,13 +12586,13 @@ msgstr "Gestion des plugins" #: ../../enterprise/meta/include/functions_components_meta.php:113 #: ../../enterprise/meta/include/functions_components_meta.php:160 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:70 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:282 -#: ../../enterprise/godmode/menu.php:78 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:198 #: ../../enterprise/include/functions_policies.php:3756 +#: ../../godmode/modules/manage_inventory_modules.php:45 +#: ../../godmode/modules/manage_inventory_modules_form.php:37 +#: ../../godmode/menu.php:184 msgid "Inventory modules" msgstr "Modules d'inventaire" @@ -12639,33 +12619,34 @@ msgstr "%s - le Système de supervision flexible" #: ../../enterprise/meta/include/functions_ui_meta.php:975 #: ../../enterprise/godmode/services/services.elements.php:884 #: ../../enterprise/godmode/services/services.elements.php:895 +#: ../../enterprise/godmode/setup/setup.php:564 #: ../../enterprise/include/class/CommandCenter.class.php:473 #: ../../enterprise/include/functions_login.php:104 -#: ../../enterprise/include/functions_login.php:468 +#: ../../enterprise/include/functions_login.php:505 #: ../../enterprise/include/lib/Metaconsole/Node.php:541 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4117 -#: ../../godmode/users/configure_user.php:2067 -#: ../../godmode/users/configure_user.php:2137 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4142 +#: ../../godmode/users/configure_user.php:2132 +#: ../../godmode/users/configure_user.php:2202 #: ../../godmode/massive/massive_edit_plugins.php:856 #: ../../godmode/massive/massive_edit_plugins.php:857 -#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1256 +#: ../../mobile/operation/visualmap.php:182 ../../include/functions.php:1282 #: ../../include/ajax/double_auth.ajax.php:255 #: ../../include/ajax/double_auth.ajax.php:353 #: ../../include/ajax/double_auth.ajax.php:399 -#: ../../include/ajax/double_auth.ajax.php:516 ../../include/ajax/events.php:2177 -#: ../../include/functions_ui.php:290 +#: ../../include/ajax/double_auth.ajax.php:516 ../../include/ajax/events.php:2188 +#: ../../include/functions_menu.php:808 ../../include/functions_ui.php:290 #: ../../include/class/SatelliteAgent.class.php:839 -#: ../../include/class/Diagnostics.class.php:1830 -#: ../../include/functions_events.php:2846 -#: ../../include/functions_events.php:3046 ../../index.php:1578 -#: ../../operation/users/user_edit.php:1089 -#: ../../operation/users/user_edit.php:1155 ../../general/register.php:157 +#: ../../include/class/Diagnostics.class.php:1835 +#: ../../include/functions_events.php:2825 +#: ../../include/functions_events.php:3025 ../../index.php:1559 +#: ../../operation/users/user_edit.php:1163 +#: ../../operation/users/user_edit.php:1229 ../../general/register.php:157 msgid "Error" msgstr "Erreur" #: ../../enterprise/meta/include/functions_alerts_meta.php:137 #: ../../enterprise/meta/include/functions_alerts_meta.php:168 -#: ../../godmode/menu.php:276 +#: ../../godmode/menu.php:279 msgid "Commands" msgstr "Commandes" @@ -12680,7 +12661,7 @@ msgstr "Utilisateur pour remettre le mot de passe" #: ../../enterprise/meta/include/reset_pass.php:103 #: ../../enterprise/meta/index.php:734 -#: ../../enterprise/include/reset_pass.php:108 ../../index.php:915 +#: ../../enterprise/include/reset_pass.php:108 ../../index.php:918 msgid "Reset password" msgstr "Réinitialiser le mot de passe" @@ -12761,7 +12742,7 @@ msgstr "Erreur en éliminant la relation" msgid "Relation deleted successfully" msgstr "Relation éliminée correctement" -#: ../../enterprise/meta/index.php:206 ../../index.php:1461 +#: ../../enterprise/meta/index.php:206 ../../index.php:1468 #: ../../operation/visual_console/legacy_public_view.php:57 #: ../../operation/visual_console/public_view.php:38 #: ../../operation/agentes/stat_win.php:92 @@ -12770,7 +12751,7 @@ msgstr "Relation éliminée correctement" msgid "Connection with server has been lost" msgstr "Connexion avec le serveur perdue" -#: ../../enterprise/meta/index.php:207 ../../index.php:1462 +#: ../../enterprise/meta/index.php:207 ../../index.php:1469 #: ../../operation/visual_console/legacy_public_view.php:58 #: ../../operation/visual_console/public_view.php:39 #: ../../operation/agentes/stat_win.php:93 @@ -12784,70 +12765,70 @@ msgstr "" "ou contacte avec l'administrateur." #: ../../enterprise/meta/index.php:330 ../../mobile/include/user.class.php:303 -#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:370 +#: ../../include/ajax/double_auth.ajax.php:500 ../../index.php:373 msgid "Invalid code" msgstr "Code non valide" -#: ../../enterprise/meta/index.php:342 ../../index.php:382 +#: ../../enterprise/meta/index.php:342 ../../index.php:385 msgid "The code shouldn't be empty" msgstr "Le code ne doit pas être vide" -#: ../../enterprise/meta/index.php:355 ../../index.php:395 +#: ../../enterprise/meta/index.php:355 ../../index.php:398 msgid "Expired login" msgstr "Connexion expirée" #: ../../enterprise/meta/index.php:362 ../../enterprise/meta/index.php:368 -#: ../../index.php:402 ../../index.php:408 +#: ../../index.php:405 ../../index.php:411 msgid "Login error" msgstr "Erreur de connexion" -#: ../../enterprise/meta/index.php:659 ../../index.php:832 +#: ../../enterprise/meta/index.php:659 ../../index.php:835 msgid "Password changed successfully" msgstr "Mot de passe changé correctement" -#: ../../enterprise/meta/index.php:665 ../../index.php:838 +#: ../../enterprise/meta/index.php:665 ../../index.php:841 msgid "Failed to change password" msgstr "Erreur de modification du mot de passe" -#: ../../enterprise/meta/index.php:679 ../../index.php:855 +#: ../../enterprise/meta/index.php:679 ../../index.php:858 msgid "Too much time since password change request" msgstr "" "Trop de temps s'est écoulé depuis la demande de changement du mot de passe" -#: ../../enterprise/meta/index.php:686 ../../index.php:862 +#: ../../enterprise/meta/index.php:686 ../../index.php:865 msgid "This user has not requested a password change" msgstr "Cet utilisateur n'a pas demandé de changement de mot de passe" -#: ../../enterprise/meta/index.php:702 ../../index.php:889 +#: ../../enterprise/meta/index.php:702 ../../index.php:892 msgid "Id user cannot be empty" msgstr "L'identifiant de l'utilisateur ne peut pas être vide." -#: ../../enterprise/meta/index.php:710 ../../index.php:897 +#: ../../enterprise/meta/index.php:710 ../../index.php:900 msgid "Error in reset password request" msgstr "Erreur de réinitialisation du mot de passe" -#: ../../enterprise/meta/index.php:718 ../../index.php:905 +#: ../../enterprise/meta/index.php:718 ../../index.php:908 msgid "This user doesn't have a valid email address" msgstr "Cet utilisateur n'a pas d'adresse courriel valide." -#: ../../enterprise/meta/index.php:735 ../../index.php:916 +#: ../../enterprise/meta/index.php:735 ../../index.php:919 msgid "This is an automatically sent message for user " msgstr "Ceci est un message envoyé automatiquement à l'utilisateur " -#: ../../enterprise/meta/index.php:738 ../../index.php:919 +#: ../../enterprise/meta/index.php:738 ../../index.php:922 msgid "Please click the link below to reset your password" msgstr "" "Veuillez cliquer sur le lien ci-dessous pour réinitialiser le mot de passe." -#: ../../enterprise/meta/index.php:740 ../../index.php:921 +#: ../../enterprise/meta/index.php:740 ../../index.php:924 msgid "Reset your password" msgstr "Réinitialiser le mot de passe" -#: ../../enterprise/meta/index.php:744 ../../index.php:925 +#: ../../enterprise/meta/index.php:744 ../../index.php:928 msgid "Please do not reply to this email." msgstr "Veuillez ne pas répondre à ce courriel." -#: ../../enterprise/meta/index.php:750 ../../index.php:930 +#: ../../enterprise/meta/index.php:750 ../../index.php:933 msgid "Error at sending the email" msgstr "Erreur lors de l'envoi du courriel" @@ -12864,12 +12845,12 @@ msgstr "" msgid "There are nodes with different MR than this (%d):" msgstr "Il existe des nœuds avec un MR différent de celui-ci (%d):" -#: ../../enterprise/meta/index.php:980 ../../index.php:1220 +#: ../../enterprise/meta/index.php:980 ../../index.php:1223 msgid "Please keep all environment updated to same version." msgstr "Veuillez garder tout l’environnement à jour vers la même version." #: ../../enterprise/meta/index.php:1049 ../../enterprise/meta/index.php:1136 -#: ../../index.php:1323 +#: ../../index.php:1326 msgid "Sorry! I can't find the page!" msgstr "Désolé ! La page est introuvable !" @@ -12892,11 +12873,11 @@ msgstr "Agents trouvés" #: ../../mobile/operation/agents.php:419 ../../mobile/operation/agents.php:422 #: ../../mobile/operation/agent.php:193 ../../include/ajax/module.php:997 #: ../../include/functions_treeview.php:668 -#: ../../include/functions_events.php:4254 ../../operation/search_users.php:46 +#: ../../include/functions_events.php:4233 ../../operation/search_users.php:46 #: ../../operation/search_agents.php:58 #: ../../operation/agentes/log_sources_status.php:58 #: ../../operation/agentes/estado_agente.php:769 -#: ../../operation/agentes/ver_agente.php:1040 +#: ../../operation/agentes/ver_agente.php:1046 #: ../../operation/agentes/estado_generalagente.php:362 #: ../../operation/gis_maps/ajax.php:239 ../../operation/gis_maps/ajax.php:349 #: ../../operation/gis_maps/ajax.php:466 @@ -13024,7 +13005,7 @@ msgstr "Déconnexion" #: ../../enterprise/meta/general/main_menu.php:196 #: ../../enterprise/operation/services/services.treeview_services.php:62 #: ../../enterprise/operation/services/services.treeview_services.php:69 -#: ../../godmode/groups/group_list.php:344 +#: ../../godmode/groups/group_list.php:349 #: ../../include/lib/Dashboard/Widgets/tree_view.php:173 #: ../../include/lib/Dashboard/Widgets/tree_view.php:717 #: ../../operation/tree.php:138 ../../operation/menu.php:53 @@ -13056,7 +13037,7 @@ msgstr "Vue de champs personnalisés" #: ../../enterprise/meta/general/main_header.php:183 #: ../../enterprise/meta/general/main_menu.php:302 #: ../../enterprise/mobile/include/functions_web.php:15 -#: ../../include/functions_reporting.php:15386 +#: ../../include/functions_reporting.php:15641 #: ../../include/functions_groups.php:139 ../../operation/search_results.php:133 msgid "Reports" msgstr "Rapports" @@ -13080,7 +13061,7 @@ msgstr "Assistant de modèles" #: ../../enterprise/meta/general/main_header.php:210 #: ../../enterprise/meta/general/main_menu.php:371 -#: ../../enterprise/godmode/menu.php:125 +#: ../../enterprise/godmode/menu.php:116 #: ../../enterprise/godmode/services/services.massive.meta.php:42 #: ../../enterprise/godmode/services/services.service.php:510 #: ../../enterprise/godmode/services/services.service.php:530 @@ -13090,7 +13071,7 @@ msgstr "Assistant de modèles" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:314 #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:136 #: ../../enterprise/include/functions_groups.php:65 -#: ../../enterprise/operation/menu.php:77 +#: ../../enterprise/operation/menu.php:64 #: ../../enterprise/operation/services/services.service.php:83 #: ../../enterprise/operation/services/massive/services.delete.php:42 #: ../../enterprise/operation/services/massive/services.delete.php:59 @@ -13112,7 +13093,7 @@ msgstr "Assistant de modèles" #: ../../enterprise/operation/services/services.list.php:75 #: ../../enterprise/operation/services/services.table_services.php:38 #: ../../enterprise/operation/services/services.table_services.php:58 -#: ../../operation/agentes/ver_agente.php:1666 +#: ../../operation/agentes/ver_agente.php:1684 #: ../../general/first_task/service_list.php:23 msgid "Services" msgstr "Services" @@ -13147,7 +13128,7 @@ msgstr "Console visuelle de l'assistant" #: ../../enterprise/meta/general/logon_ok.php:37 #: ../../enterprise/meta/general/main_menu.php:425 #: ../../enterprise/include/functions_enterprise.php:459 -#: ../../godmode/menu.php:358 ../../godmode/setup/setup.php:151 +#: ../../godmode/menu.php:361 ../../godmode/setup/setup.php:151 #: ../../godmode/setup/setup.php:271 ../../include/functions_reports.php:913 #: ../../include/functions_reports.php:917 #: ../../include/functions_reports.php:921 @@ -13171,12 +13152,12 @@ msgstr "Gestion des agents" #: ../../enterprise/meta/general/main_header.php:423 #: ../../enterprise/meta/general/main_menu.php:485 #: ../../enterprise/meta/general/main_menu.php:612 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:45 #: ../../enterprise/godmode/modules/local_components.php:157 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:37 #: ../../godmode/modules/manage_network_templates_form.php:32 #: ../../godmode/modules/manage_nc_groups.php:40 +#: ../../godmode/modules/manage_inventory_modules.php:45 #: ../../godmode/modules/manage_network_components.php:291 +#: ../../godmode/modules/manage_inventory_modules_form.php:37 #: ../../godmode/modules/module_list.php:29 #: ../../godmode/modules/manage_network_templates.php:39 msgid "Module management" @@ -13218,7 +13199,7 @@ msgid "Command Center" msgstr "Centre de commande" #: ../../enterprise/meta/general/main_header.php:369 -#: ../../enterprise/meta/general/main_menu.php:656 ../../godmode/menu.php:385 +#: ../../enterprise/meta/general/main_menu.php:656 ../../godmode/menu.php:388 msgid "License" msgstr "Licence" @@ -13232,8 +13213,8 @@ msgstr "Metasetup" #: ../../enterprise/meta/general/main_header.php:448 #: ../../enterprise/meta/general/main_menu.php:668 #: ../../enterprise/meta/general/main_menu.php:694 -#: ../../enterprise/meta/general/main_menu.php:715 ../../godmode/menu.php:407 -#: ../../godmode/menu.php:525 ../../general/links_menu.php:17 +#: ../../enterprise/meta/general/main_menu.php:715 ../../godmode/menu.php:410 +#: ../../godmode/menu.php:528 ../../general/links_menu.php:17 msgid "Links" msgstr "Liens" @@ -13275,13 +13256,13 @@ msgstr "Journaux d’audit" #: ../../godmode/reporting/reporting_builder.php:3677 #: ../../godmode/reporting/reporting_builder.php:3693 #: ../../godmode/reporting/reporting_builder.php:3722 -#: ../../operation/menu.php:321 +#: ../../operation/menu.php:325 #: ../../operation/reporting/reporting_viewer.php:211 #: ../../operation/reporting/reporting_viewer.php:216 #: ../../operation/reporting/reporting_viewer.php:229 #: ../../operation/reporting/custom_reporting.php:23 #: ../../operation/reporting/graph_viewer.php:267 -#: ../../operation/reporting/graph_viewer.php:513 +#: ../../operation/reporting/graph_viewer.php:510 msgid "Reporting" msgstr "Rapports" @@ -13295,8 +13276,8 @@ msgstr "Rapports" #: ../../godmode/update_manager/update_manager.php:57 #: ../../godmode/update_manager/update_manager.php:87 #: ../../godmode/agentes/configurar_agente.php:402 -#: ../../godmode/agentes/configurar_agente.php:707 ../../godmode/menu.php:325 -#: ../../godmode/menu.php:332 +#: ../../godmode/agentes/configurar_agente.php:720 ../../godmode/menu.php:328 +#: ../../godmode/menu.php:335 #: ../../godmode/module_library/module_library_view.php:48 #: ../../operation/agentes/estado_agente.php:201 #: ../../operation/gis_maps/render_view.php:173 @@ -13342,46 +13323,45 @@ msgstr "" "sécurité de la base de données du système %s" #: ../../enterprise/meta/general/main_menu.php:237 -#: ../../enterprise/godmode/agentes/configurar_agente.php:88 #: ../../enterprise/godmode/policies/policies.php:543 #: ../../enterprise/include/functions_reporting_csv.php:804 -#: ../../enterprise/operation/agentes/ver_agente.php:192 #: ../../enterprise/operation/snmpconsole/snmp_view.php:23 -#: ../../enterprise/operation/menu.php:19 -#: ../../enterprise/operation/inventory/inventory.php:137 -#: ../../godmode/agentes/configurar_agente.php:723 +#: ../../godmode/agentes/configurar_agente.php:466 +#: ../../godmode/agentes/configurar_agente.php:736 #: ../../godmode/setup/setup_integria.php:314 #: ../../include/functions_reports.php:878 #: ../../include/functions_reports.php:885 #: ../../include/functions_reports.php:892 #: ../../include/functions_reports.php:893 #: ../../include/functions_reports.php:897 -#: ../../include/functions_reporting.php:2902 +#: ../../include/functions_reporting.php:3020 +#: ../../operation/agentes/ver_agente.php:1463 ../../operation/menu.php:77 +#: ../../operation/inventory/inventory.php:140 msgid "Inventory" msgstr "Inventaire" -#: ../../enterprise/meta/general/main_menu.php:275 ../../operation/menu.php:435 +#: ../../enterprise/meta/general/main_menu.php:275 ../../operation/menu.php:439 msgid "Sound Console" msgstr "Console sonore" #: ../../enterprise/meta/general/main_menu.php:276 #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:380 -#: ../../godmode/menu.php:50 ../../godmode/setup/setup_ehorus.php:112 -#: ../../godmode/setup/setup_integria.php:567 ../../include/ajax/events.php:2380 -#: ../../operation/users/user_edit.php:737 -#: ../../operation/users/user_edit.php:783 ../../operation/menu.php:436 +#: ../../godmode/menu.php:51 ../../godmode/setup/setup_ehorus.php:112 +#: ../../godmode/setup/setup_integria.php:567 ../../include/ajax/events.php:2391 +#: ../../operation/users/user_edit.php:811 +#: ../../operation/users/user_edit.php:857 ../../operation/menu.php:440 msgid "Start" msgstr "Démarrer" -#: ../../enterprise/meta/general/main_menu.php:278 ../../operation/menu.php:438 +#: ../../enterprise/meta/general/main_menu.php:278 ../../operation/menu.php:442 msgid "No alert" msgstr "Pas d’alerte" -#: ../../enterprise/meta/general/main_menu.php:279 ../../operation/menu.php:439 +#: ../../enterprise/meta/general/main_menu.php:279 ../../operation/menu.php:443 msgid "Silence alarm" msgstr "Arrêter l’alarme" -#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:448 +#: ../../enterprise/meta/general/main_menu.php:288 ../../operation/menu.php:452 #: ../../operation/events/sound_events.php:63 msgid "Sound Events" msgstr "Événements sonores" @@ -13389,18 +13369,18 @@ msgstr "Événements sonores" #: ../../enterprise/meta/general/main_menu.php:351 #: ../../enterprise/godmode/reporting/mysql_builder.php:80 #: ../../enterprise/godmode/reporting/mysql_builder.php:207 -#: ../../enterprise/operation/menu.php:143 +#: ../../enterprise/operation/menu.php:130 msgid "Custom SQL" msgstr "SQL personnalisé" #: ../../enterprise/meta/general/main_menu.php:360 #: ../../operation/messages/message_list.php:90 -#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:521 +#: ../../operation/messages/message_edit.php:103 ../../operation/menu.php:525 msgid "Messages" msgstr "Messages" #: ../../enterprise/meta/general/main_menu.php:451 -#: ../../enterprise/godmode/menu.php:245 +#: ../../enterprise/godmode/menu.php:236 msgid "Alert correlation" msgstr "Correlation d'alertes" @@ -13410,12 +13390,12 @@ msgstr "Correlation d'alertes" msgid "Centralised management" msgstr "Gestion centralisée" -#: ../../enterprise/meta/general/main_menu.php:527 ../../godmode/menu.php:198 +#: ../../enterprise/meta/general/main_menu.php:527 ../../godmode/menu.php:201 #: ../../godmode/massive/massive_operations.php:312 msgid "Bulk operations" msgstr "Opérations massives" -#: ../../enterprise/meta/general/main_menu.php:777 ../../godmode/menu.php:405 +#: ../../enterprise/meta/general/main_menu.php:777 ../../godmode/menu.php:408 msgid "System audit log" msgstr "Journaux d'audit du système" @@ -13446,7 +13426,7 @@ msgid "Forgot your password?" msgstr "Mot de passe oublié ?" #: ../../enterprise/meta/general/login_page.php:209 -#: ../../include/functions_config.php:2550 +#: ../../include/functions_config.php:2526 msgid "PANDORA FMS NEXT GENERATION" msgstr "PANDORA FMS NEXT GENERATION" @@ -13540,8 +13520,8 @@ msgstr "Ou désactivez %s Enterprise" #: ../../include/ajax/alert_list.ajax.php:306 #: ../../include/class/SnmpConsole.class.php:493 #: ../../include/class/SnmpConsole.class.php:545 -#: ../../include/class/SnmpConsole.class.php:887 -#: ../../operation/agentes/alerts_status.php:431 +#: ../../include/class/SnmpConsole.class.php:888 +#: ../../operation/agentes/alerts_status.php:438 msgid "Validate" msgstr "Valider" @@ -13718,7 +13698,7 @@ msgid "There are no defined users" msgstr "Aucun utilisateur défini" #: ../../enterprise/extensions/disabled/check_acls.php:134 -#: ../../godmode/menu.php:142 +#: ../../godmode/menu.php:143 msgid "Module tags" msgstr "Étiquettes de modules" @@ -13956,23 +13936,23 @@ msgstr "Ajout réussi du module d’inventaire '%s'." msgid "Error add '%s' inventory module." msgstr "Erreur d’ajout du module d’inventaire '%s'." -#: ../../enterprise/extensions/vmware/vmware_view.php:61 +#: ../../enterprise/extensions/vmware/vmware_view.php:59 msgid "Top 5 VMs CPU Usage" msgstr "Top 5 VMs de l'utilisation de l'UC" -#: ../../enterprise/extensions/vmware/vmware_view.php:70 +#: ../../enterprise/extensions/vmware/vmware_view.php:66 msgid "Top 5 VMs Memory Usage" msgstr "Top 5 VMs de l'utilisation de la mémoire" -#: ../../enterprise/extensions/vmware/vmware_view.php:82 +#: ../../enterprise/extensions/vmware/vmware_view.php:76 msgid "Top 5 VMs Provisioning Usage" msgstr "Top 5 de l’utilisation du provisionnement des machines virtuelles" -#: ../../enterprise/extensions/vmware/vmware_view.php:91 +#: ../../enterprise/extensions/vmware/vmware_view.php:83 msgid "Top 5 VMs Network Usage" msgstr "Top 5 VMs de l'utilisation du réseau" -#: ../../enterprise/extensions/vmware/vmware_view.php:684 +#: ../../enterprise/extensions/vmware/vmware_view.php:669 msgid "Host ESX" msgstr "Hôte ESX" @@ -13986,20 +13966,20 @@ msgstr "Hôte ESX" #: ../../enterprise/operation/agentes/tag_view.php:1023 #: ../../mobile/operation/modules.php:548 ../../mobile/operation/modules.php:571 #: ../../mobile/operation/modules.php:611 ../../mobile/operation/modules.php:634 -#: ../../include/functions.php:1380 ../../include/functions.php:1419 +#: ../../include/functions.php:1406 ../../include/functions.php:1445 #: ../../include/functions_modules.php:2883 #: ../../include/functions_modules.php:2889 -#: ../../include/functions_modules.php:4120 -#: ../../include/functions_modules.php:4152 ../../include/functions_ui.php:3846 -#: ../../include/functions_ui.php:3912 ../../include/class/Tree.class.php:655 +#: ../../include/functions_modules.php:4195 +#: ../../include/functions_modules.php:4227 ../../include/functions_ui.php:3850 +#: ../../include/functions_ui.php:3916 ../../include/class/Tree.class.php:655 #: ../../include/lib/Module.php:572 ../../include/functions_events.php:64 #: ../../include/functions_events.php:116 ../../include/functions_events.php:179 #: ../../operation/agentes/status_monitor.php:1592 #: ../../operation/agentes/status_monitor.php:1598 #: ../../operation/agentes/status_monitor.php:1695 #: ../../operation/agentes/status_monitor.php:1701 -#: ../../operation/agentes/pandora_networkmap.view.php:1811 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 +#: ../../operation/agentes/pandora_networkmap.view.php:1815 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 #: ../../operation/search_modules.php:114 ../../operation/search_modules.php:141 #: ../../operation/events/events.php:603 ../../operation/events/events.php:680 #: ../../operation/events/events.php:706 @@ -14016,20 +13996,20 @@ msgstr "NORMAL" #: ../../enterprise/operation/agentes/tag_view.php:1039 #: ../../mobile/operation/modules.php:554 ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:617 ../../mobile/operation/modules.php:642 -#: ../../include/functions.php:1368 ../../include/functions.php:1400 +#: ../../include/functions.php:1394 ../../include/functions.php:1426 #: ../../include/functions_modules.php:2877 #: ../../include/functions_modules.php:2893 -#: ../../include/functions_modules.php:4124 -#: ../../include/functions_modules.php:4144 ../../include/functions_ui.php:3852 -#: ../../include/functions_ui.php:3922 ../../include/class/Tree.class.php:625 +#: ../../include/functions_modules.php:4199 +#: ../../include/functions_modules.php:4219 ../../include/functions_ui.php:3856 +#: ../../include/functions_ui.php:3926 ../../include/class/Tree.class.php:625 #: ../../include/lib/Module.php:556 ../../include/functions_events.php:67 #: ../../include/functions_events.php:120 ../../include/functions_events.php:164 #: ../../operation/agentes/status_monitor.php:1606 #: ../../operation/agentes/status_monitor.php:1619 #: ../../operation/agentes/status_monitor.php:1711 #: ../../operation/agentes/status_monitor.php:1717 -#: ../../operation/agentes/pandora_networkmap.view.php:1805 -#: ../../operation/agentes/pandora_networkmap.view.php:1824 +#: ../../operation/agentes/pandora_networkmap.view.php:1809 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 #: ../../operation/search_modules.php:120 ../../operation/search_modules.php:149 #: ../../operation/events/events.php:578 ../../operation/events/events.php:686 #: ../../operation/events/events.php:711 @@ -14047,12 +14027,12 @@ msgstr "CRITIQUE" #: ../../enterprise/operation/agentes/tag_view.php:1055 #: ../../mobile/operation/modules.php:560 ../../mobile/operation/modules.php:587 #: ../../mobile/operation/modules.php:623 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1371 ../../include/functions.php:1407 +#: ../../include/functions.php:1397 ../../include/functions.php:1433 #: ../../include/functions_modules.php:2880 #: ../../include/functions_modules.php:2897 -#: ../../include/functions_modules.php:4128 -#: ../../include/functions_modules.php:4160 ../../include/functions_ui.php:3840 -#: ../../include/functions_ui.php:3917 ../../include/class/Tree.class.php:633 +#: ../../include/functions_modules.php:4203 +#: ../../include/functions_modules.php:4235 ../../include/functions_ui.php:3844 +#: ../../include/functions_ui.php:3921 ../../include/class/Tree.class.php:633 #: ../../include/class/NetworkMap.class.php:2938 ../../include/lib/Module.php:560 #: ../../include/functions_events.php:78 ../../include/functions_events.php:112 #: ../../include/functions_events.php:182 @@ -14060,8 +14040,8 @@ msgstr "CRITIQUE" #: ../../operation/agentes/status_monitor.php:1640 #: ../../operation/agentes/status_monitor.php:1727 #: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1808 -#: ../../operation/agentes/pandora_networkmap.view.php:1829 +#: ../../operation/agentes/pandora_networkmap.view.php:1812 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:126 ../../operation/search_modules.php:157 #: ../../operation/events/events.php:608 ../../operation/events/events.php:674 #: ../../operation/events/events.php:728 @@ -14082,12 +14062,12 @@ msgstr "ATTENTION" #: ../../mobile/operation/modules.php:571 ../../mobile/operation/modules.php:579 #: ../../mobile/operation/modules.php:587 ../../mobile/operation/modules.php:634 #: ../../mobile/operation/modules.php:642 ../../mobile/operation/modules.php:650 -#: ../../include/functions.php:1384 ../../include/functions.php:1410 +#: ../../include/functions.php:1410 ../../include/functions.php:1436 #: ../../include/functions_modules.php:2889 #: ../../include/functions_modules.php:2893 #: ../../include/functions_modules.php:2897 -#: ../../include/functions_modules.php:4132 ../../include/functions_ui.php:3859 -#: ../../include/functions_ui.php:3937 ../../include/class/Tree.class.php:639 +#: ../../include/functions_modules.php:4207 ../../include/functions_ui.php:3863 +#: ../../include/functions_ui.php:3941 ../../include/class/Tree.class.php:639 #: ../../include/lib/Module.php:563 ../../include/functions_events.php:81 #: ../../include/functions_events.php:125 ../../include/functions_events.php:185 #: ../../operation/agentes/status_monitor.php:1648 @@ -14098,9 +14078,9 @@ msgstr "ATTENTION" #: ../../operation/agentes/status_monitor.php:1717 #: ../../operation/agentes/status_monitor.php:1727 #: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 -#: ../../operation/agentes/pandora_networkmap.view.php:1824 -#: ../../operation/agentes/pandora_networkmap.view.php:1829 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:132 ../../operation/search_modules.php:141 #: ../../operation/search_modules.php:149 ../../operation/search_modules.php:157 #: ../../operation/events/events.php:614 ../../operation/events/events.php:693 @@ -14226,11 +14206,11 @@ msgstr "Carte" #: ../../enterprise/extensions/vmware/vmware_view.php:1311 #: ../../enterprise/extensions/vmware/vmware_view.php:1348 -#: ../../godmode/users/configure_user.php:1299 +#: ../../godmode/users/configure_user.php:1358 #: ../../godmode/massive/massive_edit_users.php:281 #: ../../mobile/include/functions_web.php:22 #: ../../include/class/OrderInterpreter.class.php:219 -#: ../../operation/users/user_edit.php:366 ../../operation/menu.php:349 +#: ../../operation/users/user_edit.php:440 ../../operation/menu.php:353 msgid "Dashboard" msgstr "Panneau de configuration" @@ -14343,7 +14323,7 @@ msgid "Power Status: " msgstr "État : " #: ../../enterprise/extensions/vmware/vmware_manager.php:269 -#: ../../operation/agentes/pandora_networkmap.view.php:1844 +#: ../../operation/agentes/pandora_networkmap.view.php:1848 msgid "Status: " msgstr "État : " @@ -14484,7 +14464,7 @@ msgstr "État d'alerte" #: ../../godmode/massive/massive_edit_modules.php:656 #: ../../godmode/massive/massive_edit_modules.php:885 #: ../../godmode/alerts/configure_alert_template.php:850 -#: ../../include/functions_reporting_html.php:5422 +#: ../../include/functions_reporting_html.php:5441 #: ../../include/functions_treeview.php:92 #: ../../include/functions_treeview.php:104 #: ../../include/functions_alerts.php:676 @@ -14509,7 +14489,7 @@ msgstr "Min." #: ../../godmode/massive/massive_edit_modules.php:671 #: ../../godmode/massive/massive_edit_modules.php:887 #: ../../godmode/alerts/configure_alert_template.php:862 -#: ../../include/functions_reporting_html.php:5423 +#: ../../include/functions_reporting_html.php:5442 #: ../../include/functions_treeview.php:92 #: ../../include/functions_treeview.php:104 #: ../../include/functions_alerts.php:675 @@ -14549,6 +14529,13 @@ msgstr "Chaîne" msgid "Percentage" msgstr "Pourcentage" +#: ../../enterprise/godmode/modules/configure_local_component.php:346 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:568 +#: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:659 +msgid "Defines threshold as a percentage of value decrease/increment" +msgstr "" +"Il définit le seuil en pourcentage de diminution/incrémentation de la valeur" + #: ../../enterprise/godmode/modules/configure_local_component.php:350 #: ../../godmode/modules/manage_network_components_form_common.php:201 #: ../../godmode/modules/manage_network_components_form_wizard.php:412 @@ -14647,7 +14634,7 @@ msgstr "À l'état critique" #: ../../godmode/modules/manage_network_components_form_common.php:316 #: ../../godmode/agentes/module_manager_editor_common.php:547 #: ../../godmode/massive/massive_edit_modules.php:1042 -#: ../../include/functions_reporting.php:4297 +#: ../../include/functions_reporting.php:4560 msgid "Historical data" msgstr "Historique des données" @@ -14678,7 +14665,7 @@ msgstr "Cette valeur peut être réglée que dans les modules asynchrones." #: ../../godmode/modules/manage_network_components_form_common.php:319 #: ../../godmode/agentes/module_manager_editor_common.php:679 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:480 -#: ../../include/functions_reporting.php:6783 +#: ../../include/functions_reporting.php:6998 msgid "Min. Value" msgstr "Valeur minimale" @@ -14692,7 +14679,7 @@ msgstr "Toute valeur inférieure à ce nombre est refusée" #: ../../godmode/modules/manage_network_components_form_common.php:321 #: ../../godmode/agentes/module_manager_editor_common.php:683 #: ../../include/rest-api/models/VisualConsole/Items/Percentile.php:492 -#: ../../include/functions_reporting.php:6779 +#: ../../include/functions_reporting.php:6994 msgid "Max. Value" msgstr "Valeur maximale" @@ -14911,112 +14898,6 @@ msgstr "" msgid "Please introduce a positicve percentage value" msgstr "Veuillez introduire une valeur de pourcentage positicve" -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:40 -msgid "To manage inventory plugin you must activate centralized management" -msgstr "Pour gérer le plugin d’inventaire, activez la gestion centralisée" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:63 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:350 -#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 -#, php-format -msgid "" -"This console is not manager of this environment, please manage this feature " -"from centralized manager console. Go to %s to manage it." -msgstr "" -"Cette console n'est pas le gestionnaire de cet environment, veuillez gérer cet " -"fonctionnalité depuis la console de gestion centralisée. Allez vers %s pour le " -"gérer." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:72 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:48 -#: ../../enterprise/operation/log/log_viewer.php:459 -#: ../../godmode/netflow/nf_edit.php:47 -#: ../../operation/netflow/nf_live_view.php:141 -msgid "Not supported in Windows systems" -msgstr "Pas pris en charge sur Windows" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:121 -msgid "Successfully created inventory module" -msgstr "Module d'inventaire créé correctement" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:122 -msgid "Error creating inventory module" -msgstr "Erreur de création du module d'inventaire" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:149 -#: ../../enterprise/godmode/agentes/inventory_manager.php:128 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 -msgid "Successfully updated inventory module" -msgstr "Module d'inventaire mis à jour correctement" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:150 -#: ../../enterprise/godmode/agentes/inventory_manager.php:130 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 -msgid "Error updating inventory module" -msgstr "Erreur de mise à jour du module d'inventaire" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:168 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:189 -#: ../../enterprise/godmode/agentes/inventory_manager.php:100 -msgid "Successfully deleted inventory module" -msgstr "Module d'inventaire supprimé correctement" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:169 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:190 -#: ../../enterprise/godmode/agentes/inventory_manager.php:102 -msgid "Error deleting inventory module" -msgstr "Erreur de suppression du module d'inventaire" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:223 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:256 -#: ../../enterprise/godmode/modules/local_components.php:446 -#: ../../godmode/modules/manage_nc_groups.php:194 -#: ../../godmode/modules/manage_network_components.php:581 -#: ../../godmode/modules/manage_network_templates.php:114 -msgid "Successfully multiple deleted" -msgstr "Données multiples supprimées correctement" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:224 -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:257 -#: ../../enterprise/godmode/modules/local_components.php:447 -#: ../../godmode/modules/manage_nc_groups.php:195 -#: ../../godmode/modules/manage_network_components.php:582 -#: ../../godmode/modules/manage_network_templates.php:115 -msgid "Not deleted. Error deleting multiple data" -msgstr "Erreur de suppression de données multiples" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:281 -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:118 -msgid "Interpreter" -msgstr "Interprète" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:290 -msgid "No inventory modules defined" -msgstr "Aucun module d'inventaire défini" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:311 -msgid "Local module" -msgstr "Module local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:313 -msgid "Remote/Local" -msgstr "À distance/Local" - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:359 -msgid "" -"The configurations of inventory modules from the nodes have been unified.\n" -"\t\tFrom this point on, changes to the inventory scripts must be made through " -"this screen." -msgstr "" -"Les configurations des modules d’inventaire des nœuds ont été unifiées.\n" -"\t\tÀ partir de ce moment, les modifications apportées aux scripts " -"d’inventaire doivent être effectuées via cet écran." - -#: ../../enterprise/godmode/modules/manage_inventory_modules.php:361 -msgid "You can find more information at:" -msgstr "Vous trouverez plus d’informations sur :" - #: ../../enterprise/godmode/modules/local_components.php:141 #: ../../godmode/modules/manage_network_components.php:197 #: ../../godmode/alerts/configure_alert_template.php:191 @@ -15027,8 +14908,8 @@ msgstr "Créé correctement à partir de %s" #: ../../enterprise/godmode/modules/local_components.php:142 #: ../../enterprise/godmode/modules/local_components.php:320 #: ../../enterprise/godmode/policies/policies.php:172 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:124 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:126 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:129 #: ../../enterprise/godmode/alerts/alert_inventory_builder.php:77 #: ../../enterprise/godmode/setup/setup_metaconsole.php:126 #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:48 @@ -15041,19 +14922,19 @@ msgstr "Créé correctement à partir de %s" #: ../../godmode/modules/manage_nc_groups.php:85 #: ../../godmode/modules/manage_network_components.php:200 #: ../../godmode/modules/manage_network_components.php:429 -#: ../../godmode/users/configure_user.php:555 +#: ../../godmode/users/configure_user.php:569 #: ../../godmode/agentes/configurar_agente.php:362 -#: ../../godmode/agentes/configurar_agente.php:887 +#: ../../godmode/agentes/configurar_agente.php:900 #: ../../godmode/agentes/planned_downtime.editor.php:642 -#: ../../godmode/alerts/alert_commands.php:645 +#: ../../godmode/alerts/alert_commands.php:646 #: ../../godmode/alerts/configure_alert_template.php:192 #: ../../godmode/alerts/configure_alert_template.php:527 #: ../../godmode/alerts/alert_list.php:172 ../../godmode/setup/news.php:67 #: ../../godmode/setup/gis.php:49 #: ../../godmode/reporting/reporting_builder.item_editor.php:5920 -#: ../../include/functions_alerts.php:2751 -#: ../../include/functions_planned_downtimes.php:112 -#: ../../include/functions_planned_downtimes.php:844 +#: ../../include/functions_alerts.php:2755 +#: ../../include/functions_planned_downtimes.php:113 +#: ../../include/functions_planned_downtimes.php:845 #: ../../operation/agentes/pandora_networkmap.php:140 #: ../../operation/agentes/pandora_networkmap.php:378 msgid "Could not be created" @@ -15087,7 +14968,7 @@ msgstr "Créé correctement" #: ../../enterprise/godmode/reporting/reporting_builder.template_editor.php:83 #: ../../enterprise/godmode/reporting/reporting_builder.template_advanced.php:70 #: ../../enterprise/godmode/servers/credential_boxes_satellite.php:112 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1334 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1360 #: ../../enterprise/include/ajax/servers.ajax.php:331 #: ../../enterprise/tools/ipam/ipam_action.php:277 #: ../../enterprise/tools/ipam/ipam_massive.php:48 @@ -15098,8 +14979,8 @@ msgstr "Créé correctement" #: ../../godmode/alerts/alert_templates.php:157 #: ../../godmode/alerts/configure_alert_template.php:555 #: ../../godmode/alerts/alert_list.php:95 ../../godmode/alerts/alert_list.php:320 -#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2751 -#: ../../include/functions_planned_downtimes.php:122 +#: ../../godmode/setup/gis.php:41 ../../include/functions_alerts.php:2755 +#: ../../include/functions_planned_downtimes.php:123 #: ../../operation/agentes/pandora_networkmap.php:216 #: ../../operation/agentes/pandora_networkmap.php:515 msgid "Could not be updated" @@ -15111,6 +14992,24 @@ msgstr "Erreur de mise à jour" msgid "Updated successfully" msgstr "Mis à jour correctement" +#: ../../enterprise/godmode/modules/local_components.php:446 +#: ../../godmode/modules/manage_nc_groups.php:194 +#: ../../godmode/modules/manage_inventory_modules.php:223 +#: ../../godmode/modules/manage_inventory_modules.php:256 +#: ../../godmode/modules/manage_network_components.php:581 +#: ../../godmode/modules/manage_network_templates.php:114 +msgid "Successfully multiple deleted" +msgstr "Données multiples supprimées correctement" + +#: ../../enterprise/godmode/modules/local_components.php:447 +#: ../../godmode/modules/manage_nc_groups.php:195 +#: ../../godmode/modules/manage_inventory_modules.php:224 +#: ../../godmode/modules/manage_inventory_modules.php:257 +#: ../../godmode/modules/manage_network_components.php:582 +#: ../../godmode/modules/manage_network_templates.php:115 +msgid "Not deleted. Error deleting multiple data" +msgstr "Erreur de suppression de données multiples" + #: ../../enterprise/godmode/modules/local_components.php:550 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2854 #: ../../godmode/modules/manage_network_components.php:662 @@ -15127,7 +15026,7 @@ msgstr "Rechercher liste de concordances par nom, description ou données" #: ../../enterprise/include/class/NetworkConfigManager.class.php:628 #: ../../godmode/modules/manage_network_components.php:862 #: ../../godmode/modules/manage_network_components.php:863 -#: ../../godmode/agentes/module_manager.php:1226 +#: ../../godmode/agentes/module_manager.php:1231 #: ../../godmode/snmpconsole/snmp_alert.php:1347 #: ../../godmode/snmpconsole/snmp_alert.php:1348 #: ../../godmode/alerts/alert_actions.php:435 @@ -15136,64 +15035,6 @@ msgstr "Rechercher liste de concordances par nom, description ou données" msgid "Duplicate" msgstr "Dupliquer" -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:75 -#: ../../enterprise/godmode/agentes/inventory_manager.php:165 -msgid "Inventory module error" -msgstr "Erreur du module d'inventaire" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:120 -msgid "Left blank for the LOCAL inventory modules" -msgstr "Laissé en blanc pour les modules d'inventaire LOCAUX" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:122 -msgid "Block Mode" -msgstr "Mode verrouillage" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:125 -#: ../../godmode/massive/massive_standby_alerts.php:224 -#: ../../godmode/massive/massive_standby_alerts.php:259 -#: ../../godmode/massive/massive_enable_disable_alerts.php:196 -#: ../../godmode/massive/massive_enable_disable_alerts.php:231 -#: ../../include/class/ModuleTemplates.class.php:1209 -msgid "Format" -msgstr "Format" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:126 -msgid "separate fields with " -msgstr "séparer les champs avec " - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:129 -msgid "Script mode" -msgstr "Mode script" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:131 -msgid "Use script" -msgstr "Utiliser un script" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:139 -msgid "Use inline code" -msgstr "Utiliser le code en ligne" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:148 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 -#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 -msgid "Script path" -msgstr "Chemin du script" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:151 -#: ../../include/ajax/double_auth.ajax.php:149 -#: ../../include/ajax/double_auth.ajax.php:292 -msgid "Code" -msgstr "Code" - -#: ../../enterprise/godmode/modules/manage_inventory_modules_form.php:152 -msgid "" -"Here is placed the script for the REMOTE inventory modules Local inventory " -"modules don't use this field" -msgstr "" -"Placer ici le script pour les modules d'inventaire À DISTANCE. Les modules " -"d'inventaire locaux n'utilisent pas ce champ" - #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:83 msgid "Cannot delete rule from autoconfiguration" msgstr "Impossible de supprimer la règle de la configuration automatique" @@ -15248,6 +15089,19 @@ msgstr "" msgid "Agent autoconfiguration list" msgstr "Liste de configuration automatique de l’agent" +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:350 +#: ../../enterprise/godmode/agentes/agent_autoconfiguration.php:125 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:213 +#: ../../godmode/modules/manage_inventory_modules.php:63 +#, php-format +msgid "" +"This console is not manager of this environment, please manage this feature " +"from centralized manager console. Go to %s to manage it." +msgstr "" +"Cette console n'est pas le gestionnaire de cet environment, veuillez gérer cet " +"fonctionnalité depuis la console de gestion centralisée. Allez vers %s pour le " +"gérer." + #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:362 msgid "Autoconfiguration" msgstr "Configuration automatique" @@ -15257,7 +15111,7 @@ msgstr "Configuration automatique" #: ../../godmode/modules/manage_network_components_form_wizard.php:661 #: ../../godmode/agentes/planned_downtime.list.php:660 #: ../../godmode/agentes/planned_downtime.editor.php:878 -#: ../../include/functions_reporting_html.php:6303 +#: ../../include/functions_reporting_html.php:6322 msgid "Execution" msgstr "Exécution" @@ -15413,7 +15267,7 @@ msgstr "Aucune modification" #: ../../enterprise/godmode/agentes/agent_autoconfiguration.definition.php:648 #: ../../godmode/agentes/agent_manager.php:505 #: ../../godmode/reporting/reporting_builder.item_editor.php:73 -#: ../../include/functions_events.php:4869 +#: ../../include/functions_events.php:4848 #: ../../operation/agentes/estado_generalagente.php:408 msgid "Secondary groups" msgstr "Groupes secondaires" @@ -15535,7 +15389,7 @@ msgstr "Activer" #: ../../enterprise/include/lib/Metaconsole/Node.php:1140 #: ../../godmode/extensions.php:259 ../../godmode/users/user_list.php:800 #: ../../godmode/massive/massive_edit_users.php:519 -#: ../../godmode/alerts/alert_list.list.php:1017 ../../include/functions.php:3377 +#: ../../godmode/alerts/alert_list.list.php:1017 ../../include/functions.php:3403 #: ../../include/class/SatelliteAgent.class.php:1216 msgid "Disable" msgstr "Désactiver" @@ -15553,10 +15407,10 @@ msgstr "Afficher l’agent >" msgid "This collection has not been added to any agents" msgstr "Cette collection n’a été ajoutée à aucun agent" -#: ../../enterprise/godmode/agentes/configurar_agente.php:112 +#: ../../enterprise/godmode/agentes/configurar_agente.php:88 #: ../../enterprise/godmode/policies/policy.php:82 #: ../../enterprise/include/functions_policies.php:3833 -#: ../../godmode/agentes/configurar_agente.php:729 +#: ../../godmode/agentes/configurar_agente.php:742 msgid "Agent plugins" msgstr "Plugins d'agents" @@ -15583,20 +15437,20 @@ msgid "Show files" msgstr "Afficher les fichiers" #: ../../enterprise/godmode/agentes/collection_manager.php:196 -#: ../../enterprise/operation/agentes/agent_inventory.php:280 #: ../../enterprise/operation/log/log_viewer.php:1257 #: ../../enterprise/operation/log/log_viewer.php:1265 -#: ../../enterprise/operation/inventory/inventory.php:475 -#: ../../enterprise/operation/inventory/inventory.php:518 #: ../../godmode/reporting/reporting_builder.php:1260 -#: ../../include/functions_reporting.php:2977 +#: ../../include/functions_reporting.php:3095 +#: ../../operation/agentes/agent_inventory.php:280 +#: ../../operation/inventory/inventory.php:478 +#: ../../operation/inventory/inventory.php:521 msgid "No data found." msgstr "Aucune donnée retrouvée" #: ../../enterprise/godmode/agentes/collection_manager.php:205 -#: ../../enterprise/godmode/agentes/inventory_manager.php:220 #: ../../enterprise/operation/agentes/collection_view.php:74 -#: ../../godmode/agentes/module_manager.php:883 +#: ../../godmode/agentes/inventory_manager.php:220 +#: ../../godmode/agentes/module_manager.php:884 #: ../../godmode/snmpconsole/snmp_alert.php:1254 #: ../../godmode/reporting/reporting_builder.list_items.php:371 #: ../../godmode/reporting/graph_builder.graph_editor.php:211 @@ -15701,46 +15555,6 @@ msgstr "Sélectionner un filtre" msgid "Percentual value" msgstr "Valeur en pourcentage" -#: ../../enterprise/godmode/agentes/inventory_manager.php:84 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 -msgid "Successfully added inventory module" -msgstr "Module d'inventaire ajouté correctement" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:86 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 -msgid "Error adding inventory module" -msgstr "Erreur d'ajout du module d'inventaire" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:89 -#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 -msgid "The inventory of the module already exists" -msgstr "L’inventaire du module existe déjà" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:110 -msgid "Successfully forced inventory module" -msgstr "Module d'inventaire forcé correctement" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:112 -msgid "Error forcing inventory module" -msgstr "Erreur : module d'inventaire non forcé" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:223 -#: ../../enterprise/include/functions_ui.php:92 -msgid "Target" -msgstr "Cible" - -#: ../../enterprise/godmode/agentes/inventory_manager.php:258 -#: ../../enterprise/include/functions_ipam.php:1386 -#: ../../enterprise/operation/services/services.list.php:639 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:586 -#: ../../godmode/wizards/DiscoveryTaskList.class.php:676 -#: ../../include/ajax/module.php:1065 ../../include/functions_ui.php:1162 -#: ../../operation/visual_console/view.php:406 -#: ../../operation/agentes/group_view.php:221 -#: ../../operation/agentes/group_view.php:283 -msgid "Force" -msgstr "Forcer" - #: ../../enterprise/godmode/agentes/collections.data.php:384 msgid "Collection updated successfully" msgstr "Collection mise à jour correctement" @@ -15824,7 +15638,7 @@ msgstr "Nouveau plugin" #: ../../enterprise/godmode/agentes/plugins_manager.php:192 #: ../../enterprise/godmode/policies/policy_plugins.php:185 -#: ../../enterprise/godmode/policies/policies.php:539 ../../godmode/menu.php:309 +#: ../../enterprise/godmode/policies/policies.php:539 ../../godmode/menu.php:312 msgid "Plugins" msgstr "Plugins" @@ -15849,6 +15663,10 @@ msgstr "Configuration manuelle" msgid "No component was found" msgstr "Aucun composant a été trouvé" +#: ../../enterprise/godmode/agentes/module_manager_editor_data.php:114 +msgid "macro_help" +msgstr "macro_help" + #: ../../enterprise/godmode/agentes/module_manager_editor_data.php:155 msgid "Show configuration data" msgstr "Afficher les données de configuration" @@ -15886,7 +15704,7 @@ msgid "Delete remote conf agent files" msgstr "Supprimer les fichiers de configuration distante de l’agent" #: ../../enterprise/godmode/agentes/agent_disk_conf_editor.php:249 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1351 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 #: ../../godmode/agentes/agent_manager.php:543 msgid "Delete remote configuration file" msgstr "Effacer le fichier de configuration à distance" @@ -15997,7 +15815,7 @@ msgid "Custom ID" msgstr "Identifiant personnalisé" #: ../../enterprise/godmode/agentes/module_manager_editor_webux.php:498 -#: ../../godmode/agentes/module_manager.php:1165 +#: ../../godmode/agentes/module_manager.php:1166 msgid "" "The policy modules of data type will only update their intervals when policy " "is applied." @@ -16065,7 +15883,7 @@ msgstr "Éditeur de cartes réseau vide" #: ../../operation/visual_console/view.php:228 #: ../../operation/agentes/pandora_networkmap.editor.php:232 #: ../../operation/agentes/pandora_networkmap.php:672 -#: ../../operation/menu.php:310 +#: ../../operation/menu.php:314 msgid "Topology maps" msgstr "Cartes de topologie" @@ -16073,14 +15891,14 @@ msgstr "Cartes de topologie" #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:108 #: ../../operation/agentes/pandora_networkmap.editor.php:236 #: ../../operation/agentes/pandora_networkmap.php:676 -#: ../../operation/agentes/pandora_networkmap.view.php:2274 +#: ../../operation/agentes/pandora_networkmap.view.php:2278 msgid "Networkmap" msgstr "Carte de réseau" #: ../../enterprise/godmode/agentes/pandora_networkmap_empty.editor.php:113 #: ../../godmode/agentes/pandora_networkmap_empty.editor.php:115 #: ../../operation/agentes/pandora_networkmap.editor.php:274 -#: ../../operation/agentes/pandora_networkmap.view.php:2280 +#: ../../operation/agentes/pandora_networkmap.view.php:2284 msgid "Not found networkmap." msgstr "Aucune carte de réseau retrouvée" @@ -16197,7 +16015,7 @@ msgstr "Créer un nouveau module d’analyse Web" #: ../../enterprise/godmode/policies/policy_queue.php:218 #: ../../enterprise/godmode/policies/policies.php:272 #: ../../enterprise/godmode/policies/policy_linking.php:117 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:318 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:320 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:91 #: ../../enterprise/godmode/policies/policy_collections.php:50 #: ../../enterprise/godmode/policies/policy_agents.php:326 @@ -16231,7 +16049,7 @@ msgstr "Impossible de l'ajouter à la liste de plugins à supprimer." #: ../../enterprise/godmode/policies/policy_plugins.php:70 #: ../../enterprise/godmode/policies/policy_alerts.php:259 #: ../../enterprise/godmode/policies/policy_modules.php:1321 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:150 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:152 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:169 #: ../../enterprise/godmode/policies/policy_collections.php:103 #: ../../enterprise/godmode/policies/policy_agents.php:113 @@ -16242,7 +16060,7 @@ msgstr "Suppression annulée correctement" #: ../../enterprise/godmode/policies/policy_plugins.php:71 #: ../../enterprise/godmode/policies/policy_alerts.php:260 #: ../../enterprise/godmode/policies/policy_modules.php:1322 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:151 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:153 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:172 #: ../../enterprise/godmode/policies/policy_collections.php:104 #: ../../enterprise/godmode/policies/policy_agents.php:114 @@ -16277,35 +16095,35 @@ msgstr "Cette politique est en application et ne peut pas être modifiée" #: ../../enterprise/godmode/policies/policy_alerts.php:153 #: ../../enterprise/godmode/policies/policy_modules.php:536 #: ../../enterprise/godmode/setup/setup_metaconsole.php:157 -#: ../../godmode/agentes/configurar_agente.php:2234 +#: ../../godmode/agentes/configurar_agente.php:2250 #: ../../godmode/agentes/modificar_agente.php:278 #: ../../godmode/massive/massive_enable_disable_alerts.php:124 -#: ../../godmode/alerts/alert_list.php:401 +#: ../../godmode/alerts/alert_list.php:419 #: ../../include/ajax/alert_list.ajax.php:381 msgid "Could not be disabled" msgstr "Erreur de désactivation" #: ../../enterprise/godmode/policies/policy_alerts.php:178 #: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:427 +#: ../../godmode/alerts/alert_list.php:445 msgid "Successfully set standby" msgstr "Mode veille configuré correctement" #: ../../enterprise/godmode/policies/policy_alerts.php:179 #: ../../godmode/massive/massive_standby_alerts.php:132 -#: ../../godmode/alerts/alert_list.php:428 +#: ../../godmode/alerts/alert_list.php:446 msgid "Could not be set standby" msgstr "Erreur de configuration du mode veille" #: ../../enterprise/godmode/policies/policy_alerts.php:204 #: ../../godmode/massive/massive_standby_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:454 +#: ../../godmode/alerts/alert_list.php:472 msgid "Successfully set off standby" msgstr "Mode veille désactivé correctement" #: ../../enterprise/godmode/policies/policy_alerts.php:205 #: ../../godmode/massive/massive_standby_alerts.php:102 -#: ../../godmode/alerts/alert_list.php:455 +#: ../../godmode/alerts/alert_list.php:473 msgid "Could not be set off standby" msgstr "Erreur de désactivation du mode veille" @@ -16318,7 +16136,7 @@ msgid " could not be created" msgstr "Erreur de création" #: ../../enterprise/godmode/policies/policy_alerts.php:255 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:145 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:147 msgid "" "Successfully added to delete pending alerts. Will be deleted in the next " "policy application." @@ -16327,12 +16145,12 @@ msgstr "" "dans la suivante application de la politique." #: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:200 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:202 msgid "Added action successfuly" msgstr "Action ajoutée correctement" #: ../../enterprise/godmode/policies/policy_alerts.php:280 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:201 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:203 #: ../../enterprise/godmode/policies/policy_agents.php:251 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:92 #: ../../godmode/massive/massive_delete_action_alerts.php:175 @@ -16347,12 +16165,12 @@ msgid "Could not be added" msgstr "Impossible de l'ajouter" #: ../../enterprise/godmode/policies/policy_alerts.php:302 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:173 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:175 msgid "Deleted action successfuly" msgstr "Action supprimée correctement" #: ../../enterprise/godmode/policies/policy_alerts.php:428 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:468 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:470 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2404 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3372 #: ../../godmode/alerts/alert_list.list.php:650 @@ -16361,7 +16179,7 @@ msgid "Always" msgstr "Toujours" #: ../../enterprise/godmode/policies/policy_alerts.php:430 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:470 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:472 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3374 #: ../../godmode/alerts/alert_list.list.php:652 #: ../../include/class/Diagnostics.class.php:1184 @@ -16370,7 +16188,7 @@ msgid "On" msgstr "Actif" #: ../../enterprise/godmode/policies/policy_alerts.php:434 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:474 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:476 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:3378 #: ../../godmode/alerts/alert_list.list.php:656 msgid "Until" @@ -16378,15 +16196,15 @@ msgstr "Jusqu'à" #: ../../enterprise/godmode/policies/policy_alerts.php:529 #: ../../enterprise/godmode/policies/policy_modules.php:1578 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:542 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:544 #: ../../enterprise/godmode/policies/policy_inventory_modules.php:329 -#: ../../enterprise/godmode/policies/policy_agents.php:1066 -#: ../../enterprise/godmode/policies/policy_agents.php:1535 +#: ../../enterprise/godmode/policies/policy_agents.php:1102 +#: ../../enterprise/godmode/policies/policy_agents.php:1571 msgid "Undo deletion" msgstr "Annuler la suppression" #: ../../enterprise/godmode/policies/policy_alerts.php:596 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:609 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:611 #: ../../godmode/massive/massive_add_action_alerts.php:253 #: ../../godmode/alerts/alert_list.list.php:767 #: ../../godmode/alerts/alert_list.builder.php:127 @@ -16424,7 +16242,7 @@ msgid "Set standby" msgstr "Configurer mode veille" #: ../../enterprise/godmode/policies/policy_alerts.php:754 -#: ../../enterprise/godmode/policies/policy_external_alerts.php:517 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:519 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:344 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:350 #: ../../enterprise/godmode/alerts/alert_inventory_list.php:444 @@ -16531,14 +16349,14 @@ msgid "Could not be added to deleted all modules." msgstr "Impossible de l'ajouter à la liste de suppression des modules" #: ../../enterprise/godmode/policies/policy_modules.php:1368 -#: ../../godmode/agentes/configurar_agente.php:2147 +#: ../../godmode/agentes/configurar_agente.php:2163 #: ../../include/functions_reports.php:963 #, php-format msgid "copy of %s" msgstr "copie de %s" #: ../../enterprise/godmode/policies/policy_modules.php:1386 -#: ../../godmode/agentes/configurar_agente.php:2161 +#: ../../godmode/agentes/configurar_agente.php:2177 #, php-format msgid "copy of %s (%d)" msgstr "copie de %s (%d)" @@ -16568,15 +16386,15 @@ msgstr "Module activé" #: ../../enterprise/godmode/policies/policy_modules.php:1533 #: ../../enterprise/godmode/policies/policy_modules.php:1534 -#: ../../godmode/agentes/module_manager.php:1203 -#: ../../godmode/agentes/module_manager.php:1204 +#: ../../godmode/agentes/module_manager.php:1208 +#: ../../godmode/agentes/module_manager.php:1209 msgid "Enable module" msgstr "Activer le module" #: ../../enterprise/godmode/policies/policy_modules.php:1543 #: ../../enterprise/godmode/policies/policy_modules.php:1544 -#: ../../godmode/agentes/module_manager.php:1213 -#: ../../godmode/agentes/module_manager.php:1214 +#: ../../godmode/agentes/module_manager.php:1218 +#: ../../godmode/agentes/module_manager.php:1219 msgid "Disable module" msgstr "Module désactivé" @@ -16659,8 +16477,8 @@ msgid "Update pending agents" msgstr "Mettre à jour les agents en attente" #: ../../enterprise/godmode/policies/policy_queue.php:337 -#: ../../enterprise/godmode/policies/policy_agents.php:1012 -#: ../../enterprise/godmode/policies/policy_agents.php:1493 +#: ../../enterprise/godmode/policies/policy_agents.php:1048 +#: ../../enterprise/godmode/policies/policy_agents.php:1529 msgid "Add to apply queue" msgstr "Ajouter à la file d'attente pour l'appliquer" @@ -16753,7 +16571,7 @@ msgstr "Filtre de la file d'attente" #: ../../enterprise/godmode/policies/policy_linking.php:153 #: ../../include/functions_massive_operations.php:191 #: ../../include/lib/Dashboard/Widget.php:596 -#: ../../include/functions_events.php:4734 +#: ../../include/functions_events.php:4713 msgid "Node" msgstr "Noeud" @@ -16788,21 +16606,21 @@ msgstr "Gestion des politiques" #: ../../enterprise/godmode/policies/policies.php:239 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:455 #: ../../godmode/alerts/alert_actions.php:129 -#: ../../godmode/alerts/alert_commands.php:711 +#: ../../godmode/alerts/alert_commands.php:712 #: ../../godmode/reporting/map_builder.php:315 #: ../../godmode/reporting/map_builder.php:322 #: ../../godmode/reporting/reporting_builder.php:737 #: ../../include/functions_agents.php:1022 -#: ../../include/functions_planned_downtimes.php:978 +#: ../../include/functions_planned_downtimes.php:979 msgid "Successfully copied" msgstr "Copié correctement" #: ../../enterprise/godmode/policies/policies.php:240 #: ../../enterprise/godmode/reporting/reporting_builder.template.php:456 #: ../../godmode/alerts/alert_actions.php:130 -#: ../../godmode/alerts/alert_commands.php:712 +#: ../../godmode/alerts/alert_commands.php:713 #: ../../godmode/reporting/reporting_builder.php:738 -#: ../../include/functions_planned_downtimes.php:975 +#: ../../include/functions_planned_downtimes.php:976 msgid "Could not be copied" msgstr "Impossible de le copier" @@ -16902,32 +16720,32 @@ msgstr "Liste des modules non associés" msgid "No module specified" msgstr "Aucun module spécifié" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:123 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:125 msgid "Created successfuly" msgstr "Créé correctement" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:127 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:129 msgid "Duplicated alert" msgstr "Alerte dupliquée" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:381 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:383 #: ../../godmode/alerts/alert_list.list.php:188 msgid "Alert control filter" msgstr "Filtre de control d'alertes" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:392 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:394 msgid "Modules in policy per agents" msgstr "Modules dans la politique par agent" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:575 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:577 msgid "There is not external alerts configured in this policy" msgstr "Aucune alerte externe n’est configurée dans cette politique" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:629 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:631 msgid "Modules in policy agents" msgstr "Modules dans les agents de la politique" -#: ../../enterprise/godmode/policies/policy_external_alerts.php:657 +#: ../../enterprise/godmode/policies/policy_external_alerts.php:659 msgid "Alert Template" msgstr "Modèle de l'alerte" @@ -16935,6 +16753,33 @@ msgstr "Modèle de l'alerte" msgid "Module is not selected" msgstr "Le module n'est pas sélectionné." +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:144 +#: ../../godmode/agentes/inventory_manager.php:84 +msgid "Successfully added inventory module" +msgstr "Module d'inventaire ajouté correctement" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:153 +#: ../../godmode/agentes/inventory_manager.php:86 +msgid "Error adding inventory module" +msgstr "Erreur d'ajout du module d'inventaire" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:156 +#: ../../godmode/agentes/inventory_manager.php:89 +msgid "The inventory of the module already exists" +msgstr "L’inventaire du module existe déjà" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:216 +#: ../../godmode/modules/manage_inventory_modules.php:149 +#: ../../godmode/agentes/inventory_manager.php:128 +msgid "Successfully updated inventory module" +msgstr "Module d'inventaire mis à jour correctement" + +#: ../../enterprise/godmode/policies/policy_inventory_modules.php:225 +#: ../../godmode/modules/manage_inventory_modules.php:150 +#: ../../godmode/agentes/inventory_manager.php:130 +msgid "Error updating inventory module" +msgstr "Erreur de mise à jour du module d'inventaire" + #: ../../enterprise/godmode/policies/policy_inventory_modules.php:296 msgid "There are no defined inventory modules" msgstr "Aucun module d'inventaire défini" @@ -17026,13 +16871,18 @@ msgstr "Impossible d'ajouter à la politique" msgid "Apply to" msgstr "Appliquer à" -#: ../../enterprise/godmode/policies/policy_agents.php:538 -#: ../../enterprise/godmode/policies/policy_agents.php:670 +#: ../../enterprise/godmode/policies/policy_agents.php:499 +#: ../../enterprise/godmode/policies/policy_agents.php:517 +msgid "Filter OS" +msgstr "Filtre de système d’exploitation" + +#: ../../enterprise/godmode/policies/policy_agents.php:574 +#: ../../enterprise/godmode/policies/policy_agents.php:706 msgid "Agents in Policy" msgstr "Agents dans la politique" -#: ../../enterprise/godmode/policies/policy_agents.php:566 -#: ../../enterprise/godmode/policies/policy_agents.php:1215 +#: ../../enterprise/godmode/policies/policy_agents.php:602 +#: ../../enterprise/godmode/policies/policy_agents.php:1251 #: ../../enterprise/godmode/setup/setup_auth.php:230 #: ../../enterprise/godmode/setup/setup_auth.php:509 #: ../../enterprise/godmode/setup/setup_auth.php:1304 @@ -17056,30 +16906,30 @@ msgstr "Agents dans la politique" msgid "Groups" msgstr "Groupes" -#: ../../enterprise/godmode/policies/policy_agents.php:572 -#: ../../enterprise/godmode/policies/policy_agents.php:1217 +#: ../../enterprise/godmode/policies/policy_agents.php:608 +#: ../../enterprise/godmode/policies/policy_agents.php:1253 msgid "Groups in Policy" msgstr "Groupes dans la politique" -#: ../../enterprise/godmode/policies/policy_agents.php:707 +#: ../../enterprise/godmode/policies/policy_agents.php:743 msgid "Add agents to policy" msgstr "Ajouter agents à la politique" -#: ../../enterprise/godmode/policies/policy_agents.php:734 +#: ../../enterprise/godmode/policies/policy_agents.php:770 msgid "Delete agents from policy" msgstr "Supprimer les agents de politique" -#: ../../enterprise/godmode/policies/policy_agents.php:831 +#: ../../enterprise/godmode/policies/policy_agents.php:867 msgid "Applied" msgstr "Appliqué" -#: ../../enterprise/godmode/policies/policy_agents.php:832 +#: ../../enterprise/godmode/policies/policy_agents.php:868 msgid "Not applied" msgstr "Non appliqué" -#: ../../enterprise/godmode/policies/policy_agents.php:849 -#: ../../godmode/agentes/configurar_agente.php:615 -#: ../../godmode/agentes/configurar_agente.php:765 +#: ../../enterprise/godmode/policies/policy_agents.php:885 +#: ../../godmode/agentes/configurar_agente.php:628 +#: ../../godmode/agentes/configurar_agente.php:778 #: ../../godmode/agentes/agent_manager.php:533 #: ../../godmode/massive/massive_edit_agents.php:966 #: ../../godmode/reporting/reporting_builder.item_editor.php:79 @@ -17087,20 +16937,20 @@ msgstr "Non appliqué" msgid "Remote configuration" msgstr "Configuration à distance" -#: ../../enterprise/godmode/policies/policy_agents.php:849 +#: ../../enterprise/godmode/policies/policy_agents.php:885 #: ../../enterprise/operation/agentes/policy_view.php:394 msgid "R." msgstr "R." -#: ../../enterprise/godmode/policies/policy_agents.php:852 -#: ../../enterprise/godmode/policies/policy_agents.php:1368 +#: ../../enterprise/godmode/policies/policy_agents.php:888 +#: ../../enterprise/godmode/policies/policy_agents.php:1404 #: ../../enterprise/godmode/admin_access_logs.php:50 #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:190 #: ../../enterprise/operation/agentes/policy_view.php:66 #: ../../enterprise/operation/agentes/policy_view.php:166 #: ../../enterprise/operation/agentes/policy_view.php:257 #: ../../enterprise/operation/agentes/policy_view.php:262 -#: ../../godmode/agentes/module_manager.php:886 +#: ../../godmode/agentes/module_manager.php:887 #: ../../mobile/operation/agents.php:406 #: ../../include/ajax/alert_list.ajax.php:286 #: ../../include/ajax/alert_list.ajax.php:311 @@ -17109,16 +16959,16 @@ msgstr "R." msgid "S." msgstr "S." -#: ../../enterprise/godmode/policies/policy_agents.php:853 +#: ../../enterprise/godmode/policies/policy_agents.php:889 msgid "Unlinked modules" msgstr "Modules non liés" -#: ../../enterprise/godmode/policies/policy_agents.php:853 +#: ../../enterprise/godmode/policies/policy_agents.php:889 msgid "U." msgstr "U." -#: ../../enterprise/godmode/policies/policy_agents.php:854 -#: ../../enterprise/godmode/policies/policy_agents.php:1369 +#: ../../enterprise/godmode/policies/policy_agents.php:890 +#: ../../enterprise/godmode/policies/policy_agents.php:1405 #: ../../enterprise/godmode/admin_access_logs.php:54 #: ../../godmode/reporting/visual_console_builder.elements.php:118 #: ../../mobile/operation/agents.php:407 @@ -17126,100 +16976,100 @@ msgstr "U." msgid "A." msgstr "A." -#: ../../enterprise/godmode/policies/policy_agents.php:856 -#: ../../enterprise/godmode/policies/policy_agents.php:1371 +#: ../../enterprise/godmode/policies/policy_agents.php:892 +#: ../../enterprise/godmode/policies/policy_agents.php:1407 #: ../../enterprise/operation/agentes/policy_view.php:69 msgid "Last application" msgstr "Dernière application" -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 +#: ../../enterprise/godmode/policies/policy_agents.php:893 +#: ../../enterprise/godmode/policies/policy_agents.php:1409 msgid "Add to delete queue" msgstr "Ajouter à la file d'attente de suppression" -#: ../../enterprise/godmode/policies/policy_agents.php:857 -#: ../../enterprise/godmode/policies/policy_agents.php:1373 +#: ../../enterprise/godmode/policies/policy_agents.php:893 +#: ../../enterprise/godmode/policies/policy_agents.php:1409 msgid "D." msgstr "D." -#: ../../enterprise/godmode/policies/policy_agents.php:946 +#: ../../enterprise/godmode/policies/policy_agents.php:982 #: ../../godmode/agentes/agent_manager.php:263 msgid "This agent can be remotely configured" msgstr "Cet agent peut être configuré à distance" -#: ../../enterprise/godmode/policies/policy_agents.php:953 +#: ../../enterprise/godmode/policies/policy_agents.php:989 msgid "This agent can not be remotely configured" msgstr "Cet agent ne peut pas être configuré à distance" -#: ../../enterprise/godmode/policies/policy_agents.php:1003 -#: ../../enterprise/godmode/policies/policy_agents.php:1482 +#: ../../enterprise/godmode/policies/policy_agents.php:1039 +#: ../../enterprise/godmode/policies/policy_agents.php:1518 msgid "Process deletion" msgstr "Suppression de processus" -#: ../../enterprise/godmode/policies/policy_agents.php:1102 -#: ../../enterprise/godmode/policies/policy_agents.php:1427 +#: ../../enterprise/godmode/policies/policy_agents.php:1138 +#: ../../enterprise/godmode/policies/policy_agents.php:1463 #: ../../enterprise/operation/agentes/policy_view.php:83 msgid "Policy applied" msgstr "Politique appliquée" -#: ../../enterprise/godmode/policies/policy_agents.php:1110 -#: ../../enterprise/godmode/policies/policy_agents.php:1435 +#: ../../enterprise/godmode/policies/policy_agents.php:1146 +#: ../../enterprise/godmode/policies/policy_agents.php:1471 msgid "Need apply" msgstr "Vous devez l'appliquer" -#: ../../enterprise/godmode/policies/policy_agents.php:1122 -#: ../../enterprise/godmode/policies/policy_agents.php:1447 +#: ../../enterprise/godmode/policies/policy_agents.php:1158 +#: ../../enterprise/godmode/policies/policy_agents.php:1483 msgid "Applying policy" msgstr "Application de la politique en cours" -#: ../../enterprise/godmode/policies/policy_agents.php:1135 -#: ../../enterprise/godmode/policies/policy_agents.php:1458 +#: ../../enterprise/godmode/policies/policy_agents.php:1171 +#: ../../enterprise/godmode/policies/policy_agents.php:1494 msgid "Deleting from policy" msgstr "Suppression de la politique en cours" -#: ../../enterprise/godmode/policies/policy_agents.php:1152 +#: ../../enterprise/godmode/policies/policy_agents.php:1188 #: ../../godmode/massive/massive_delete_modules.php:87 #: ../../godmode/massive/massive_add_alerts.php:100 #: ../../godmode/massive/massive_delete_agents.php:61 #: ../../godmode/massive/massive_edit_agents.php:214 #: ../../godmode/massive/massive_delete_alerts.php:113 #: ../../godmode/massive/massive_add_action_alerts.php:75 -#: ../../include/functions_visual_map.php:2566 -#: ../../include/functions_visual_map.php:2963 +#: ../../include/functions_visual_map.php:2568 +#: ../../include/functions_visual_map.php:2914 msgid "No agents selected" msgstr "Aucun agent sélectionné" -#: ../../enterprise/godmode/policies/policy_agents.php:1295 +#: ../../enterprise/godmode/policies/policy_agents.php:1331 msgid "Add groups to policy" msgstr "Ajouter des groupes à la politique" -#: ../../enterprise/godmode/policies/policy_agents.php:1317 +#: ../../enterprise/godmode/policies/policy_agents.php:1353 msgid "Delete groups from policy" msgstr "Supprimer des groupes de la politique" -#: ../../enterprise/godmode/policies/policy_agents.php:1370 +#: ../../enterprise/godmode/policies/policy_agents.php:1406 msgid "Total agents in policy group" msgstr "Nombre total d'agents dans le groupe de la politique" -#: ../../enterprise/godmode/policies/policy_agents.php:1370 +#: ../../enterprise/godmode/policies/policy_agents.php:1406 msgid "T." msgstr "T." #: ../../enterprise/godmode/policies/policy.php:102 #: ../../enterprise/include/functions_policies.php:3733 -#: ../../godmode/agentes/configurar_agente.php:538 +#: ../../godmode/agentes/configurar_agente.php:551 msgid "Agent wizard" msgstr "Assistant de l'agent" #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:41 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:44 #: ../../enterprise/operation/snmpconsole/snmp_view.php:82 -#: ../../enterprise/operation/menu.php:153 -#: ../../include/class/SnmpConsole.class.php:928 +#: ../../enterprise/operation/menu.php:140 +#: ../../include/class/SnmpConsole.class.php:929 msgid "SNMP trap editor" msgstr "Éditeur de déroutements SNMP" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:74 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:77 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:382 #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:299 #: ../../godmode/setup/snmp_wizard.php:42 @@ -17227,12 +17077,12 @@ msgstr "Éditeur de déroutements SNMP" msgid "OID" msgstr "OID" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:82 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:85 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:383 msgid "Custom OID" msgstr "OID personnalisé" -#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:92 +#: ../../enterprise/godmode/snmpconsole/snmp_trap_editor_form.php:95 #: ../../enterprise/godmode/snmpconsole/snmp_trap_editor.php:385 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2243 #: ../../enterprise/include/functions_reporting_csv.php:2437 @@ -17240,7 +17090,7 @@ msgstr "OID personnalisé" #: ../../godmode/setup/news.php:205 ../../godmode/setup/setup_visuals.php:1364 #: ../../godmode/reporting/reporting_builder.item_editor.php:2304 #: ../../include/functions_reports.php:835 -#: ../../include/functions_reporting.php:7190 +#: ../../include/functions_reporting.php:7405 #: ../../include/lib/Dashboard/Widgets/post.php:214 msgid "Text" msgstr "Texte" @@ -17335,93 +17185,93 @@ msgstr "Opérations SNMP" msgid "Satellite operations" msgstr "Opérations du satellite" -#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:266 +#: ../../enterprise/godmode/menu.php:60 ../../enterprise/godmode/menu.php:257 msgid "Duplicate config" msgstr "Dupliquer la configuration" #: ../../enterprise/godmode/menu.php:69 -#: ../../godmode/agentes/configurar_agente.php:718 +#: ../../godmode/agentes/configurar_agente.php:731 msgid "Network config manager" msgstr "Gestionnaire de configuration réseau" -#: ../../enterprise/godmode/menu.php:96 +#: ../../enterprise/godmode/menu.php:87 #: ../../enterprise/include/functions_policies.php:3712 msgid "Manage policies" msgstr "Gérer les politiques" -#: ../../enterprise/godmode/menu.php:105 +#: ../../enterprise/godmode/menu.php:96 msgid "Manage agent autoconfiguration" msgstr "Gérer la configuration automatique de l’agent" -#: ../../enterprise/godmode/menu.php:114 +#: ../../enterprise/godmode/menu.php:105 #: ../../enterprise/include/class/AgentRepository.class.php:668 msgid "Software agents repository" msgstr "Dépôt d'agents logicielles" -#: ../../enterprise/godmode/menu.php:147 +#: ../../enterprise/godmode/menu.php:138 #: ../../enterprise/include/class/CSVImportAgents.class.php:114 #: ../../godmode/wizards/HostDevices.class.php:159 msgid "Import CSV" msgstr "Importer CSV" -#: ../../enterprise/godmode/menu.php:151 +#: ../../enterprise/godmode/menu.php:142 #: ../../enterprise/include/class/DeploymentCenter.class.php:613 #: ../../godmode/wizards/HostDevices.class.php:165 #: ../../godmode/wizards/DiscoveryTaskList.class.php:825 msgid "Agent deployment" msgstr "Déploiement d'agents" -#: ../../enterprise/godmode/menu.php:161 +#: ../../enterprise/godmode/menu.php:152 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:406 msgid "Microsoft SQL Server" msgstr "Microsoft SQL Server" -#: ../../enterprise/godmode/menu.php:162 +#: ../../enterprise/godmode/menu.php:153 msgid "Mysql" msgstr "MySQL" -#: ../../enterprise/godmode/menu.php:163 +#: ../../enterprise/godmode/menu.php:154 #: ../../enterprise/godmode/setup/setup.php:108 #: ../../enterprise/include/class/Oracle.app.php:411 msgid "Oracle" msgstr "Oracle" -#: ../../enterprise/godmode/menu.php:164 +#: ../../enterprise/godmode/menu.php:155 #: ../../enterprise/include/class/VMware.app.php:503 msgid "VMware" msgstr "VMware" -#: ../../enterprise/godmode/menu.php:165 +#: ../../enterprise/godmode/menu.php:156 #: ../../enterprise/include/class/SAPView.class.php:621 #: ../../enterprise/include/class/SAPView.class.php:624 #: ../../include/class/CredentialStore.class.php:986 msgid "SAP" msgstr "SAP" -#: ../../enterprise/godmode/menu.php:166 +#: ../../enterprise/godmode/menu.php:157 #: ../../enterprise/include/class/DB2.app.php:404 msgid "DB2" msgstr "DB2" -#: ../../enterprise/godmode/menu.php:167 +#: ../../enterprise/godmode/menu.php:158 #: ../../enterprise/godmode/wizards/Applications.class.php:163 #: ../../enterprise/godmode/wizards/Applications.class.php:171 msgid "Applications" msgstr "Applications" -#: ../../enterprise/godmode/menu.php:178 +#: ../../enterprise/godmode/menu.php:169 msgid "Amazon Web Services" msgstr "Amazon Web Services" -#: ../../enterprise/godmode/menu.php:179 +#: ../../enterprise/godmode/menu.php:170 msgid "Microsoft Azure" msgstr "Microsoft Azure" -#: ../../enterprise/godmode/menu.php:180 +#: ../../enterprise/godmode/menu.php:171 msgid "Google Compute Platform" msgstr "Google Compute Platform" -#: ../../enterprise/godmode/menu.php:181 +#: ../../enterprise/godmode/menu.php:172 #: ../../enterprise/godmode/wizards/Cloud.class.php:186 #: ../../enterprise/godmode/wizards/Cloud.class.php:195 #: ../../enterprise/include/class/Azure.cloud.php:150 @@ -17433,60 +17283,60 @@ msgstr "Google Compute Platform" msgid "Cloud" msgstr "Cloud" -#: ../../enterprise/godmode/menu.php:196 +#: ../../enterprise/godmode/menu.php:187 msgid "New console task" msgstr "Nouvelle tâche de console" -#: ../../enterprise/godmode/menu.php:206 +#: ../../enterprise/godmode/menu.php:197 msgid "Enterprise ACL Setup" msgstr "Configuration ACL Enterprise" -#: ../../enterprise/godmode/menu.php:215 +#: ../../enterprise/godmode/menu.php:206 msgid "Skins" msgstr "Thèmes" -#: ../../enterprise/godmode/menu.php:225 +#: ../../enterprise/godmode/menu.php:216 msgid "Manage database HA" msgstr "Gérer la base de données HA" -#: ../../enterprise/godmode/menu.php:235 +#: ../../enterprise/godmode/menu.php:226 #: ../../enterprise/godmode/servers/manage_export.php:43 #: ../../enterprise/godmode/servers/manage_export_form.php:59 msgid "Export targets" msgstr "Serveurs d'exportation" -#: ../../enterprise/godmode/menu.php:257 +#: ../../enterprise/godmode/menu.php:248 msgid "Log Collector" msgstr "Collecteur de journaux" -#: ../../enterprise/godmode/menu.php:275 +#: ../../enterprise/godmode/menu.php:266 msgid "Password policy" msgstr "Politique de mot de passe" -#: ../../enterprise/godmode/menu.php:283 +#: ../../enterprise/godmode/menu.php:274 #: ../../enterprise/include/functions_setup.php:44 #: ../../enterprise/include/functions_setup.php:108 #: ../../godmode/extensions.php:140 ../../godmode/setup/setup.php:317 msgid "Enterprise" msgstr "Enterprise" -#: ../../enterprise/godmode/menu.php:296 +#: ../../enterprise/godmode/menu.php:287 #: ../../general/first_task/omnishell.php:31 #: ../../general/first_task/omnishell.php:34 msgid "Omnishell" msgstr "Omnishell" -#: ../../enterprise/godmode/menu.php:310 ../../enterprise/tools/ipam/ipam.php:453 +#: ../../enterprise/godmode/menu.php:301 ../../enterprise/tools/ipam/ipam.php:453 #: ../../include/functions_reports.php:692 msgid "IPAM" msgstr "IPAM" -#: ../../enterprise/godmode/menu.php:319 ../../godmode/setup/setup.php:190 +#: ../../enterprise/godmode/menu.php:310 ../../godmode/setup/setup.php:190 #: ../../godmode/setup/setup.php:289 msgid "Module Library" msgstr "Bibliothèque de modules" -#: ../../enterprise/godmode/menu.php:327 +#: ../../enterprise/godmode/menu.php:318 #: ../../enterprise/godmode/alerts/alert_inventory.php:78 #: ../../enterprise/godmode/alerts/alert_inventory.php:80 msgid "Inventory alerts" @@ -17629,13 +17479,13 @@ msgstr " politique" #: ../../godmode/massive/massive_edit_modules.php:411 #: ../../godmode/massive/massive_edit_modules.php:497 #: ../../godmode/reporting/create_container.php:573 -#: ../../godmode/events/event_edit_filter.php:462 -#: ../../godmode/events/event_edit_filter.php:473 +#: ../../godmode/events/event_edit_filter.php:472 +#: ../../godmode/events/event_edit_filter.php:483 #: ../../include/functions_visual_map_editor.php:498 #: ../../include/functions_visual_map_editor.php:1459 #: ../../include/functions_visual_map_editor.php:1553 #: ../../include/ajax/visual_console_builder.ajax.php:1186 -#: ../../include/functions_profile.php:359 ../../include/functions_html.php:2284 +#: ../../include/functions_profile.php:373 ../../include/functions_html.php:2284 #: ../../include/functions_html.php:2285 ../../include/functions_html.php:2286 #: ../../include/functions_html.php:2287 ../../include/functions_html.php:2288 #: ../../include/functions_html.php:2290 ../../include/functions_html.php:2291 @@ -17759,7 +17609,7 @@ msgstr "Opérations massives" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:30 #: ../../godmode/snmpconsole/snmp_alert.php:41 #: ../../include/class/SnmpConsole.class.php:378 -#: ../../include/class/SnmpConsole.class.php:1376 +#: ../../include/class/SnmpConsole.class.php:1377 msgid "Cold start (0)" msgstr "Démarrage zéro (0)" @@ -17767,7 +17617,7 @@ msgstr "Démarrage zéro (0)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:31 #: ../../godmode/snmpconsole/snmp_alert.php:42 #: ../../include/class/SnmpConsole.class.php:379 -#: ../../include/class/SnmpConsole.class.php:1380 +#: ../../include/class/SnmpConsole.class.php:1381 msgid "Warm start (1)" msgstr "Démarrage (1)" @@ -17775,7 +17625,7 @@ msgstr "Démarrage (1)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:32 #: ../../godmode/snmpconsole/snmp_alert.php:43 #: ../../include/class/SnmpConsole.class.php:380 -#: ../../include/class/SnmpConsole.class.php:1384 +#: ../../include/class/SnmpConsole.class.php:1385 msgid "Link down (2)" msgstr "Lien interrompu (2)" @@ -17783,7 +17633,7 @@ msgstr "Lien interrompu (2)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:33 #: ../../godmode/snmpconsole/snmp_alert.php:44 #: ../../include/class/SnmpConsole.class.php:381 -#: ../../include/class/SnmpConsole.class.php:1388 +#: ../../include/class/SnmpConsole.class.php:1389 msgid "Link up (3)" msgstr "Lien actif (3)" @@ -17791,7 +17641,7 @@ msgstr "Lien actif (3)" #: ../../enterprise/godmode/massive/massive_modify_alerts_snmp.php:34 #: ../../godmode/snmpconsole/snmp_alert.php:45 #: ../../include/class/SnmpConsole.class.php:382 -#: ../../include/class/SnmpConsole.class.php:1392 +#: ../../include/class/SnmpConsole.class.php:1393 msgid "Authentication failure (4)" msgstr "Erreur d'authentification (4)" @@ -17800,33 +17650,16 @@ msgstr "Erreur d'authentification (4)" #: ../../enterprise/godmode/setup/setup_acl.php:475 #: ../../enterprise/godmode/setup/setup_acl.php:479 #: ../../enterprise/include/class/Aws.cloud.php:347 -#: ../../enterprise/include/functions_ipam.php:1598 -#: ../../extensions/api_checker.php:176 +#: ../../extensions/api_checker.php:260 #: ../../godmode/groups/configure_group.php:250 -#: ../../godmode/users/configure_user.php:1296 +#: ../../godmode/users/configure_user.php:1355 #: ../../godmode/snmpconsole/snmp_alert.php:46 #: ../../godmode/massive/massive_edit_users.php:280 -#: ../../include/functions_graph.php:3069 ../../include/functions_graph.php:3114 -#: ../../include/functions_graph.php:3155 ../../include/functions_graph.php:3197 -#: ../../include/functions_graph.php:3274 ../../include/functions_graph.php:3418 -#: ../../include/functions_graph.php:3526 ../../include/functions_graph.php:3591 -#: ../../include/functions_graph.php:3758 ../../include/functions_graph.php:3770 -#: ../../include/functions_graph.php:3771 ../../include/functions_graph.php:3774 -#: ../../include/functions_graph.php:3779 ../../include/functions_graph.php:3780 -#: ../../include/functions_graph.php:3783 ../../include/functions_graph.php:4782 +#: ../../include/functions_graph.php:3543 #: ../../include/class/SnmpConsole.class.php:383 -#: ../../include/class/SnmpConsole.class.php:1369 -#: ../../include/class/SnmpConsole.class.php:1396 -#: ../../include/functions_reporting.php:5199 -#: ../../include/functions_reporting.php:5211 -#: ../../include/functions_reporting.php:5212 -#: ../../include/functions_reporting.php:5215 -#: ../../include/functions_reporting.php:5220 -#: ../../include/functions_reporting.php:5221 -#: ../../include/functions_reporting.php:5224 -#: ../../operation/users/user_edit.php:365 -#: ../../operation/snmpconsole/snmp_statistics.php:218 -#: ../../operation/snmpconsole/snmp_statistics.php:275 +#: ../../include/class/SnmpConsole.class.php:1370 +#: ../../include/class/SnmpConsole.class.php:1397 +#: ../../operation/users/user_edit.php:439 #: ../../operation/gis_maps/render_view.php:167 msgid "Other" msgstr "Autre" @@ -17932,7 +17765,7 @@ msgstr "Autre valeur" #: ../../godmode/reporting/visual_console_builder.elements.php:107 #: ../../include/functions_visual_map_editor.php:922 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:246 -#: ../../include/rest-api/models/VisualConsole/Item.php:2023 +#: ../../include/rest-api/models/VisualConsole/Item.php:2024 msgid "Position" msgstr "Position" @@ -17983,7 +17816,7 @@ msgid "Target IP" msgstr "Adresse IP cible" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:780 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:950 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:976 #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:272 #: ../../godmode/modules/manage_network_components_form_network.php:55 #: ../../godmode/agentes/module_manager_editor_network.php:223 @@ -18010,7 +17843,7 @@ msgstr "Utilisateur de l'authentification" #: ../../godmode/modules/manage_network_components_form_network.php:105 #: ../../godmode/agentes/module_manager_editor_network.php:393 #: ../../godmode/massive/massive_edit_modules.php:861 -#: ../../godmode/wizards/HostDevices.class.php:1292 +#: ../../godmode/wizards/HostDevices.class.php:1323 #: ../../include/functions_snmp_browser.php:836 msgid "Auth password" msgstr "Authentification de mot de passe" @@ -18021,8 +17854,8 @@ msgstr "Authentification de mot de passe" #: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:861 #: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1294 #: ../../godmode/wizards/HostDevices.class.php:1325 +#: ../../godmode/wizards/HostDevices.class.php:1356 msgid "The pass length must be eight character minimum." msgstr "La longueur minimale du mot de passe est de huit caractères." @@ -18031,7 +17864,7 @@ msgstr "La longueur minimale du mot de passe est de huit caractères." #: ../../godmode/modules/manage_network_components_form_network.php:123 #: ../../godmode/agentes/module_manager_editor_network.php:413 #: ../../godmode/massive/massive_edit_modules.php:863 -#: ../../godmode/wizards/HostDevices.class.php:1308 +#: ../../godmode/wizards/HostDevices.class.php:1339 #: ../../include/class/CredentialStore.class.php:1220 #: ../../include/class/CredentialStore.class.php:1511 #: ../../include/class/AgentWizard.class.php:951 @@ -18044,7 +17877,7 @@ msgstr "Méthode de confidentialité" #: ../../godmode/modules/manage_network_components_form_network.php:126 #: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1313 +#: ../../godmode/wizards/HostDevices.class.php:1344 #: ../../include/class/CredentialStore.class.php:1229 #: ../../include/class/CredentialStore.class.php:1520 #: ../../include/functions_snmp_browser.php:856 @@ -18056,7 +17889,7 @@ msgstr "DES" #: ../../godmode/modules/manage_network_components_form_network.php:127 #: ../../godmode/agentes/module_manager_editor_network.php:414 #: ../../godmode/massive/massive_edit_modules.php:864 -#: ../../godmode/wizards/HostDevices.class.php:1314 +#: ../../godmode/wizards/HostDevices.class.php:1345 #: ../../include/class/CredentialStore.class.php:1228 #: ../../include/class/CredentialStore.class.php:1518 #: ../../include/functions_snmp_browser.php:857 @@ -18067,7 +17900,7 @@ msgstr "AES" #: ../../godmode/modules/manage_network_components_form_network.php:136 #: ../../godmode/agentes/module_manager_editor_network.php:415 #: ../../godmode/massive/massive_edit_modules.php:865 -#: ../../godmode/wizards/HostDevices.class.php:1323 +#: ../../godmode/wizards/HostDevices.class.php:1354 #: ../../include/class/CredentialStore.class.php:1237 #: ../../include/class/CredentialStore.class.php:1532 #: ../../include/class/AgentWizard.class.php:965 @@ -18080,7 +17913,7 @@ msgstr "Mot de passe privé" #: ../../godmode/modules/manage_network_components_form_network.php:148 #: ../../godmode/agentes/module_manager_editor_network.php:435 #: ../../godmode/massive/massive_edit_modules.php:867 -#: ../../godmode/wizards/HostDevices.class.php:1339 +#: ../../godmode/wizards/HostDevices.class.php:1308 #: ../../include/functions_snmp_browser.php:877 msgid "Auth method" msgstr "Méthode d'authentification" @@ -18090,8 +17923,8 @@ msgstr "Méthode d'authentification" #: ../../godmode/modules/manage_network_components_form_network.php:151 #: ../../godmode/agentes/module_manager_editor_network.php:438 #: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1344 -#: ../../include/class/Diagnostics.class.php:2178 +#: ../../godmode/wizards/HostDevices.class.php:1313 +#: ../../include/class/Diagnostics.class.php:2183 #: ../../include/class/CredentialStore.class.php:1194 #: ../../include/class/CredentialStore.class.php:1484 #: ../../include/functions_snmp_browser.php:880 @@ -18103,7 +17936,7 @@ msgstr "MD5" #: ../../godmode/modules/manage_network_components_form_network.php:152 #: ../../godmode/agentes/module_manager_editor_network.php:439 #: ../../godmode/massive/massive_edit_modules.php:868 -#: ../../godmode/wizards/HostDevices.class.php:1345 +#: ../../godmode/wizards/HostDevices.class.php:1314 #: ../../include/class/CredentialStore.class.php:1195 #: ../../include/class/CredentialStore.class.php:1486 #: ../../include/functions_snmp_browser.php:881 @@ -18115,7 +17948,7 @@ msgstr "SHA" #: ../../godmode/modules/manage_network_components_form_network.php:161 #: ../../godmode/agentes/module_manager_editor_network.php:452 #: ../../godmode/massive/massive_edit_modules.php:869 -#: ../../godmode/wizards/HostDevices.class.php:1354 +#: ../../godmode/wizards/HostDevices.class.php:1292 #: ../../include/class/CredentialStore.class.php:1149 #: ../../include/class/CredentialStore.class.php:1436 #: ../../include/class/AgentWizard.class.php:892 @@ -18128,7 +17961,7 @@ msgstr "Niveau de sécurité" #: ../../godmode/modules/manage_network_components_form_network.php:164 #: ../../godmode/agentes/module_manager_editor_network.php:455 #: ../../godmode/massive/massive_edit_modules.php:872 -#: ../../godmode/wizards/HostDevices.class.php:1359 +#: ../../godmode/wizards/HostDevices.class.php:1297 #: ../../include/functions_snmp_browser.php:893 msgid "Not auth and not privacy method" msgstr "Méthode sans authentification ni confidentialité" @@ -18138,7 +17971,7 @@ msgstr "Méthode sans authentification ni confidentialité" #: ../../godmode/modules/manage_network_components_form_network.php:165 #: ../../godmode/agentes/module_manager_editor_network.php:456 #: ../../godmode/massive/massive_edit_modules.php:873 -#: ../../godmode/wizards/HostDevices.class.php:1360 +#: ../../godmode/wizards/HostDevices.class.php:1298 #: ../../include/functions_snmp_browser.php:894 msgid "Auth and not privacy method" msgstr "Méthode avec authentification et sans confidentialité" @@ -18148,7 +17981,7 @@ msgstr "Méthode avec authentification et sans confidentialité" #: ../../godmode/modules/manage_network_components_form_network.php:166 #: ../../godmode/agentes/module_manager_editor_network.php:457 #: ../../godmode/massive/massive_edit_modules.php:874 -#: ../../godmode/wizards/HostDevices.class.php:1361 +#: ../../godmode/wizards/HostDevices.class.php:1299 #: ../../include/functions_snmp_browser.php:895 msgid "Auth and privacy method" msgstr "Méthode avec authentification et méthode de confidentialité" @@ -18159,7 +17992,7 @@ msgstr "Méthode avec authentification et méthode de confidentialité" #: ../../godmode/agentes/module_manager_editor_common.php:1202 #: ../../godmode/massive/massive_edit_modules.php:892 #: ../../godmode/reporting/reporting_builder.item_editor.php:3882 -#: ../../include/ajax/heatmap.ajax.php:197 ../../include/functions_graph.php:5261 +#: ../../include/ajax/heatmap.ajax.php:197 ../../include/functions_graph.php:5049 #: ../../include/functions_treeview.php:116 ../../operation/heatmap.php:100 #: ../../operation/agentes/status_monitor.php:518 msgid "Not assigned" @@ -18172,6 +18005,7 @@ msgstr "Non assigné" #: ../../godmode/modules/manage_network_components_form_wmi.php:47 #: ../../godmode/agentes/module_manager_editor_wmi.php:103 #: ../../godmode/massive/massive_edit_modules.php:906 +#: ../../include/functions_ui.php:6918 #: ../../include/class/CredentialStore.class.php:997 #: ../../include/class/CredentialStore.class.php:1367 #: ../../include/class/AgentWizard.class.php:676 @@ -18222,8 +18056,8 @@ msgid "Linked" msgstr "Associé" #: ../../enterprise/godmode/massive/massive_edit_policy_modules.php:991 -#: ../../godmode/agentes/module_manager.php:1110 -#: ../../godmode/agentes/module_manager.php:1113 +#: ../../godmode/agentes/module_manager.php:1111 +#: ../../godmode/agentes/module_manager.php:1114 #: ../../godmode/massive/massive_edit_modules.php:1067 #: ../../include/ajax/module.php:1105 ../../include/ajax/module.php:1108 msgid "Unlinked" @@ -18430,7 +18264,7 @@ msgstr "Nom de l’alerte" #: ../../enterprise/operation/agentes/policy_view.php:261 #: ../../godmode/snmpconsole/snmp_alert.php:1275 #: ../../godmode/alerts/alert_view.php:99 -#: ../../include/functions_reporting_html.php:5388 +#: ../../include/functions_reporting_html.php:5407 #: ../../include/ajax/alert_list.ajax.php:295 #: ../../include/ajax/alert_list.ajax.php:320 #: ../../include/functions_treeview.php:455 @@ -18445,7 +18279,7 @@ msgstr "Déclenchée pour la dernière fois" #: ../../godmode/alerts/alert_view.php:108 ../../mobile/operation/alerts.php:327 #: ../../include/functions_ui.php:1256 #: ../../include/class/AgentsAlerts.class.php:940 -#: ../../include/functions_reporting.php:12676 +#: ../../include/functions_reporting.php:12962 msgid "Alert disabled" msgstr "Alerte désactivée" @@ -18631,7 +18465,7 @@ msgstr "Agent pour stocker des données" #: ../../enterprise/include/class/DB2.app.php:545 #: ../../enterprise/include/class/Aws.S3.php:515 #: ../../enterprise/include/class/SAP.app.php:522 -#: ../../enterprise/include/class/Aws.cloud.php:1328 +#: ../../enterprise/include/class/Aws.cloud.php:1327 #: ../../enterprise/include/class/MySQL.app.php:567 #: ../../enterprise/include/class/Oracle.app.php:552 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:546 @@ -18700,7 +18534,7 @@ msgstr "Limite du SLA" #: ../../enterprise/godmode/reporting/reporting_builder.wizard_sla.php:221 #: ../../enterprise/include/functions_reporting_csv.php:1531 #: ../../include/functions_reports.php:699 -#: ../../include/functions_reporting.php:959 +#: ../../include/functions_reporting.php:960 msgid "S.L.A." msgstr "SLA" @@ -18760,17 +18594,17 @@ msgstr "Alerte de service critique S.L.A." #: ../../enterprise/include/functions_reporting.php:6151 #: ../../enterprise/include/functions_reporting.php:6189 #: ../../enterprise/include/functions_services.php:2084 -#: ../../enterprise/include/functions_ux_console.php:473 +#: ../../enterprise/include/functions_ux_console.php:483 #: ../../enterprise/operation/agentes/ux_console_view.php:186 -#: ../../enterprise/operation/agentes/ux_console_view.php:384 -#: ../../enterprise/operation/agentes/wux_console_view.php:424 +#: ../../enterprise/operation/agentes/ux_console_view.php:391 +#: ../../enterprise/operation/agentes/wux_console_view.php:407 #: ../../extensions/module_groups.php:53 #: ../../godmode/massive/massive_operations.php:375 -#: ../../godmode/setup/setup_general.php:789 -#: ../../godmode/setup/setup_general.php:807 +#: ../../godmode/setup/setup_general.php:870 +#: ../../godmode/setup/setup_general.php:888 #: ../../godmode/reporting/reporting_builder.item_editor.php:2688 -#: ../../include/functions_reporting_html.php:663 -#: ../../include/functions_reporting_html.php:858 +#: ../../include/functions_reporting_html.php:664 +#: ../../include/functions_reporting_html.php:859 #: ../../include/functions_reporting_html.php:3474 #: ../../include/functions_reporting_html.php:4780 #: ../../include/functions_db.php:1974 @@ -18784,7 +18618,7 @@ msgstr "Alerte de service critique S.L.A." #: ../../include/class/AgentWizard.class.php:6215 #: ../../include/lib/Dashboard/Widgets/maps_status.php:362 #: ../../operation/agentes/pandora_networkmap.editor.php:633 -#: ../../operation/snmpconsole/snmp_browser.php:645 +#: ../../operation/snmpconsole/snmp_browser.php:643 msgid "OK" msgstr "OK" @@ -18812,8 +18646,8 @@ msgstr "Service invalide" #: ../../enterprise/include/functions_reporting.php:2537 #: ../../enterprise/include/functions_reporting.php:3481 #: ../../enterprise/include/functions_reporting.php:4456 -#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1069 -#: ../../include/functions_reporting.php:9290 +#: ../../include/functions_maps.php:50 ../../include/functions_reporting.php:1070 +#: ../../include/functions_reporting.php:9508 #: ../../operation/agentes/pandora_networkmap.php:789 msgid "Dynamic" msgstr "Dynamique" @@ -18931,6 +18765,8 @@ msgstr "Éditer éléments de service" #: ../../enterprise/godmode/services/services.elements.php:883 #: ../../enterprise/godmode/services/services.elements.php:894 +#: ../../enterprise/godmode/setup/setup.php:557 +#: ../../enterprise/godmode/setup/setup.php:573 #: ../../enterprise/include/functions_visual_map.php:677 #: ../../enterprise/include/functions_HA_cluster.php:535 #: ../../enterprise/include/class/DeploymentCenter.class.php:1611 @@ -18943,7 +18779,7 @@ msgstr "Éditer éléments de service" #: ../../include/functions_ui.php:294 ../../include/class/ConfigPEN.class.php:737 #: ../../include/class/SatelliteAgent.class.php:1067 #: ../../include/class/HelpFeedBack.class.php:360 -#: ../../include/class/Diagnostics.class.php:2090 +#: ../../include/class/Diagnostics.class.php:2095 #: ../../include/class/CredentialStore.class.php:1612 #: ../../include/class/ModuleTemplates.class.php:1418 #: ../../include/class/SatelliteCollection.class.php:630 @@ -19185,7 +19021,7 @@ msgstr "" "de données dans la cible, êtes-vous sûr ?" #: ../../enterprise/godmode/setup/setup_history.php:651 -#: ../../godmode/setup/performance.php:729 +#: ../../godmode/setup/performance.php:712 msgid "Database maintenance status" msgstr "État de maintenance de la base de données" @@ -19248,7 +19084,7 @@ msgid "Update scheduled." msgstr "Mise à jour planifiée." #: ../../enterprise/godmode/setup/setup.php:47 -#: ../../include/functions_config.php:403 +#: ../../include/functions_config.php:408 msgid "Forward SNMP traps to agent (if exist)" msgstr "Transférer les déroutements SNMP vers l'agent (s'il existe)" @@ -19261,7 +19097,7 @@ msgid "Yes without changing status" msgstr "Oui sans changer d’état" #: ../../enterprise/godmode/setup/setup.php:77 -#: ../../include/functions_config.php:407 +#: ../../include/functions_config.php:412 msgid "Use Enterprise ACL System" msgstr "Utiliser le Système ACL Enterprise" @@ -19308,49 +19144,28 @@ msgstr "" "est activée, doit être effectuée uniquement dans la Métaconsole" #: ../../enterprise/godmode/setup/setup.php:198 -#: ../../include/functions_config.php:464 -msgid "Inventory changes blacklist" -msgstr "Liste noire des changements d'inventaire" - -#: ../../enterprise/godmode/setup/setup.php:261 -msgid "Out of black list" -msgstr "En dehors de la liste noire" - -#: ../../enterprise/godmode/setup/setup.php:263 -msgid "In black list" -msgstr "Dans la liste noire" - -#: ../../enterprise/godmode/setup/setup.php:268 -msgid "Push selected modules into blacklist" -msgstr "Ajouter les modules sélectionnés sur la liste noire" - -#: ../../enterprise/godmode/setup/setup.php:270 -msgid "Pop selected modules out of blacklist" -msgstr "Supprimer les modules sélectionnés de la liste noire" - -#: ../../enterprise/godmode/setup/setup.php:282 -#: ../../include/functions_config.php:443 +#: ../../include/functions_config.php:448 msgid "Activate Log Collector" msgstr "Activer le collecteur de journaux" -#: ../../enterprise/godmode/setup/setup.php:305 +#: ../../enterprise/godmode/setup/setup.php:221 msgid "Critical threshold for occupied addresses" msgstr "Seuil critique pour les adresses occupées" -#: ../../enterprise/godmode/setup/setup.php:317 +#: ../../enterprise/godmode/setup/setup.php:233 msgid "Warning threshold for occupied addresses" msgstr "Seuil d’avertissement pour les adresses occupées" -#: ../../enterprise/godmode/setup/setup.php:329 -#: ../../include/functions_config.php:459 +#: ../../enterprise/godmode/setup/setup.php:245 +#: ../../include/functions_config.php:464 msgid "SAP/R3 Plugin Licence" msgstr "Licence de plugin SAP/R3" -#: ../../enterprise/godmode/setup/setup.php:345 +#: ../../enterprise/godmode/setup/setup.php:261 msgid "Enterprise options" msgstr "Options Enterprise" -#: ../../enterprise/godmode/setup/setup.php:517 +#: ../../enterprise/godmode/setup/setup.php:433 #, php-format msgid "" "Password related configuration only applies when local %s authentication is " @@ -19359,10 +19174,33 @@ msgstr "" "La configuration liée au mot de passe s’applique uniquement lorsque " "l’authentification %s locale est sélectionnée." -#: ../../enterprise/godmode/setup/setup.php:526 +#: ../../enterprise/godmode/setup/setup.php:442 msgid "Enterprise password policy" msgstr "Politique de mot de passe Enterprise" +#: ../../enterprise/godmode/setup/setup.php:471 +msgid "Delete session users" +msgstr "Supprimer les sessions des utilisateurs" + +#: ../../enterprise/godmode/setup/setup.php:541 +#: ../../godmode/snmpconsole/snmp_alert.php:1545 +#: ../../godmode/snmpconsole/snmp_alert.php:1560 +msgid "Confirmation" +msgstr "Confirmation" + +#: ../../enterprise/godmode/setup/setup.php:542 +msgid "This action delete all users session, are you sure?" +msgstr "Cette action supprime tous les sessions des utilisateurs, êtes-vous sûr?" + +#: ../../enterprise/godmode/setup/setup.php:558 +msgid "All sessions deleted" +msgstr "Toutes les sessions supprimées" + +#: ../../enterprise/godmode/setup/setup.php:565 +#: ../../enterprise/godmode/setup/setup.php:574 +msgid "Unexpected error" +msgstr "Erreur inattendue" + #: ../../enterprise/godmode/setup/setup_skins.php:38 #: ../../enterprise/godmode/setup/edit_skin.php:44 msgid "Skins configuration" @@ -19441,7 +19279,7 @@ msgid "Port of ElasticSearch server" msgstr "Port du serveur ElasticSearch" #: ../../enterprise/godmode/setup/setup_log_collector.php:44 -#: ../../include/functions_config.php:1550 +#: ../../include/functions_config.php:1531 msgid "Days to purge old information" msgstr "Nombre de jours avant nettoyage d'information ancienne" @@ -19516,8 +19354,9 @@ msgstr "OP" #: ../../enterprise/godmode/setup/setup_auth.php:508 #: ../../enterprise/godmode/setup/setup_auth.php:1303 #: ../../godmode/groups/configure_group.php:122 -#: ../../godmode/groups/group_list.php:380 -#: ../../godmode/users/profile_list.php:323 ../../godmode/menu.php:161 +#: ../../godmode/groups/group_list.php:385 +#: ../../godmode/users/profile_list.php:323 +#: ../../godmode/users/configure_user.php:317 ../../godmode/menu.php:162 msgid "Profiles" msgstr "Profils" @@ -19694,7 +19533,7 @@ msgstr "Filtrer par profil" #: ../../godmode/massive/massive_delete_profiles.php:152 #: ../../godmode/massive/massive_add_profiles.php:202 #: ../../include/functions_profile.php:213 -#: ../../operation/users/user_edit.php:838 +#: ../../operation/users/user_edit.php:912 msgid "Profile name" msgstr "Nom du profil" @@ -19705,9 +19544,9 @@ msgstr "Non valide" #: ../../enterprise/godmode/setup/setup_acl.php:791 #: ../../enterprise/godmode/reporting/visual_console_template.php:305 -#: ../../enterprise/operation/agentes/wux_console_view.php:593 +#: ../../enterprise/operation/agentes/wux_console_view.php:568 #: ../../include/ajax/visual_console_builder.ajax.php:343 -#: ../../include/functions_visual_map.php:2841 +#: ../../include/functions_visual_map.php:2843 msgid "No data to show" msgstr "Aucune donnée à afficher" @@ -19949,7 +19788,7 @@ msgstr "Réseau sortie" #: ../../enterprise/godmode/reporting/aws_view.php:106 #: ../../enterprise/godmode/reporting/aws_view.php:139 -#: ../../enterprise/operation/menu.php:45 +#: ../../enterprise/operation/menu.php:32 msgid "AWS View" msgstr "Vue AWS" @@ -20100,7 +19939,7 @@ msgstr "Gestion du modèle de graphique" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:78 #: ../../godmode/reporting/graph_builder.php:376 #: ../../godmode/reporting/graph_container.php:122 -#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:337 +#: ../../godmode/reporting/graphs.php:133 ../../operation/menu.php:341 #: ../../operation/reporting/graph_viewer.php:271 msgid "Custom graphs" msgstr "Graphiques personnalisés" @@ -20134,7 +19973,7 @@ msgstr "Éditeur de modèle de graphique" #: ../../enterprise/tools/ipam/ipam_network_location_config.php:61 #: ../../godmode/modules/manage_nc_groups.php:95 #: ../../godmode/netflow/nf_edit_form.php:118 -#: ../../godmode/events/event_edit_filter.php:222 +#: ../../godmode/events/event_edit_filter.php:232 msgid "Not updated. Blank name" msgstr "Erreur de mise à jour. Nom en blanc." @@ -20172,7 +20011,7 @@ msgstr "Hauteur" #: ../../enterprise/godmode/reporting/graph_template_editor.php:217 #: ../../godmode/setup/performance.php:542 #: ../../godmode/reporting/create_container.php:346 -#: ../../include/functions.php:2719 ../../include/functions.php:3387 +#: ../../include/functions.php:2745 ../../include/functions.php:3413 #: ../../include/ajax/module.php:207 ../../include/ajax/graph.ajax.php:146 #: ../../operation/gis_maps/render_view.php:156 msgid "1 hour" @@ -20199,7 +20038,7 @@ msgstr "12 heures" #: ../../enterprise/godmode/reporting/graph_template_editor.php:222 #: ../../godmode/reporting/create_container.php:350 -#: ../../include/functions.php:2722 ../../include/ajax/module.php:210 +#: ../../include/functions.php:2748 ../../include/ajax/module.php:210 #: ../../include/ajax/graph.ajax.php:150 msgid "1 day" msgstr "1 jour" @@ -20220,7 +20059,7 @@ msgstr "La semaine dernière" #: ../../enterprise/godmode/reporting/graph_template_editor.php:226 #: ../../godmode/reporting/create_container.php:354 -#: ../../include/functions.php:2724 ../../include/ajax/module.php:212 +#: ../../include/functions.php:2750 ../../include/ajax/module.php:212 #: ../../include/ajax/graph.ajax.php:154 msgid "15 days" msgstr "15 jours" @@ -20240,7 +20079,7 @@ msgid "6 months" msgstr "6 mois" #: ../../enterprise/godmode/reporting/graph_template_editor.php:230 -#: ../../include/functions.php:2728 ../../include/ajax/module.php:216 +#: ../../include/functions.php:2754 ../../include/ajax/module.php:216 msgid "1 year" msgstr "1 an" @@ -20273,7 +20112,7 @@ msgstr "1 an" #: ../../include/functions_visual_map_editor.php:788 #: ../../include/rest-api/models/VisualConsole/Items/BasicChart.php:313 #: ../../include/rest-api/models/VisualConsole/Items/SimpleValue.php:394 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:639 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:629 msgid "Period" msgstr "Période" @@ -20284,14 +20123,14 @@ msgstr "En attente" #: ../../enterprise/godmode/reporting/graph_template_editor.php:246 #: ../../godmode/reporting/graph_builder.main.php:215 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:353 -#: ../../operation/reporting/graph_viewer.php:371 +#: ../../operation/reporting/graph_viewer.php:343 msgid "Stacked area" msgstr "Zone en attente" #: ../../enterprise/godmode/reporting/graph_template_editor.php:248 #: ../../godmode/reporting/graph_builder.main.php:217 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:355 -#: ../../operation/reporting/graph_viewer.php:373 +#: ../../operation/reporting/graph_viewer.php:345 msgid "Stacked line" msgstr "Ligne en attente" @@ -20303,7 +20142,7 @@ msgstr "Top N" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:47 #: ../../enterprise/include/functions_reporting_csv.php:950 #: ../../include/functions_reports.php:789 -#: ../../include/functions_reporting.php:3338 +#: ../../include/functions_reporting.php:3456 msgid "Exception" msgstr "Exception" @@ -20384,7 +20223,7 @@ msgstr "Total" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:270 #: ../../enterprise/godmode/reporting/reporting_builder.global.php:400 -#: ../../include/functions_reporting.php:10172 +#: ../../include/functions_reporting.php:10390 msgid "Rate" msgstr "Taux" @@ -20470,14 +20309,14 @@ msgstr "Quantité (n)" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2493 #: ../../godmode/reporting/reporting_builder.item_editor.php:2519 #: ../../include/lib/Dashboard/Widgets/top_n.php:286 -#: ../../operation/agentes/ver_agente.php:1644 +#: ../../operation/agentes/ver_agente.php:1662 msgid "Display" msgstr "Afficher" #: ../../enterprise/godmode/reporting/reporting_builder.global.php:430 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2598 #: ../../godmode/reporting/reporting_builder.item_editor.php:2681 -#: ../../include/functions_reporting.php:3360 +#: ../../include/functions_reporting.php:3478 msgid "Everything" msgstr "Tout" @@ -20551,13 +20390,13 @@ msgstr "Orientation de la page" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:105 #: ../../include/functions_visual_map_editor.php:843 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:483 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:386 msgid "Vertical" msgstr "Vertical" #: ../../enterprise/godmode/reporting/reporting_builder.advanced.php:114 #: ../../include/functions_visual_map_editor.php:844 -#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:482 +#: ../../include/rest-api/models/VisualConsole/Items/BarsGraph.php:385 msgid "Horizontal" msgstr "Horizontal" @@ -20709,7 +20548,7 @@ msgstr "Afficher le seuil" #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2564 #: ../../godmode/reporting/reporting_builder.item_editor.php:2657 #: ../../godmode/reporting/graph_builder.main.php:245 -#: ../../include/functions.php:4141 ../../include/functions.php:4149 +#: ../../include/functions.php:4167 ../../include/functions.php:4175 msgid "Percentil" msgstr "Centile" @@ -20737,7 +20576,7 @@ msgstr "État de l'événement" #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:710 #: ../../enterprise/godmode/reporting/reporting_builder.template_item.php:2959 #: ../../godmode/reporting/reporting_builder.item_editor.php:3067 -#: ../../operation/agentes/tactical.php:254 +#: ../../operation/agentes/tactical.php:257 msgid "Event graphs" msgstr "Graphiques d'événements" @@ -20826,11 +20665,11 @@ msgstr "Utiliser des données de module non compressées." #: ../../enterprise/godmode/reporting/reporting_builder.wizard.php:911 #: ../../enterprise/include/functions_massive.php:54 -#: ../../godmode/agentes/module_manager.php:265 +#: ../../godmode/agentes/module_manager.php:266 #: ../../godmode/massive/massive_delete_action_alerts.php:175 #: ../../godmode/massive/massive_add_action_alerts.php:163 #: ../../godmode/massive/massive_edit_modules.php:1999 -#: ../../include/functions_visual_map.php:2682 +#: ../../include/functions_visual_map.php:2684 msgid "No modules selected" msgstr "Aucun module sélectionné" @@ -20921,7 +20760,7 @@ msgstr "Affiche seulement des SLA erronés" #: ../../godmode/wizards/DiscoveryTaskList.class.php:1419 #: ../../include/functions_reporting_html.php:4759 #: ../../include/functions_reporting_html.php:5030 -#: ../../include/functions_reporting_html.php:5167 +#: ../../include/functions_reporting_html.php:5186 #: ../../include/functions_netflow.php:1183 #: ../../include/lib/Dashboard/Widgets/tactical.php:299 msgid "Summary" @@ -21097,7 +20936,7 @@ msgstr "Éditeur d’éléments de modèle de graphique" #: ../../enterprise/godmode/reporting/graph_template_item_editor.php:242 #: ../../godmode/reporting/graph_builder.graph_editor.php:215 #: ../../godmode/reporting/graph_builder.graph_editor.php:345 -#: ../../include/functions.php:4001 +#: ../../include/functions.php:4027 msgid "Weight" msgstr "Poids" @@ -21193,13 +21032,13 @@ msgid "Without changes" msgstr "Sans changements" #: ../../enterprise/godmode/reporting/mysql_builder.php:215 -#: ../../operation/users/user_edit.php:195 +#: ../../operation/users/user_edit.php:202 msgid "No changes have been made" msgstr "Aucune modification n’a été apportée" #: ../../enterprise/godmode/reporting/mysql_builder.php:234 #: ../../enterprise/include/functions_reporting_csv.php:1134 -#: ../../include/functions_reporting.php:7213 +#: ../../include/functions_reporting.php:7428 msgid "SQL" msgstr "SQL" @@ -21321,11 +21160,11 @@ msgstr "Cochez-le si vous ne souhaitez pas afficher les éléments sans données #: ../../godmode/reporting/visual_console_builder.elements.php:575 #: ../../include/functions_visual_map_editor.php:397 #: ../../include/functions_visual_map_editor.php:400 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:625 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:615 #: ../../include/functions_reports.php:561 #: ../../include/functions_reports.php:648 #: ../../include/functions_reports.php:654 -#: ../../include/functions_reporting.php:10243 +#: ../../include/functions_reporting.php:10461 msgid "Custom graph" msgstr "Tableau personnalisé" @@ -21352,7 +21191,7 @@ msgstr "" #: ../../enterprise/include/functions_reporting_csv.php:725 #: ../../enterprise/include/functions_reporting_csv.php:2459 #: ../../enterprise/include/functions_reporting_csv.php:2473 -#: ../../extensions/api_checker.php:220 +#: ../../extensions/api_checker.php:304 #: ../../godmode/reporting/reporting_builder.item_editor.php:75 #: ../../godmode/reporting/reporting_builder.item_editor.php:2387 #: ../../godmode/events/event_responses.editor.php:156 @@ -21376,7 +21215,7 @@ msgstr "Regrouper par" #: ../../enterprise/include/functions_reporting_csv.php:1080 #: ../../godmode/reporting/reporting_builder.item_editor.php:2536 #: ../../include/functions_reporting_html.php:4919 -#: ../../include/functions_reporting.php:1539 +#: ../../include/functions_reporting.php:1540 msgid "Avg" msgstr "Moyenne" @@ -21660,7 +21499,7 @@ msgstr "Nom littéral du module forcé" #: ../../godmode/reporting/reporting_builder.item_editor.php:4731 #: ../../godmode/reporting/reporting_builder.item_editor.php:4765 #: ../../godmode/reporting/reporting_builder.item_editor.php:4819 -#: ../../include/functions_ui.php:5871 ../../include/functions_html.php:5436 +#: ../../include/functions_ui.php:5875 ../../include/functions_html.php:5436 msgid "Select an Agent first" msgstr "Sélectionnez d'abord un agent" @@ -21677,12 +21516,12 @@ msgstr "Le nom et la limite SLA ne peuvent pas être vides" #: ../../enterprise/godmode/reporting/visual_console_builder.wizard_services.php:103 #: ../../godmode/modules/module_list.php:60 #: ../../godmode/groups/configure_group.php:153 -#: ../../godmode/groups/group_list.php:844 ../../godmode/setup/os.builder.php:40 +#: ../../godmode/groups/group_list.php:849 ../../godmode/setup/os.builder.php:40 #: ../../godmode/reporting/visual_console_builder.elements.php:293 #: ../../include/functions_visual_map_editor.php:68 #: ../../include/functions_visual_map_editor.php:1395 -#: ../../include/functions_visual_map.php:4274 -#: ../../include/rest-api/models/VisualConsole/Item.php:2147 +#: ../../include/functions_visual_map.php:4225 +#: ../../include/rest-api/models/VisualConsole/Item.php:2148 #: ../../include/lib/Dashboard/Widgets/module_icon.php:424 #: ../../include/lib/Dashboard/Widgets/module_status.php:415 #: ../../operation/visual_console/view.php:343 @@ -21758,7 +21597,7 @@ msgstr "Déplacer vers le bas" #: ../../enterprise/godmode/reporting/reporting_builder.template_list_item.php:409 #: ../../godmode/reporting/reporting_builder.list_items.php:445 -#: ../../include/functions_graph.php:1542 +#: ../../include/functions_graph.php:1514 msgid "No items." msgstr "Aucun élément" @@ -21767,7 +21606,7 @@ msgstr "Aucun élément" #: ../../enterprise/include/class/VMware.app.php:254 #: ../../enterprise/include/class/DB2.app.php:187 #: ../../enterprise/include/class/SAP.app.php:175 -#: ../../enterprise/include/class/Aws.cloud.php:908 +#: ../../enterprise/include/class/Aws.cloud.php:907 #: ../../enterprise/include/class/MySQL.app.php:196 #: ../../enterprise/include/class/Google.cloud.php:423 #: ../../enterprise/include/class/Oracle.app.php:194 @@ -21816,7 +21655,7 @@ msgstr "Créer une nouvelle tâche de console" #: ../../enterprise/include/class/Omnishell.class.php:1351 #: ../../enterprise/include/class/DB2.app.php:354 #: ../../enterprise/include/class/SAP.app.php:401 -#: ../../enterprise/include/class/Aws.cloud.php:1127 +#: ../../enterprise/include/class/Aws.cloud.php:1126 #: ../../enterprise/include/class/MySQL.app.php:371 #: ../../enterprise/include/class/Google.cloud.php:686 #: ../../enterprise/include/class/Oracle.app.php:361 @@ -21833,7 +21672,7 @@ msgstr "Créer une nouvelle tâche de console" #: ../../include/class/CustomNetScan.class.php:314 #: ../../include/class/CustomNetScan.class.php:422 #: ../../include/class/HTML.class.php:419 -#: ../../include/lib/ClusterViewer/ClusterManager.php:755 +#: ../../include/lib/ClusterViewer/ClusterManager.php:752 #: ../../include/lib/ClusterViewer/ClusterWizard.php:349 msgid "Go back" msgstr "Revenir" @@ -21843,7 +21682,7 @@ msgid "Updating console task" msgstr "Tâche de mise à jour de la console" #: ../../enterprise/godmode/wizards/ConsoleTasks.class.php:514 -#: ../../godmode/menu.php:53 +#: ../../godmode/menu.php:54 #: ../../godmode/wizards/DiscoveryTaskList.class.php:105 msgid "Task list" msgstr "Liste de tâches" @@ -21861,7 +21700,7 @@ msgstr "Prochaine Exécution" #: ../../enterprise/include/class/Azure.cloud.php:190 #: ../../enterprise/include/class/DeploymentCenter.class.php:590 #: ../../enterprise/include/class/Aws.cloud.php:158 -#: ../../enterprise/include/class/Google.cloud.php:184 ../../godmode/menu.php:84 +#: ../../enterprise/include/class/Google.cloud.php:184 ../../godmode/menu.php:85 #: ../../godmode/wizards/HostDevices.class.php:190 #: ../../godmode/servers/discovery.php:59 msgid "Discovery" @@ -22086,7 +21925,7 @@ msgid "Preffix" msgstr "Préfixe" #: ../../enterprise/godmode/servers/manage_export.php:141 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1145 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1171 #: ../../enterprise/godmode/servers/manage_export_form.php:103 msgid "Transfer mode" msgstr "Mode de transfert" @@ -22114,46 +21953,46 @@ msgstr "Sous-réseau" msgid "No Data" msgstr "Aucune donnée" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:210 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:212 msgid "Error: The conf file of server is not readble." msgstr "Erreur : fichier de configuration du serveur non accessible en lecture" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:214 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:216 msgid "Error: The conf file of server is not writable." msgstr "Erreur : fichier de configuration du serveur non accessible en écriture" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:312 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:314 msgid "Default value: " msgstr "Valeur par défaut : " -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:340 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:342 #: ../../include/functions_servers.php:556 #: ../../include/functions_servers.php:1305 msgid "Data server" msgstr "Serveur de données" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:346 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:348 #: ../../include/functions_servers.php:569 #: ../../include/functions_servers.php:1308 #: ../../include/class/AgentWizard.class.php:1379 msgid "Network server" msgstr "Serveur de réseau" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:352 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:354 #: ../../include/functions_servers.php:855 #: ../../include/functions_servers.php:1353 msgid "Alert server" msgstr "Serveur d’alertes" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:358 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:360 #: ../../enterprise/include/ajax/ipam.ajax.php:357 #: ../../enterprise/include/class/Azure.cloud.php:781 #: ../../enterprise/include/class/VMware.app.php:593 #: ../../enterprise/include/class/DB2.app.php:448 #: ../../enterprise/include/class/Aws.S3.php:412 #: ../../enterprise/include/class/SAP.app.php:481 -#: ../../enterprise/include/class/Aws.cloud.php:523 -#: ../../enterprise/include/class/Aws.cloud.php:1213 +#: ../../enterprise/include/class/Aws.cloud.php:522 +#: ../../enterprise/include/class/Aws.cloud.php:1212 #: ../../enterprise/include/class/MySQL.app.php:453 #: ../../enterprise/include/class/Google.cloud.php:769 #: ../../enterprise/include/class/Oracle.app.php:455 @@ -22167,193 +22006,214 @@ msgstr "Serveur d’alertes" msgid "Discovery server" msgstr "Serveur Discovery" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:364 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:366 +#: ../../include/functions_servers.php:621 +#: ../../include/lib/ClusterViewer/ClusterWizard.php:840 +msgid "Prediction server" +msgstr "Serveur de prédiction" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:372 #: ../../include/functions_servers.php:608 #: ../../include/functions_servers.php:1320 #: ../../include/class/AgentWizard.class.php:1360 msgid "Plugin server" msgstr "Serveur de plugin" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:370 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:418 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:378 +#: ../../include/functions_menu.php:526 ../../operation/menu.php:131 +msgid "SNMP console" +msgstr "Console SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:384 #: ../../include/functions_servers.php:1311 msgid "SNMP server" msgstr "Serveur SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:376 -#: ../../include/functions_servers.php:621 -#: ../../include/lib/ClusterViewer/ClusterWizard.php:840 -msgid "Prediction server" -msgstr "Serveur de prédiction" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:382 -#: ../../include/functions_servers.php:634 -#: ../../include/functions_servers.php:1326 -#: ../../include/class/AgentWizard.class.php:1370 -msgid "WMI server" -msgstr "Serveur WMI" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:388 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:390 #: ../../include/functions_servers.php:673 #: ../../include/functions_servers.php:1329 msgid "Web server" msgstr "Serveur web" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:394 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:396 #: ../../include/functions_servers.php:660 #: ../../include/functions_servers.php:1335 msgid "Inventory server" msgstr "Serveur d'inventaire" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:400 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:402 #: ../../enterprise/godmode/servers/manage_export_form.php:79 #: ../../include/functions_servers.php:647 #: ../../include/functions_servers.php:1332 msgid "Export server" msgstr "Exporter le serveur" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:406 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:408 #: ../../include/functions_servers.php:686 #: ../../include/functions_servers.php:1338 msgid "Event server" msgstr "Serveur d'événements" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:412 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:414 msgid "ICMP server" msgstr "Serveur ICMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:424 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:420 #: ../../include/functions_servers.php:1347 msgid "WUX server" msgstr "Serveur WUX" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:430 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:426 #: ../../include/functions_servers.php:816 #: ../../include/functions_servers.php:1356 msgid "NCM server" msgstr "serveur NCM" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:432 +#: ../../include/functions_servers.php:634 +#: ../../include/functions_servers.php:1326 +#: ../../include/class/AgentWizard.class.php:1370 +msgid "WMI server" +msgstr "Serveur WMI" + #: ../../enterprise/godmode/servers/server_disk_conf_editor.php:438 -msgid "Network timeout" -msgstr "Délai d’expiration du réseau" +msgid "Syslog server" +msgstr "Serveur Syslog" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:445 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:770 -msgid "Plugin timeout" -msgstr "Délai d’expiration du plug-in" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:452 -msgid "SNMP console threads" -msgstr "Fils de console SNMP" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:458 -msgid "Network threads" -msgstr "Fils réseau" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:464 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:763 -msgid "Plugin threads" -msgstr "Fils plugin" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:470 -msgid "Recon threads" -msgstr "Fils de reconnaissance" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:476 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:446 msgid "Dataserver threads" msgstr "Fils du serveur de données" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:482 -msgid "Web threads" -msgstr "Fils web" +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:452 +msgid "Network timeout" +msgstr "Délai d’expiration du réseau" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:488 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:929 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:459 +msgid "Network threads" +msgstr "Fils réseau" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:465 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:796 +msgid "Plugin timeout" +msgstr "Délai d’expiration du plug-in" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:472 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:789 +msgid "Plugin threads" +msgstr "Fils plugin" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:478 +msgid "SNMP console threads" +msgstr "Fils de console SNMP" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:484 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:955 msgid "SNMP threads" msgstr "Fils SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:494 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:490 +msgid "Web threads" +msgstr "Fils web" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:496 +msgid "Inventory threads" +msgstr "Threads d’inventaire" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:502 msgid "ICMP threads" msgstr "Fils ICMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:502 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:508 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1225 +msgid "WMI threads" +msgstr "Fils WMI" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:514 +msgid "Syslog threads" +msgstr "Threads Syslog" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:520 +msgid "Recon threads" +msgstr "Fils de reconnaissance" + +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:528 msgid "Autocreate group" msgstr "Création automatique d’un groupe" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:508 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:534 msgid "Autocreate group force" msgstr "Forcer la création automatique d’un groupe" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:514 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:540 msgid "Autocreate" msgstr "Création automatique" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:526 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:552 msgid "Agent configuration files directory" msgstr "Répertoire des fichiers de configuration de l’agent" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:527 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:553 msgid "Directory where agent configuration files are stored" msgstr "" "Répertoire dans lequel les fichiers de configuration de l’agent sont stockés" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:540 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:566 msgid "Agent interval" msgstr "Intervalle de l’agent" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:546 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:572 msgid "Agent threads" msgstr "Fils d’agent" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:547 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:573 msgid "Number of threads used for sending agent XML data files" msgstr "" "Nombre de fils utilisés pour l’envoi de fichiers de données XML de l’agent" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:553 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:579 msgid "ICMP subnets blacklist" msgstr "Liste noire des sous-réseaux ICMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:554 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:561 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:568 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:580 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:587 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:594 msgid "Separated by a comma. Example: 192.168.0.0/24,8.8.8.8/30" msgstr "Séparé par une virgule. Exemple : 192.168.0.0/24,8.8.8.8/30" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:560 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:586 msgid "SNMP subnets blacklist" msgstr "Liste noire des sous-réseaux SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:567 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:593 msgid "WMI subnets blacklist" msgstr "Liste noire des sous-réseaux WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:574 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:600 msgid "Path to braa binary" msgstr "Chemin vers le binaire braa" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:580 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:606 msgid "Credential password" msgstr "Mot de passe des informations d’identification" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:581 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 msgid "Password used to encrypt credential boxes" msgstr "" "Mot de passe utilisé pour chiffrer les zones d’informations d’identification" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:587 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:613 msgid "Remote configuration check interval" msgstr "Intervalle de vérification de la configuration à distance" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:593 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:619 msgid "Daemon" msgstr "Démon" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:594 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:620 msgid "Run in background if set to 1" msgstr "Exécuter en arrière-plan s’il est défini sur 1" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:601 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:627 msgid "" "Set to 1 to move dynamic auto-discovered modules (SNMP, WMI...) to separate " "files so that they don't interfere with remote agent configuration" @@ -22362,27 +22222,27 @@ msgstr "" "automatiquement (SNMP, WMI...) pour séparer les fichiers afin qu’ils " "n’interfèrent pas avec la configuration de l’agent distant" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:607 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:633 msgid "Exec interval" msgstr "Intervalle d’exécution" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:608 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:634 msgid "Time between exec checks" msgstr "Temps entre les vérifications d’exécution" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:614 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:640 msgid "Exec threads" msgstr "Fils d’exécution" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:615 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:641 msgid "Number of threads used for exec modules" msgstr "Nombre de fils utilisés pour les modules d’exécution" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:621 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:647 msgid "Path to fping binary" msgstr "Chemin d’accès au binaire fping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:622 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 msgid "" "Used by the Enterprise ICMP Server. Default path is /usr/sbin/fping for " "installation in Centos, if you are installing in another distro, install fping " @@ -22393,15 +22253,15 @@ msgstr "" "une autre distribution, installez fping dans /usr/bin/fping et mettez à jour " "ce champ avec le nouveau chemin d’accès" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:628 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:654 msgid "Path to Pandora Fast SNMP binary" msgstr "Chemin d’accès au binaire Pandora Fast SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:634 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:660 msgid "Forced add" msgstr "Forcer ajouter" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:635 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:661 msgid "" "If set to 1, manually added hosts (via add_host or host_file) will always be " "created, whether they respond to ping or not" @@ -22409,216 +22269,216 @@ msgstr "" "S’ils sont définis sur 1, les hôtes ajoutés manuellement (via add_host ou " "host_file) seront toujours créés, qu’ils répondent ou non au ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:641 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:667 msgid "General GIS exec" msgstr "Exécution général du SIG" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:642 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 msgid "" "Path to general GIS coordinates generator. It should be an executable file" msgstr "" "Chemin d’accès au générateur de coordonnées SIG générales. Il doit s’agir d’un " "fichier exécutable" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:648 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:674 msgid "Group where agents will be placed (must exist in the Pandora FMS console)" msgstr "" "Groupe où les agents seront placés (il doit exister dans la console Pandora " "FMS)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:654 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:680 msgid "Host file" msgstr "Fichier hôte" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:655 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:681 msgid "" "File containing hosts to be scanned. The address may be followed by a hostname" msgstr "" "Fichier contenant des hôtes à analyser. L’adresse peut être suivie d’un nom " "d’hôte" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:661 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:687 msgid "Latency block" msgstr "Bloc de latence" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:662 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:688 msgid "Number of hosts processed in a single call to nmap (latency)" msgstr "Nombre d’hôtes traités en un seul appel à nmap (latence)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:668 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:694 msgid "Latency interval" msgstr "Intervalle de latence" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:669 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:695 msgid "Time between latency checks" msgstr "Temps entre les contrôles de latence" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:675 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:701 msgid "Latency packets" msgstr "Paquets de latence" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:676 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:702 msgid "Number of ICMP packets to send per latency request" msgstr "Nombre de paquets ICMP à envoyer par demande de latence" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:682 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:708 msgid "Latency retries" msgstr "Nouvelles tentatives de latence" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:683 -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:736 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:709 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:762 msgid "Number of retries for latency modules" msgstr "Nombre de nouvelles tentatives pour les modules de latence" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:689 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:715 msgid "Latency threads" msgstr "Fils de latence" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:690 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:716 msgid "Number of threads used for latency checks." msgstr "Nombre de fils utilisés pour les contrôles de latence." -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:696 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 msgid "Latency timeout" msgstr "Délai d’expiration de la latence" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:697 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:723 msgid "Timeout for latency checks in seconds." msgstr "Délai d’expiration pour les vérifications de latence en secondes." -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:703 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:729 msgid "Log file path" msgstr "Chemin d’accès au fichier journal" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:709 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:735 msgid "Path to nmap binary" msgstr "Chemin d’accès au binaire nmap" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:714 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:740 msgid "Ping block" msgstr "Bloc ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:715 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:741 msgid "Number of hosts processed in a single call to nmap (ping)" msgstr "Nombre d’hôtes traités en un seul appel à nmap (ping)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:721 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:747 msgid "Ping interval" msgstr "Intervalle ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:722 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:748 msgid "Time between ping checks" msgstr "Temps entre les vérifications ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:728 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:754 msgid "Ping packets" msgstr "Paquets ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:729 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:755 msgid "Number of ICMP packets to send per ping request" msgstr "Nombre de paquets ICMP à envoyer par requête ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:735 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:761 msgid "Ping retries" msgstr "Tentatives de ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:742 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:768 msgid "Ping threads" msgstr "Fils ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:743 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:769 msgid "Number of threads used for ping checks" msgstr "Nombre de fils utilisés pour les contrôles ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:749 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:775 msgid "Ping timeout" msgstr "Délai d’expiration du ping" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:750 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:776 msgid "Timeout for ping checks in seconds" msgstr "Délai d’expiration pour les vérifications ping en secondes" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:756 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:782 msgid "Plugin interval" msgstr "Intervalle du plugin" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:757 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:783 msgid "Time between plug-in checks" msgstr "Temps entre les vérifications du plugin" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:764 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 msgid "Number of threads used for plug-in checks" msgstr "Nombre de fils utilisés pour les vérifications de plugin" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:771 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 msgid "Timeout for plug-in checks in seconds" msgstr "Délai d’expiration pour les vérifications de plugin en secondes" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:777 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 msgid "Proxy traps from" msgstr "Déroutements proxy de" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:783 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:809 msgid "Proxy traps to" msgstr "Déroutements proxy vers" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:784 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:810 msgid "Enable the SNMP trap proxy to the specified address" msgstr "Activer le proxy de déroutement SNMP à l’adresse spécifiée" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:790 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:816 msgid "Proxy tentacle to" msgstr "Tentacule proxy vers" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:791 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:817 msgid "Enable the Tentacle proxy to the specified address:port" msgstr "Activer le proxy Tentacle à l’adresse:port spécifiée" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:797 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:823 msgid "Proxy tentacle from" msgstr "Tentacule proxy de" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:803 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:829 msgid "Recon community" msgstr "Communauté de reconnaissance" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:804 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:830 msgid "Comma separated list of SNMP communities to try for SNMP auto-discovery" msgstr "" "Liste séparée par des virgules des communautés SNMP à essayer pour la " "découverte automatique SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:810 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:836 msgid "Recon enabled" msgstr "Reconnaissance activée" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:811 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:837 msgid "Enable (1) or disable (0) host auto-discovery" msgstr "Activer (1) ou désactiver (0) la découverte automatique de l’hôte" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:817 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:843 msgid "Recon interval" msgstr "Intervalle de reconnaissance" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:818 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:844 msgid "Time between network scans in seconds" msgstr "Temps entre les analyses réseau en secondes" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:824 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:850 msgid "Recon mode" msgstr "Mode reconnaissance" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:825 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:851 msgid "Comma separated list of auto-discovery modules (snmp,icmp,wmi)" msgstr "" "Liste séparée par des virgules des modules de découverte automatique (snmp," "icmp,wmi)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:831 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:857 msgid "Recon task" msgstr "Tâche Recon" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:832 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:858 msgid "" "Comma separated list of networks (in slash notation) to scan for host auto-" "discovery (example: 192.168.0.0/24,192.168.1.0/24)" @@ -22627,11 +22487,11 @@ msgstr "" "analyser pour la découverte automatique de l’hôte (exemple : " "192.168.0.0/24,192.168.1.0/24)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:838 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:864 msgid "Recon timing template" msgstr "Modèle de synchronisation de reconnaissance" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:839 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:865 msgid "" "Like nmap_timing_template, but applies to Satellite Server and Recon Server " "network scans. 3 by default" @@ -22639,69 +22499,69 @@ msgstr "" "Comme nmap_timing_template, mais s’applique aux analyses réseau des serveurs " "Satellite et Recon. 3 par défaut" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:845 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:871 #: ../../enterprise/include/class/DeploymentCenter.class.php:811 msgid "Server IP" msgstr "IP du serveur" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:846 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:872 msgid "Tentacle server address. Put here your Pandora FMS data server address" msgstr "" "Adresse du serveur Tentacle. Mettez ici votre adresse de serveur de données " "Pandora FMS" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:853 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:879 msgid "Name of the Satellite server (the hostname is used by default)" msgstr "Nom du serveur Satellite (le nom d’hôte est utilisé par défaut)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:859 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:885 msgid "Server path" msgstr "Chemin d’accès au serveur" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:860 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:886 msgid "" "Path where XML files are copied (only used if transfer mode is set to local)" msgstr "" "Chemin où les fichiers XML sont copiés (utilisé uniquement si le mode de " "transfert est défini sur local)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:866 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:892 msgid "Server port" msgstr "Port du serveur" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:867 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:893 msgid "Tentacle server port" msgstr "Port du serveur Tentacle" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:873 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:899 msgid "SSH interval" msgstr "Intervalle SSH" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:874 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:900 msgid "Time between SSH checks" msgstr "Temps entre les contrôles SSH" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:880 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:906 msgid "SSH threads" msgstr "Fils SSH" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:881 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:907 msgid "Number of threads used for SSH modules" msgstr "Nombre de fils utilisés pour les modules SSH" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:887 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:913 msgid "SSH timeout" msgstr "Délai d’expiration SSH" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:888 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:914 msgid "Timeout for SSH checks in seconds" msgstr "Délai d’expiration des vérifications SSH en secondes" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:894 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:920 msgid "Keepalive" msgstr "Keepalive" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:895 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:921 msgid "" "Interval of the main server loop in seconds. Status updates are sent to " "Pandora every keepalive seconds" @@ -22709,62 +22569,62 @@ msgstr "" "Intervalle de la boucle du serveur principal en secondes. Les mises à jour de " "statut sont envoyées à Pandora toutes les secondes" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:901 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:927 msgid "SNMP blacklist" msgstr "Liste noire SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:902 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:928 msgid "SNMP module blacklist" msgstr "Liste noire des modules SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:908 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:934 msgid "SNMP block" msgstr "Bloc SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:909 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:935 msgid "Number of hosts processed in a single call to braa (SNMPv1)" msgstr "Nombre d’hôtes traités en un seul appel à braa (SNMPv1)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:915 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:941 msgid "SNMP interval" msgstr "Intervalle SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:916 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:942 msgid "Time between SNMP checks (SNMPv1)" msgstr "Temps entre les vérifications SNMP (SNMPv1)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:922 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:948 msgid "SNMP retries" msgstr "Tentatives SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:923 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:949 msgid "Number of retries for SNMP modules (SNMPv1)" msgstr "Nombre de nouvelles tentatives pour les modules SNMP (SNMPv1)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:930 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:956 msgid "Number of threads used for SNMP checks (SNMPv1)" msgstr "Nombre de fils utilisés pour les vérifications SNMP (SNMPv1)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:936 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:962 msgid "SNMP timeout" msgstr "Délai d’expiration SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:937 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:963 msgid "Timeout for SNMP checks in seconds (SNMPv1)" msgstr "Délai d’expiration des vérifications SNMP en secondes (SNMPv1)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:943 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:969 msgid "SNMP verify" msgstr "Vérification SNMP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:944 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:970 msgid "" "Enable (1) or disable (0) the verification of SNMPv1 modules that break braa" msgstr "" "Activer (1) ou désactiver (0) la vérification des modules SNMPv1 qui cassent " "braa" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:951 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:977 msgid "" "Default SNMP version to use (1 or 2c, SNMPv3 modules explicitly state their " "version). WARNING: some modules could stop working if you change this setting" @@ -22773,102 +22633,102 @@ msgstr "" "explicitement leur version). AVERTISSEMENT : certains modules peuvent cesser " "de fonctionner si vous modifiez ce paramètre" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:957 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:983 msgid "SNMPv2c block" msgstr "Bloc SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:958 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:984 msgid "Number of hosts processed in a single call to braa (SNMPv2c)" msgstr "Nombre d’hôtes traités en un seul appel à braa (SNMPv2c)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:964 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:990 msgid "SNMPv2c interval" msgstr "Intervalle SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:965 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:991 msgid "Time between SNMP checks (SNMPv2c)" msgstr "Temps entre les vérifications SNMP (SNMPv2c)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:971 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:997 msgid "SNMPv2c retries" msgstr "Tentatives SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:972 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:998 msgid "Number of retries for SNMP modules (SNMPv2c)" msgstr "Nombre de nouvelles tentatives pour les modules SNMP (SNMPv2c)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:978 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1004 msgid "SNMPv2c threads" msgstr "Fils SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:979 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1005 msgid "Number of threads used for SNMP checks (SNMPv2c)" msgstr "Nombre de fils utilisés pour les vérifications SNMP (SNMPv2c)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:985 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1011 msgid "SNMPv2c timeout" msgstr "Délai d’expiration SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:986 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1012 msgid "Timeout for snmp checks in seconds (SNMPv2c)" msgstr "Délai d’expiration des vérifications snmp en secondes (SNMPv2c)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:992 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1018 msgid "SNMPv2c verify" msgstr "Vérification SNMPv2c" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:993 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1019 msgid "" "Enable (1) or disable (0) the verification of SNMPv2 modules that break braa" msgstr "" "Activer (1) ou désactiver (0) la vérification des modules SNMPv2 qui cassent " "braa" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:999 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1025 msgid "SNMPv3 block" msgstr "Bloc SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1000 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1026 msgid "Number of hosts processed in a single call to braa (SNMPv3)" msgstr "Nombre d’hôtes traités en un seul appel à braa (SNMPv3)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1006 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1032 msgid "SNMPv3 interval" msgstr "Intervalle SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1007 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1033 msgid "Time between SNMP checks (SNMPv3)" msgstr "Temps entre les vérifications SNMP (SNMPv3)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1013 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1039 msgid "SNMPv3 retries" msgstr "Tentatives SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1014 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1040 msgid "Number of retries for SNMP modules (SNMPv3)" msgstr "Nombre de nouvelles tentatives pour les modules SNMP (SNMPv3)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1020 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1046 msgid "SNMPv3 threads" msgstr "Fils SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1021 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1047 msgid "Number of threads used for SNMP checks (SNMPv3)" msgstr "Nombre de fils utilisés pour les vérifications SNMP (SNMPv3)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1027 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1053 msgid "SNMPv3 timeout" msgstr "Délai d’expiration SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1028 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1054 msgid "Timeout for SNMP checks in seconds (SNMPv3)" msgstr "Délai d’expiration des vérifications SNMP en secondes (SNMPv3)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1034 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1060 msgid "SNMPv3 verify" msgstr "Vérification SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1035 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1061 msgid "" "Enable (1) or disable (0) the verification of SNMPv3 modules that break " "pandorafsnmp" @@ -22876,203 +22736,199 @@ msgstr "" "Activer (1) ou désactiver (0) la vérification des modules SNMPv3 qui cassent " "pandorafsnmp" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1041 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1067 msgid "SNMPv3 security level" msgstr "Niveau de sécurité SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1042 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1068 msgid "Security level used for SNMPv3 messages (noauth, authnopriv or authpriv)" msgstr "" "Niveau de sécurité utilisé pour les messages SNMPv3 (noauth, authnopriv ou " "authpriv)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1048 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1074 msgid "SNMPv3 security name" msgstr "Nom de sécurité SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1049 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1075 msgid "Security name used for SNMPv3 messages" msgstr "Nom de sécurité utilisé pour les messages SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1055 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1081 msgid "SNMPv3 authentication protocol" msgstr "Protocole d’authentification SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1056 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1082 msgid "Authentication protocol (md5 or sha) for authenticated SNMPv3 requests" msgstr "" "Protocole d’authentification (md5 ou sha) pour les requêtes SNMPv3 " "authentifiées" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1062 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1088 msgid "SNMPv3 authentication password" msgstr "Mot de passe d’authentification SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1063 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1089 msgid "Authentication password for authenticated SNMPv3 request" msgstr "Mot de passe d’authentification pour la demande SNMPv3 authentifiée" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1069 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1095 msgid "SNMPv3 privacy protocol" msgstr "Protocole de confidentialité SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1070 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1096 msgid "Privacy protocol (des or aes) for encrypted SNMPv3 requests" msgstr "" "Protocole de confidentialité (des ou aes) pour les requêtes SNMPv3 chiffrées" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1076 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1102 msgid "SNMPv3 privacy password" msgstr "Mot de passe de confidentialité SNMPv3" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1077 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1103 msgid "Privacy password for encrypted SNMPv3 messages" msgstr "Mot de passe de confidentialité pour les messages SNMPv3 chiffrés" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1083 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1109 msgid "Startup delay" msgstr "Délai de démarrage" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1084 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1110 msgid "" "Wait startup_delay seconds before sending XML data files for the first time" msgstr "" "Attendez startup_delay secondes avant d’envoyer des fichiers de données XML " "pour la première fois" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1090 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1116 msgid "TCP interval" msgstr "Intervalle TCP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1091 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1117 msgid "Time between TCP checks" msgstr "Temps entre les vérifications TCP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1097 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1123 msgid "TCP threads" msgstr "Fils TCP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1098 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1124 msgid "Threads dedicated to TCP checks" msgstr "Fils dédiés aux contrôles TCP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1104 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1130 msgid "TCP timeout" msgstr "Délai d’expiration TCP" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1105 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1131 msgid "Timeout for TCP checks in seconds" msgstr "Délai d’expiration des vérifications TCP en secondes" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1111 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1137 msgid "Temporal" msgstr "Temporel" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1112 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1138 msgid "Temporal directory where XML files are created" msgstr "Répertoire temporel où les fichiers XML sont créés" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1118 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1144 msgid "Temporal minimum size" msgstr "Taille minimale temporelle" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1119 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1145 msgid "" "Minimum available bytes in the temporal directory to enable the XML buffer" msgstr "" "Nombre minimal d’octets disponibles dans le répertoire temporel pour activer " "la mémoire tampon XML" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1125 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1151 msgid "Full path to tentacle client" msgstr "Chemin complet vers le client Tentacle" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1131 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1157 msgid "Timeout for the timeout command" msgstr "Délai d’expiration de la commande de délai d’expiration" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1132 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1158 msgid "In seconds" msgstr "En secondes" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1138 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1164 msgid "Server opts" msgstr "Options du serveur" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1139 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1165 msgid "Parameters that are passed to Tentacle" msgstr "Paramètres transmis à Tentacle" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1146 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1172 msgid "tentacle or local" msgstr "tentacle ou local" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1152 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1178 msgid "Verbosity" msgstr "Verbosité" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1153 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1179 msgid "Verbosity level from 0 (less verbose) to 10 (more verbose)" msgstr "Niveau de verbosité de 0 (moins verbeux) à 10 (plus verbeux)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1159 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1185 msgid "VLAN cache enabled" msgstr "Cache VLAN activé" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1160 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1186 msgid "Enable (1) or disable (0) the VLAN cache for host auto-discovery" msgstr "" "Activer (1) ou désactiver (0) le cache VLAN pour la découverte automatique de " "l’hôte" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1166 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1192 msgid "Enable XML buffer" msgstr "Activer la mémoire tampon XML" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1172 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1198 msgid "WMI authentication" msgstr "Authentification WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1173 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1199 msgid "" "Comma separated list of username%password pairs to try for WMI authentication" msgstr "" "Liste séparée par des virgules des paires nom d’utilisateur%mot de passe à " "essayer pour l’authentification WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1179 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1205 msgid "Full path to WMI client binary" msgstr "Chemin complet au binaire client WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1185 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1211 msgid "WMI interval" msgstr "Intervalle WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1186 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1212 msgid "Time in seconds between WMI checks" msgstr "Temps en secondes entre les vérifications WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1192 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1218 msgid "WMI NTLMv2" msgstr "WMI NTLMv2" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1193 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1219 msgid "Enable to use NTLMv2 authentication for WMI" msgstr "Activer l’utilisation de l’authentification NTLMv2 pour WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1199 -msgid "WMI threads" -msgstr "Fils WMI" - -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1200 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1226 msgid "Threads dedicated to WMI polling" msgstr "Fils dédiés à l’interrogation WMI" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1206 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1232 msgid "IPAM task" msgstr "Tâche IPAM" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1207 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1233 msgid "" "Comma separated list of networks (in slash notation) to scan for IPAM. Must be " "preceded by the ID of the IPAM task in Pandora FMS (E.g. 1,192.168.0.0/24)" @@ -23081,11 +22937,11 @@ msgstr "" "rechercher IPAM. Doit être précédé de l’ID de la tâche IPAM dans Pandora FMS " "(par exemple 1,192.168.0.0/24)" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1213 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1239 msgid "Timeout bin" msgstr "Temporisation du binaire" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1214 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1240 msgid "" "If defined, the timeout program (usually /usr/bin/timeout) will be used to " "call the Tentacle client" @@ -23093,19 +22949,19 @@ msgstr "" "S’il est défini, le programme de délai d’attente (généralement /usr/bin/" "timeout) sera utilisé pour appeler le client Tentacle" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1220 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1246 msgid "IPAM interval" msgstr "Intervalle IPAM" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1221 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1247 msgid "Time between IPAM scans in seconds" msgstr "Temps entre les analyses IPAM en secondes" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1229 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1255 msgid "Secondary mode" msgstr "Mode secondaire" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1230 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1256 msgid "" "If secondary_mode is set to on_error, data files are copied to the secondary " "server only if the primary server fails. If set to always, data files are " @@ -23116,31 +22972,31 @@ msgstr "" "principal. S’ils sont définis sur toujours, les fichiers de données sont " "toujours copiés sur le serveur secondaire" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1236 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1262 msgid "Secondary server IP" msgstr "IP du serveur secondaire" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1242 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1268 msgid "Secondary server path" msgstr "Chemin d’accès au serveur secondaire" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1248 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1274 msgid "Secondary server port" msgstr "Port du serveur secondaire" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1254 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1280 msgid "Secondary transfer mode" msgstr "Mode de transfert secondaire" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1260 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1286 msgid "Secondary server opts" msgstr "Options du serveur secondaire" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1350 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1376 msgid "Delete remote conf server files" msgstr "Supprimer les fichiers du serveur de configuration distant" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1351 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1377 msgid "" "Delete this conf file implies that server will send back local config to " "console" @@ -23148,23 +23004,23 @@ msgstr "" "Supprimer ce fichier de configuration implique que le serveur renverra la " "configuration locale à la console" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1387 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1413 msgid "General server configuration" msgstr "Configuration générale du serveur" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1394 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1420 msgid "Secondary server configuration" msgstr "Configuration du serveur secondaire" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1400 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1426 msgid "Server features" msgstr "Fonctionnalités du serveur" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1407 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1433 msgid "Optimization settings" msgstr "Paramètres d’optimisation" -#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1414 +#: ../../enterprise/godmode/servers/server_disk_conf_editor.php:1440 msgid "Other server settings" msgstr "Autres paramètres du serveur" @@ -23180,7 +23036,7 @@ msgstr "Répertoire cible" #: ../../enterprise/include/class/Azure.cloud.php:823 #: ../../enterprise/include/class/VMware.app.php:643 #: ../../enterprise/include/class/Aws.S3.php:584 -#: ../../enterprise/include/class/Aws.cloud.php:567 +#: ../../enterprise/include/class/Aws.cloud.php:566 msgid "Extra options" msgstr "Options supplémentaires" @@ -23328,7 +23184,7 @@ msgid "Scheduled report had an attempt to send an email with some attachments." msgstr "Le rapport programmé a essayé d'envoyer un email avec des fichier joints" #: ../../enterprise/include/functions_cron.php:1776 -#: ../../include/functions_reporting.php:15389 +#: ../../include/functions_reporting.php:15644 msgid "Greetings" msgstr "Bonjour" @@ -23339,22 +23195,22 @@ msgstr "Ajouté à cet email il y a un fichier CSV des journaux" #: ../../enterprise/include/functions_cron.php:1780 #: ../../mobile/include/functions_web.php:84 #: ../../mobile/include/ui.class.php:327 -#: ../../include/functions_reporting.php:15395 +#: ../../include/functions_reporting.php:15650 msgid "Generated at" msgstr "Généré le" #: ../../enterprise/include/functions_cron.php:1782 -#: ../../include/functions_reporting.php:15397 +#: ../../include/functions_reporting.php:15652 msgid "Thanks for your time." msgstr "Merci pour votre temps." #: ../../enterprise/include/functions_cron.php:1784 -#: ../../include/functions_reporting.php:15399 +#: ../../include/functions_reporting.php:15654 msgid "Best regards, Pandora FMS" msgstr "Cordialement, Pandora FMS" #: ../../enterprise/include/functions_cron.php:1786 -#: ../../include/functions_reporting.php:15401 +#: ../../include/functions_reporting.php:15656 msgid "" "This is an automatically generated email from Pandora FMS, please do not reply." msgstr "" @@ -23377,7 +23233,7 @@ msgid "Error while executing task" msgstr "Erreur d'exécution de la tache : " #: ../../enterprise/include/functions_tasklist.php:56 -#: ../../include/class/ConsoleSupervisor.php:2383 +#: ../../include/class/ConsoleSupervisor.php:2378 msgid "DiscoveryConsoleTasks is not running properly" msgstr "DiscoveryConsoleTasks n'est pas exécuté correctement" @@ -23389,12 +23245,12 @@ msgstr "" "programmation basé sur le temps" #: ../../enterprise/include/functions_tasklist.php:59 -#: ../../include/class/ConsoleSupervisor.php:2386 +#: ../../include/class/ConsoleSupervisor.php:2381 msgid "Please, add the following line to your crontab file:" msgstr "Veuillez ajouter la ligne suivante à votre fichier crontab :" #: ../../enterprise/include/functions_tasklist.php:74 -#: ../../include/class/ConsoleSupervisor.php:2399 +#: ../../include/class/ConsoleSupervisor.php:2394 msgid "Last execution" msgstr "Dernière exécution" @@ -23460,7 +23316,7 @@ msgstr "Rapport" #: ../../enterprise/include/functions_tasklist.php:463 #: ../../enterprise/include/class/ManageBackups.class.php:166 #: ../../include/functions_cron.php:789 ../../include/functions_cron.php:830 -#: ../../include/class/Diagnostics.class.php:2178 +#: ../../include/class/Diagnostics.class.php:2183 msgid "Path" msgstr "Chemin" @@ -23469,9 +23325,9 @@ msgid "Task disabled" msgstr "Tâche désactivée" #: ../../enterprise/include/functions_tasklist.php:600 -#: ../../enterprise/include/functions_ipam.php:2082 -#: ../../enterprise/include/functions_ipam.php:2083 -#: ../../enterprise/include/functions_ipam.php:2084 +#: ../../enterprise/include/functions_ipam.php:2090 +#: ../../enterprise/include/functions_ipam.php:2091 +#: ../../enterprise/include/functions_ipam.php:2092 #: ../../enterprise/tools/ipam/ipam_list.php:701 #: ../../enterprise/tools/ipam/ipam_ajax.php:502 ../../godmode/db/db_main.php:189 #: ../../godmode/snmpconsole/snmp_alert.php:1330 @@ -23571,7 +23427,7 @@ msgstr "" #: ../../enterprise/include/ajax/ipam.ajax.php:385 #: ../../enterprise/include/functions_ipam.php:1369 -#: ../../enterprise/include/functions_ipam.php:1989 +#: ../../enterprise/include/functions_ipam.php:1997 #: ../../enterprise/tools/ipam/ipam_list.php:97 #: ../../enterprise/tools/ipam/ipam_list.php:612 #: ../../enterprise/tools/ipam/ipam_editor.php:191 @@ -23667,7 +23523,7 @@ msgstr "Super-réseau" #: ../../enterprise/include/ajax/ipam.ajax.php:614 #: ../../enterprise/include/ajax/ipam.ajax.php:644 -#: ../../enterprise/include/functions_ipam.php:1986 +#: ../../enterprise/include/functions_ipam.php:1994 #: ../../enterprise/tools/ipam/ipam_list.php:594 #: ../../enterprise/tools/ipam/ipam_vlan_network.php:63 #: ../../enterprise/tools/ipam/ipam_calculator.php:185 @@ -23676,7 +23532,7 @@ msgstr "Super-réseau" #: ../../enterprise/tools/ipam/ipam_editor.php:122 #: ../../godmode/wizards/HostDevices.class.php:918 #: ../../godmode/wizards/DiscoveryTaskList.class.php:599 -#: ../../include/functions_ui.php:870 ../../operation/menu.php:80 +#: ../../include/functions_ui.php:870 ../../operation/menu.php:84 msgid "Network" msgstr "Réseau" @@ -23725,7 +23581,7 @@ msgid "Unknown option" msgstr "Option inconnue" #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:256 -#: ../../include/functions_treeview.php:781 +#: ../../include/functions_treeview.php:776 #: ../../operation/agentes/agent_fields.php:44 #: ../../operation/agentes/estado_generalagente.php:544 msgid "Custom field" @@ -23746,6 +23602,12 @@ msgstr "sortie de le script (> 0)" msgid "Alert action" msgstr "Action de l'alerte" +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:455 +#: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:562 +#: ../../godmode/modules/manage_inventory_modules_form.php:148 +msgid "Script path" +msgstr "Chemin du script" + #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:459 #: ../../enterprise/include/ajax/agent_autoconfiguration.ajax.php:566 msgid "Script argument" @@ -23806,7 +23668,7 @@ msgstr "Temps global : " #: ../../enterprise/include/functions_reporting_csv.php:2760 #: ../../enterprise/include/functions_reporting_csv.php:2837 #: ../../godmode/setup/setup_integria.php:333 -#: ../../godmode/setup/setup_integria.php:454 +#: ../../godmode/setup/setup_integria.php:454 ../../include/graphs/fgraph.php:879 #: ../../include/rest-api/models/VisualConsole/Items/Odometer.php:404 #: ../../include/lib/Dashboard/Widget.php:557 #: ../../operation/agentes/estado_generalagente.php:665 @@ -23846,7 +23708,7 @@ msgstr "Documents" #: ../../enterprise/include/process_reset_pass.php:162 #: ../../enterprise/include/reset_pass.php:146 #: ../../enterprise/include/reset_pass.php:149 -#: ../../include/functions_config.php:2510 +#: ../../include/functions_config.php:2486 msgid "ONE TOOL TO MONITOR THEM ALL" msgstr "UN OUTIL POUR LES GOUVERNER TOUS" @@ -23855,41 +23717,6 @@ msgstr "UN OUTIL POUR LES GOUVERNER TOUS" msgid "Lines" msgstr "Lignes" -#: ../../enterprise/include/functions_inventory.php:115 -#: ../../enterprise/include/functions_inventory.php:868 -msgid "No changes found" -msgstr "Aucun changement trouvé" - -#: ../../enterprise/include/functions_inventory.php:214 -msgid "Get CSV file" -msgstr "Obtenir fichier CSV" - -#: ../../enterprise/include/functions_inventory.php:301 -#: ../../enterprise/operation/agentes/tag_view.php:578 -#: ../../enterprise/operation/services/services.treeview_services.php:255 -#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 -#: ../../godmode/groups/group_list.php:1034 -#: ../../include/class/Heatmap.class.php:820 -#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 -#: ../../operation/tree.php:415 ../../operation/tree.php:446 -#: ../../operation/network/network_report.php:315 -msgid "No data found" -msgstr "Aucune donnée disponible" - -#: ../../enterprise/include/functions_inventory.php:885 -#: ../../enterprise/include/functions_inventory.php:948 -#: ../../include/functions_reporting_html.php:1831 -msgid "Added" -msgstr "Ajouté" - -#: ../../enterprise/include/functions_inventory.php:891 -#: ../../enterprise/include/functions_inventory.php:956 -#: ../../include/functions_reporting_html.php:1842 -#: ../../include/functions_filemanager.php:342 -#: ../../include/functions_filemanager.php:359 -msgid "Deleted" -msgstr "Supprimé" - #: ../../enterprise/include/auth/saml.php:119 #, php-format msgid "Pandora FMS SAML authentication error: %s" @@ -23899,8 +23726,8 @@ msgstr "Erreur d'authentification SAML Pandora FMS : %s" msgid "Force log out" msgstr "Forcer déconnexion" -#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:388 -#: ../../include/auth/mysql.php:418 ../../include/auth/mysql.php:453 +#: ../../enterprise/include/auth/saml.php:241 ../../include/auth/mysql.php:358 +#: ../../include/auth/mysql.php:388 ../../include/auth/mysql.php:423 msgid "Please, login into metaconsole first" msgstr "Veuillez d'abord vous connecter à la Métaconsole" @@ -23932,28 +23759,39 @@ msgid "File of collection is bigger than the limit (%s bytes)" msgstr "Le fichier de la collection est plus grand que la limite (%s bytes)" #: ../../enterprise/include/functions_ui.php:79 +#: ../../include/functions_ui.php:6895 msgid "Select inventory module" msgstr "Sélectionnez un module d'inventaire" +#: ../../enterprise/include/functions_ui.php:92 +#: ../../godmode/agentes/inventory_manager.php:223 +#: ../../include/functions_ui.php:6908 +msgid "Target" +msgstr "Cible" + #: ../../enterprise/include/functions_ui.php:96 +#: ../../include/functions_ui.php:6912 msgid "Use custom fields" msgstr "utiliser les champs personnalisés." #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "Field name" msgstr "Nom du champ" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "It's a password" msgstr "C'est un mot de passe" #: ../../enterprise/include/functions_ui.php:179 +#: ../../include/functions_ui.php:6995 msgid "Add field" msgstr "Ajouter un champ" #: ../../enterprise/include/functions_reporting_pdf.php:72 -#: ../../include/class/Diagnostics.class.php:2133 -#: ../../include/class/Diagnostics.class.php:2251 +#: ../../include/class/Diagnostics.class.php:2138 +#: ../../include/class/Diagnostics.class.php:2256 #, php-format msgid "Automated %s report for user defined report" msgstr "Rapport %s automatisé pour le port défini par l'utilisateur" @@ -23971,11 +23809,11 @@ msgstr "Rapport %s automatisé pour le port défini par l'utilisateur" #: ../../include/functions_reporting_html.php:3835 #: ../../include/functions_reporting_html.php:3838 #: ../../include/functions_reporting_html.php:3845 -#: ../../include/functions_reporting.php:7015 -#: ../../include/functions_reporting.php:7038 -#: ../../include/functions_reporting.php:7053 -#: ../../include/functions_reporting.php:7069 -#: ../../include/functions_reporting.php:7084 +#: ../../include/functions_reporting.php:7230 +#: ../../include/functions_reporting.php:7253 +#: ../../include/functions_reporting.php:7268 +#: ../../include/functions_reporting.php:7284 +#: ../../include/functions_reporting.php:7299 msgid "Maximun" msgstr "Maximun" @@ -23999,91 +23837,91 @@ msgstr "Minimum" #: ../../include/functions_reporting_html.php:3826 #: ../../include/functions_reporting_html.php:3837 #: ../../include/functions_reporting_html.php:3842 -#: ../../include/functions_reporting.php:7033 +#: ../../include/functions_reporting.php:7248 msgid "Lapse" msgstr "Intervalle" -#: ../../enterprise/include/functions_reporting_pdf.php:971 +#: ../../enterprise/include/functions_reporting_pdf.php:972 #: ../../include/functions_reporting_html.php:2167 #: ../../include/lib/Dashboard/Widgets/agent_module.php:520 #, php-format msgid "%s in %s : NORMAL" msgstr "%s en %s : NORMAL" -#: ../../enterprise/include/functions_reporting_pdf.php:988 +#: ../../enterprise/include/functions_reporting_pdf.php:989 #: ../../include/functions_reporting_html.php:2079 #: ../../include/lib/Dashboard/Widgets/agent_module.php:536 #, php-format msgid "%s in %s : CRITICAL" msgstr "%s en %s : CRITIQUE" -#: ../../enterprise/include/functions_reporting_pdf.php:1005 +#: ../../enterprise/include/functions_reporting_pdf.php:1006 #: ../../include/functions_reporting_html.php:2096 #: ../../include/lib/Dashboard/Widgets/agent_module.php:552 #, php-format msgid "%s in %s : WARNING" msgstr "%s en %s : ALERTE" -#: ../../enterprise/include/functions_reporting_pdf.php:1022 +#: ../../enterprise/include/functions_reporting_pdf.php:1023 #: ../../include/functions_reporting_html.php:2113 #: ../../include/lib/Dashboard/Widgets/agent_module.php:568 #, php-format msgid "%s in %s : UNKNOWN" msgstr "%s in %s : INCONNU" -#: ../../enterprise/include/functions_reporting_pdf.php:1039 +#: ../../enterprise/include/functions_reporting_pdf.php:1040 #: ../../include/functions_reporting_html.php:2149 #: ../../include/lib/Dashboard/Widgets/agent_module.php:584 #, php-format msgid "%s in %s : Not initialize" msgstr "%s in %s : Non initialisées" -#: ../../enterprise/include/functions_reporting_pdf.php:1056 +#: ../../enterprise/include/functions_reporting_pdf.php:1057 #: ../../include/functions_reporting_html.php:2132 #: ../../include/lib/Dashboard/Widgets/agent_module.php:601 #, php-format msgid "%s in %s : ALERTS FIRED" msgstr "%s in %s : ALERTES DÉCLENCHÉES" -#: ../../enterprise/include/functions_reporting_pdf.php:1810 +#: ../../enterprise/include/functions_reporting_pdf.php:1811 #: ../../enterprise/include/functions_reporting_csv.php:2270 #: ../../enterprise/include/functions_reporting_csv.php:2274 -#: ../../include/functions_reporting_html.php:138 +#: ../../include/functions_reporting_html.php:139 msgid "Generated" msgstr "Généré" -#: ../../enterprise/include/functions_reporting_pdf.php:1814 -#: ../../include/functions_reporting_html.php:141 +#: ../../enterprise/include/functions_reporting_pdf.php:1815 +#: ../../include/functions_reporting_html.php:142 msgid "Report date" msgstr "Date du rapport" -#: ../../enterprise/include/functions_reporting_pdf.php:1833 -#: ../../include/functions_reporting_html.php:150 +#: ../../enterprise/include/functions_reporting_pdf.php:1834 +#: ../../include/functions_reporting_html.php:151 #: ../../operation/reporting/reporting_viewer.php:307 msgid "Items period before" msgstr "Période d'articles avant" -#: ../../enterprise/include/functions_reporting_pdf.php:1863 +#: ../../enterprise/include/functions_reporting_pdf.php:1864 msgid "Contents" msgstr "Contenu" -#: ../../enterprise/include/functions_reporting_pdf.php:2009 +#: ../../enterprise/include/functions_reporting_pdf.php:2010 #: ../../enterprise/include/functions_reporting_csv.php:723 #: ../../enterprise/include/functions_reporting_csv.php:1002 #: ../../enterprise/include/functions_reporting_csv.php:1375 #: ../../godmode/agentes/planned_downtime.list.php:339 #: ../../include/functions_reporting_html.php:3930 #: ../../include/functions_snmp.php:413 ../../include/functions_snmp.php:421 -#: ../../include/rest-api/index.php:373 +#: ../../include/rest-api/index.php:374 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:460 #: ../../include/rest-api/models/VisualConsole/Items/ColorCloud.php:520 #: ../../operation/agentes/gis_view.php:221 msgid "To" msgstr "À" -#: ../../enterprise/include/functions_reporting_pdf.php:2013 -#: ../../include/functions_reporting_html.php:90 -#: ../../include/functions_reporting_html.php:5710 +#: ../../enterprise/include/functions_reporting_pdf.php:2014 +#: ../../include/functions_reporting_html.php:91 +#: ../../include/functions_reporting_html.php:5729 #: ../../include/functions_treeview.php:319 #: ../../operation/agentes/interface_view.functions.php:539 msgid "Last data" @@ -24274,8 +24112,8 @@ msgstr "Rapport d'événements de module" #: ../../enterprise/include/functions_reporting_csv.php:480 #: ../../enterprise/include/functions_reporting.php:1229 #: ../../include/functions_reports.php:830 -#: ../../include/functions_reporting.php:8489 -#: ../../include/functions_reporting.php:8881 +#: ../../include/functions_reporting.php:8707 +#: ../../include/functions_reporting.php:9099 msgid "Availability" msgstr "Disponibilité" @@ -24285,7 +24123,7 @@ msgid "% OK" msgstr "% OK" #: ../../enterprise/include/functions_reporting_csv.php:537 -#: ../../include/functions_reporting_html.php:617 +#: ../../include/functions_reporting_html.php:618 msgid "Checks Failed" msgstr "Vérifications échouées" @@ -24343,7 +24181,7 @@ msgid "Agent secondary groups" msgstr "Groupes secondaires d’agents" #: ../../enterprise/include/functions_reporting_csv.php:790 -#: ../../include/functions_reporting.php:2807 +#: ../../include/functions_reporting.php:2925 msgid "Inventory Changes" msgstr "Modifications de l'inventaire" @@ -24353,7 +24191,7 @@ msgid "Prediction date" msgstr "Date de prédiction" #: ../../enterprise/include/functions_reporting_csv.php:838 -#: ../../include/functions_reporting.php:6481 +#: ../../include/functions_reporting.php:6696 msgid "Projection Graph" msgstr "Graphique de projection" @@ -24366,25 +24204,25 @@ msgid "Last Value " msgstr "Dernière valeur " #: ../../enterprise/include/functions_reporting_csv.php:982 -#: ../../include/functions_reporting.php:1543 +#: ../../include/functions_reporting.php:1544 #: ../../operation/snmpconsole/snmp_statistics.php:169 -#: ../../operation/snmpconsole/snmp_statistics.php:237 +#: ../../operation/snmpconsole/snmp_statistics.php:242 #, php-format msgid "Top %d" msgstr "Top %d" #: ../../enterprise/include/functions_reporting_csv.php:1019 -#: ../../include/functions_reporting.php:3887 +#: ../../include/functions_reporting.php:4082 msgid "Group Report" msgstr "Rapport du groupe" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:263 -#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1042 +#: ../../godmode/db/db_main.php:102 ../../godmode/groups/group_list.php:1047 #: ../../mobile/operation/groups.php:147 -#: ../../include/functions_reporting_html.php:5790 +#: ../../include/functions_reporting_html.php:5809 #: ../../include/class/Diagnostics.class.php:550 -#: ../../include/functions_reporting.php:11832 +#: ../../include/functions_reporting.php:12118 #: ../../include/lib/Dashboard/Widgets/tree_view.php:651 #: ../../operation/tree.php:454 msgid "Total agents" @@ -24396,7 +24234,7 @@ msgstr "Agents inconnus" #: ../../enterprise/include/functions_reporting_csv.php:1033 #: ../../enterprise/operation/services/services.treeview_services.php:264 -#: ../../godmode/groups/group_list.php:1043 +#: ../../godmode/groups/group_list.php:1048 #: ../../godmode/module_library/module_library_view.php:159 #: ../../include/class/Diagnostics.class.php:554 #: ../../include/lib/Dashboard/Widgets/tree_view.php:652 @@ -24405,7 +24243,7 @@ msgid "Total modules" msgstr "Nombre total de modules" #: ../../enterprise/include/functions_reporting_csv.php:1033 -#: ../../include/functions_reporting.php:11675 +#: ../../include/functions_reporting.php:11961 msgid "Defined alerts" msgstr "Alertes definies" @@ -24413,12 +24251,12 @@ msgstr "Alertes definies" #: ../../enterprise/operation/services/services.treeview_services.php:268 #: ../../enterprise/operation/services/services.treeview_services.php:269 #: ../../enterprise/operation/services/services.treeview_services.php:270 -#: ../../godmode/groups/group_list.php:1047 -#: ../../godmode/groups/group_list.php:1048 -#: ../../godmode/groups/group_list.php:1049 -#: ../../include/functions_graph.php:2640 -#: ../../include/functions_reporting.php:11693 -#: ../../include/functions_reporting.php:11716 +#: ../../godmode/groups/group_list.php:1052 +#: ../../godmode/groups/group_list.php:1053 +#: ../../godmode/groups/group_list.php:1054 +#: ../../include/functions_graph.php:2609 +#: ../../include/functions_reporting.php:11979 +#: ../../include/functions_reporting.php:12002 #: ../../include/lib/Dashboard/Widgets/tree_view.php:656 #: ../../include/lib/Dashboard/Widgets/tree_view.php:657 #: ../../include/lib/Dashboard/Widgets/tree_view.php:658 @@ -24460,8 +24298,8 @@ msgstr "Diagramme circulaire SQL" #: ../../enterprise/include/functions_reporting_csv.php:1238 #: ../../enterprise/include/functions_reporting_csv.php:1240 #: ../../include/functions_reports.php:754 -#: ../../include/functions_reporting.php:6787 -#: ../../include/functions_reporting.php:10159 +#: ../../include/functions_reporting.php:7002 +#: ../../include/functions_reporting.php:10377 msgid "Summatory" msgstr "Sommation" @@ -24473,7 +24311,7 @@ msgid "Minimum Value" msgstr "Valeur minimale" #: ../../enterprise/include/functions_reporting_csv.php:1285 -#: ../../include/functions_reporting.php:10163 +#: ../../include/functions_reporting.php:10381 msgid "Minimum" msgstr "Minimum" @@ -24490,7 +24328,7 @@ msgstr "Valeur maximale" #: ../../enterprise/include/functions_reporting_csv.php:1390 #: ../../include/functions_reporting_html.php:3933 #: ../../include/functions_reports.php:762 -#: ../../include/functions_reporting.php:9619 +#: ../../include/functions_reporting.php:9837 msgid "Increment" msgstr "Incrément" @@ -24527,7 +24365,7 @@ msgstr "Croissance neutre : " #: ../../enterprise/include/functions_reporting_csv.php:1431 #: ../../enterprise/include/functions_reporting_csv.php:1437 #: ../../enterprise/include/functions_reporting_csv.php:1439 -#: ../../include/functions_reporting.php:6792 +#: ../../include/functions_reporting.php:7007 msgid "AVG. Value" msgstr "Valeur moyenne" @@ -24538,7 +24376,7 @@ msgstr "Moyenne" #: ../../enterprise/include/functions_reporting_csv.php:1465 #: ../../enterprise/include/functions_reporting_csv.php:1483 #: ../../enterprise/include/functions_reporting_csv.php:1485 -#: ../../include/functions_reporting.php:6123 +#: ../../include/functions_reporting.php:6338 msgid "Monitor Report" msgstr "Rapport du moniteur" @@ -24575,7 +24413,7 @@ msgstr "SLA min" #: ../../enterprise/include/functions_reporting.php:2896 #: ../../enterprise/include/functions_reporting.php:3883 #: ../../enterprise/include/functions_reporting.php:6133 -#: ../../include/functions_reporting_html.php:549 +#: ../../include/functions_reporting_html.php:550 msgid "SLA Limit" msgstr "Limite SLA" @@ -24654,9 +24492,9 @@ msgstr "État " #: ../../enterprise/include/functions_reporting.php:3909 #: ../../enterprise/include/functions_reporting.php:3968 #: ../../enterprise/include/functions_reporting.php:6157 -#: ../../include/functions_reporting_html.php:666 -#: ../../include/functions_config.php:1306 -#: ../../include/functions_config.php:3297 +#: ../../include/functions_reporting_html.php:667 +#: ../../include/functions_config.php:1287 +#: ../../include/functions_config.php:3273 msgid "Fail" msgstr "Échec" @@ -24948,18 +24786,18 @@ msgstr "ID d'agent" #: ../../enterprise/include/functions_reporting_csv.php:1985 #: ../../enterprise/include/functions_reporting.php:2319 -#: ../../enterprise/include/functions_ipam.php:2046 +#: ../../enterprise/include/functions_ipam.php:2054 #: ../../enterprise/tools/ipam/ipam_network.php:404 #: ../../enterprise/tools/ipam/ipam_network.php:673 #: ../../enterprise/tools/ipam/ipam_ajax.php:293 #: ../../enterprise/tools/ipam/ipam_ajax.php:479 #: ../../enterprise/tools/ipam/ipam_massive.php:83 -#: ../../godmode/users/configure_user.php:1202 +#: ../../godmode/users/configure_user.php:1261 #: ../../mobile/operation/events.php:849 -#: ../../include/functions_reporting_html.php:5909 -#: ../../include/functions.php:3073 ../../include/ajax/events.php:1683 +#: ../../include/functions_reporting_html.php:5928 +#: ../../include/functions.php:3099 ../../include/ajax/events.php:1690 #: ../../include/class/AuditLog.class.php:111 -#: ../../operation/users/user_edit.php:607 +#: ../../operation/users/user_edit.php:681 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:317 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:410 #: ../../general/logon_ok.php:253 @@ -24968,7 +24806,7 @@ msgstr "Commentaires" #: ../../enterprise/include/functions_reporting_csv.php:1986 #: ../../enterprise/include/functions_reporting.php:2320 -#: ../../enterprise/include/functions_ipam.php:2044 +#: ../../enterprise/include/functions_ipam.php:2052 #: ../../enterprise/tools/ipam/ipam_network.php:415 #: ../../godmode/wizards/DiscoveryTaskList.class.php:1393 msgid "Alive" @@ -24988,13 +24826,13 @@ msgstr "SLA limite" #: ../../enterprise/include/functions_reporting_csv.php:2030 #: ../../enterprise/include/functions_reporting.php:4968 -#: ../../include/functions_reporting_html.php:583 +#: ../../include/functions_reporting_html.php:584 msgid "Time Total" msgstr "Temps total" #: ../../enterprise/include/functions_reporting_csv.php:2031 #: ../../enterprise/include/functions_reporting.php:4971 -#: ../../include/functions_reporting_html.php:585 +#: ../../include/functions_reporting_html.php:586 #: ../../include/functions_reporting_html.php:4072 msgid "Time OK" msgstr "Temps OK" @@ -25005,14 +24843,14 @@ msgstr "Temps erreur" #: ../../enterprise/include/functions_reporting_csv.php:2033 #: ../../enterprise/include/functions_reporting.php:4972 -#: ../../include/functions_reporting_html.php:586 +#: ../../include/functions_reporting_html.php:587 #: ../../include/functions_reporting_html.php:4084 msgid "Time Unknown" msgstr "Temps inconnu" #: ../../enterprise/include/functions_reporting_csv.php:2034 #: ../../enterprise/include/functions_reporting.php:4973 -#: ../../include/functions_reporting_html.php:587 +#: ../../include/functions_reporting_html.php:588 msgid "Time Not Init" msgstr "Temps non initialisé" @@ -25023,13 +24861,13 @@ msgstr "Temps d'arrêt" #: ../../enterprise/include/functions_reporting_csv.php:2036 #: ../../enterprise/include/functions_reporting.php:5063 -#: ../../include/functions_reporting_html.php:616 +#: ../../include/functions_reporting_html.php:617 msgid "Checks Total" msgstr "Vérifications totales" #: ../../enterprise/include/functions_reporting_csv.php:2037 #: ../../enterprise/include/functions_reporting.php:5066 -#: ../../include/functions_reporting_html.php:618 +#: ../../include/functions_reporting_html.php:619 #: ../../include/functions_reporting_html.php:4166 msgid "Checks OK" msgstr "Vérifications OK" @@ -25040,7 +24878,7 @@ msgstr "Erreur de vérifications" #: ../../enterprise/include/functions_reporting_csv.php:2039 #: ../../enterprise/include/functions_reporting.php:5067 -#: ../../include/functions_reporting_html.php:619 +#: ../../include/functions_reporting_html.php:620 msgid "Checks Unknown" msgstr "Vérifications inconnues" @@ -25186,22 +25024,22 @@ msgid "Simple Baseline Graph" msgstr "Graphique de référence simple" #: ../../enterprise/include/functions_reporting_csv.php:2348 -#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:567 +#: ../../include/rest-api/models/VisualConsole/Items/ModuleGraph.php:557 msgid "Custom Graph" msgstr "Graphique personnalisée" #: ../../enterprise/include/functions_reporting_csv.php:2493 -#: ../../include/functions_reporting.php:5831 +#: ../../include/functions_reporting.php:6046 msgid "Alert Report Module" msgstr "Module de rapport d'alerte" #: ../../enterprise/include/functions_reporting_csv.php:2495 -#: ../../include/functions_reporting.php:5664 +#: ../../include/functions_reporting.php:5879 msgid "Alert Report Agent" msgstr "Agent de rapport d'alerte" #: ../../enterprise/include/functions_reporting_csv.php:2497 -#: ../../include/functions_reporting.php:5484 +#: ../../include/functions_reporting.php:5699 msgid "Alert Report Group" msgstr "Rapport d'alertes de groupe" @@ -25220,34 +25058,34 @@ msgstr "Journal de rapport d'événement" #: ../../enterprise/include/functions_reporting_csv.php:2581 #: ../../include/functions_reports.php:939 #: ../../include/functions_reports.php:940 -#: ../../include/functions_reporting.php:4741 +#: ../../include/functions_reporting.php:5004 msgid "Permissions report" msgstr "Rapport de permissions" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 #: ../../godmode/users/user_list.php:539 -#: ../../godmode/users/configure_user.php:1028 -#: ../../godmode/users/configure_user.php:1044 -#: ../../include/functions_reporting_html.php:5199 -#: ../../include/functions_reporting_html.php:6367 -#: ../../include/functions_reporting_html.php:6390 +#: ../../godmode/users/configure_user.php:1045 +#: ../../godmode/users/configure_user.php:1103 +#: ../../include/functions_reporting_html.php:5218 +#: ../../include/functions_reporting_html.php:6386 +#: ../../include/functions_reporting_html.php:6409 #: ../../include/class/SnmpConsole.class.php:341 -#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:261 +#: ../../operation/search_users.php:43 ../../operation/users/user_edit.php:268 msgid "User ID" msgstr "Identifiant de l'utilisateur" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6368 -#: ../../include/functions_reporting_html.php:6391 +#: ../../include/functions_reporting_html.php:6387 +#: ../../include/functions_reporting_html.php:6410 msgid "Full name" msgstr "Nom complet" #: ../../enterprise/include/functions_reporting_csv.php:2599 #: ../../enterprise/include/functions_reporting_csv.php:2609 -#: ../../include/functions_reporting_html.php:6369 -#: ../../include/functions_reporting_html.php:6392 +#: ../../include/functions_reporting_html.php:6388 +#: ../../include/functions_reporting_html.php:6411 msgid "Permissions" msgstr "Permissions" @@ -25306,14 +25144,14 @@ msgstr "Dernière fois" #: ../../enterprise/include/functions_reporting_csv.php:2836 #: ../../include/functions_reports.php:926 -#: ../../include/functions_reporting.php:6278 +#: ../../include/functions_reporting.php:6493 msgid "Netflow top-N connections" msgstr "Connexions Netflow top-N" #: ../../enterprise/include/functions_reporting_csv.php:2858 #: ../../mobile/operation/tactical.php:351 -#: ../../include/functions_reporting_html.php:5908 -#: ../../include/functions.php:3073 ../../include/functions_netflow.php:347 +#: ../../include/functions_reporting_html.php:5927 +#: ../../include/functions.php:3099 ../../include/functions_netflow.php:347 #: ../../include/class/AuditLog.class.php:110 #: ../../operation/snmpconsole/snmp_statistics.php:182 #: ../../general/logon_ok.php:252 @@ -25326,8 +25164,7 @@ msgid "Destination IP" msgstr "IP Destination" #: ../../enterprise/include/functions_reporting_csv.php:2858 -#: ../../include/functions_config.php:1009 -#: ../../include/functions_config.php:3209 +#: ../../include/functions_config.php:990 ../../include/functions_config.php:3185 #: ../../include/functions_netflow.php:349 #: ../../operation/network/network_report.php:206 #: ../../operation/network/network_report.php:238 @@ -25445,7 +25282,7 @@ msgid "Microsoft Compute" msgstr "Microsoft Compute" #: ../../enterprise/include/class/Azure.cloud.php:355 -#: ../../enterprise/include/class/Aws.cloud.php:1494 +#: ../../enterprise/include/class/Aws.cloud.php:1493 #: ../../enterprise/include/class/Google.cloud.php:349 #, php-format msgid "%s not found or not executable" @@ -25468,7 +25305,7 @@ msgstr "Accès pas autorisé" #: ../../enterprise/include/class/DB2.app.php:437 #: ../../enterprise/include/class/Aws.S3.php:401 #: ../../enterprise/include/class/SAP.app.php:469 -#: ../../enterprise/include/class/Aws.cloud.php:1202 +#: ../../enterprise/include/class/Aws.cloud.php:1201 #: ../../enterprise/include/class/MySQL.app.php:442 #: ../../enterprise/include/class/Google.cloud.php:759 #: ../../enterprise/include/class/Oracle.app.php:444 @@ -25482,13 +25319,13 @@ msgstr "Nom de la tâche" #: ../../enterprise/include/class/Azure.cloud.php:797 #: ../../enterprise/include/class/VMware.app.php:614 #: ../../enterprise/include/class/Aws.S3.php:559 -#: ../../enterprise/include/class/Aws.cloud.php:541 +#: ../../enterprise/include/class/Aws.cloud.php:540 msgid "Tentacle options" msgstr "Options Tentacle" #: ../../enterprise/include/class/Azure.cloud.php:872 -#: ../../enterprise/include/class/Aws.cloud.php:743 -#: ../../enterprise/include/class/Aws.cloud.php:1275 +#: ../../enterprise/include/class/Aws.cloud.php:742 +#: ../../enterprise/include/class/Aws.cloud.php:1274 #: ../../enterprise/include/class/Google.cloud.php:822 msgid "No instances found." msgstr "Aucune instance trouvée." @@ -25499,29 +25336,29 @@ msgid "Select target virtual machines" msgstr "Sélectionnez les machines virtuelles cibles" #: ../../enterprise/include/class/Azure.cloud.php:928 -#: ../../enterprise/include/class/Aws.cloud.php:672 +#: ../../enterprise/include/class/Aws.cloud.php:671 msgid "Scan and general monitoring." msgstr "Scan et supervision générale." #: ../../enterprise/include/class/Azure.cloud.php:941 -#: ../../enterprise/include/class/Aws.cloud.php:689 +#: ../../enterprise/include/class/Aws.cloud.php:688 msgid "Cpu performance summary" msgstr "Résumée de la performance de l'UCT" #: ../../enterprise/include/class/Azure.cloud.php:949 -#: ../../enterprise/include/class/Aws.cloud.php:699 +#: ../../enterprise/include/class/Aws.cloud.php:698 #: ../../enterprise/include/class/Google.cloud.php:911 msgid "IOPS performance summary" msgstr "Résumée de la performance d'IOPS" #: ../../enterprise/include/class/Azure.cloud.php:957 -#: ../../enterprise/include/class/Aws.cloud.php:709 +#: ../../enterprise/include/class/Aws.cloud.php:708 #: ../../enterprise/include/class/Google.cloud.php:919 msgid "Disk performance summary" msgstr "Résumée de la performance du disque" #: ../../enterprise/include/class/Azure.cloud.php:965 -#: ../../enterprise/include/class/Aws.cloud.php:719 +#: ../../enterprise/include/class/Aws.cloud.php:718 #: ../../enterprise/include/class/Google.cloud.php:927 msgid "Network performance summary" msgstr "Résumée de la performance du réseau" @@ -25531,12 +25368,12 @@ msgstr "Résumée de la performance du réseau" #: ../../enterprise/include/class/DB2.app.php:869 #: ../../enterprise/include/class/Aws.S3.php:659 #: ../../enterprise/include/class/SAP.app.php:925 -#: ../../enterprise/include/class/Aws.cloud.php:1592 +#: ../../enterprise/include/class/Aws.cloud.php:1591 #: ../../enterprise/include/class/MySQL.app.php:945 #: ../../enterprise/include/class/Google.cloud.php:952 #: ../../enterprise/include/class/Oracle.app.php:978 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:822 -#: ../../godmode/wizards/HostDevices.class.php:1614 +#: ../../godmode/wizards/HostDevices.class.php:1613 #: ../../include/class/CustomNetScan.class.php:759 msgid "Task configured." msgstr "Tache configurée." @@ -25549,7 +25386,7 @@ msgstr "Tache configurée." #: ../../enterprise/include/class/Google.cloud.php:956 #: ../../enterprise/include/class/Oracle.app.php:982 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:826 -#: ../../godmode/wizards/HostDevices.class.php:1618 +#: ../../godmode/wizards/HostDevices.class.php:1617 #: ../../include/class/CustomNetScan.class.php:763 msgid "Wizard failed. Cannot configure task." msgstr "Échec de l'assistant. La tache ne peut pas se configurer." @@ -25566,7 +25403,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:197 #: ../../enterprise/include/class/Aws.S3.php:183 #: ../../enterprise/include/class/SAP.app.php:185 -#: ../../enterprise/include/class/Aws.cloud.php:918 +#: ../../enterprise/include/class/Aws.cloud.php:917 #: ../../enterprise/include/class/MySQL.app.php:206 #: ../../enterprise/include/class/Oracle.app.php:204 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:203 @@ -25579,7 +25416,7 @@ msgstr "Vous devez fournir un nom de tache." #: ../../enterprise/include/class/DB2.app.php:202 #: ../../enterprise/include/class/Aws.S3.php:188 #: ../../enterprise/include/class/SAP.app.php:190 -#: ../../enterprise/include/class/Aws.cloud.php:923 +#: ../../enterprise/include/class/Aws.cloud.php:922 #: ../../enterprise/include/class/MySQL.app.php:211 #: ../../enterprise/include/class/Oracle.app.php:209 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:208 @@ -25596,7 +25433,7 @@ msgstr "Fournissez une IP ou FQDN V-Center valide" #: ../../enterprise/include/class/DB2.app.php:212 #: ../../enterprise/include/class/Aws.S3.php:193 #: ../../enterprise/include/class/SAP.app.php:200 -#: ../../enterprise/include/class/Aws.cloud.php:928 +#: ../../enterprise/include/class/Aws.cloud.php:927 #: ../../enterprise/include/class/MySQL.app.php:226 #: ../../enterprise/include/class/Oracle.app.php:219 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:218 @@ -25645,7 +25482,7 @@ msgstr "Mettre à jour et continuer" #: ../../enterprise/include/class/VMware.app.php:547 #: ../../enterprise/include/class/Aws.S3.php:554 -#: ../../enterprise/include/class/Aws.cloud.php:501 +#: ../../enterprise/include/class/Aws.cloud.php:500 msgid "" "This kind of task uses multipurpose plugins in order to generate monitoring " "data, configure your desired tentacle target." @@ -25657,7 +25494,7 @@ msgstr "" #: ../../enterprise/include/class/DB2.app.php:449 #: ../../enterprise/include/class/Aws.S3.php:413 #: ../../enterprise/include/class/SAP.app.php:482 -#: ../../enterprise/include/class/Aws.cloud.php:1214 +#: ../../enterprise/include/class/Aws.cloud.php:1213 #: ../../enterprise/include/class/MySQL.app.php:454 #: ../../enterprise/include/class/Oracle.app.php:456 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:451 @@ -25678,7 +25515,7 @@ msgstr "Utilisateur du centre de traitement de données" #: ../../enterprise/include/class/DB2.app.php:537 #: ../../enterprise/include/class/Aws.S3.php:507 #: ../../enterprise/include/class/SAP.app.php:514 -#: ../../enterprise/include/class/Aws.cloud.php:1320 +#: ../../enterprise/include/class/Aws.cloud.php:1319 #: ../../enterprise/include/class/MySQL.app.php:559 #: ../../enterprise/include/class/Oracle.app.php:544 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:538 @@ -25692,7 +25529,7 @@ msgstr "Avec l'intervalle manuel il sera exécuté uniquement sur demande" #: ../../enterprise/include/class/DB2.app.php:544 #: ../../enterprise/include/class/Aws.S3.php:514 #: ../../enterprise/include/class/SAP.app.php:521 -#: ../../enterprise/include/class/Aws.cloud.php:1327 +#: ../../enterprise/include/class/Aws.cloud.php:1326 #: ../../enterprise/include/class/MySQL.app.php:566 #: ../../enterprise/include/class/Oracle.app.php:551 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:545 @@ -25708,7 +25545,7 @@ msgstr "Défini" #: ../../enterprise/include/class/SAPView.class.php:259 #: ../../enterprise/include/class/SAPView.class.php:296 #: ../../enterprise/include/class/SAP.app.php:540 -#: ../../enterprise/include/class/Aws.cloud.php:1344 +#: ../../enterprise/include/class/Aws.cloud.php:1343 #: ../../enterprise/include/class/MySQL.app.php:583 #: ../../enterprise/include/class/Oracle.app.php:568 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:562 @@ -25739,7 +25576,7 @@ msgstr "Chiffrer les mots de passe" #: ../../enterprise/include/class/DB2.app.php:470 #: ../../enterprise/include/class/Aws.S3.php:435 #: ../../enterprise/include/class/SAP.app.php:644 -#: ../../enterprise/include/class/Aws.cloud.php:1235 +#: ../../enterprise/include/class/Aws.cloud.php:1234 #: ../../enterprise/include/class/MySQL.app.php:475 #: ../../enterprise/include/class/Oracle.app.php:477 #: ../../enterprise/include/class/MicrosoftSQLServer.app.php:472 @@ -26018,8 +25855,8 @@ msgstr "Réseau programmé à être scanné. Voyez le progrès chez %s" #: ../../enterprise/include/class/DeploymentCenter.class.php:1268 #: ../../enterprise/include/class/SAP.app.php:604 #: ../../enterprise/include/class/SAP.app.php:607 -#: ../../godmode/wizards/HostDevices.class.php:1456 -#: ../../godmode/wizards/HostDevices.class.php:1459 +#: ../../godmode/wizards/HostDevices.class.php:1455 +#: ../../godmode/wizards/HostDevices.class.php:1458 msgid "No credentials available" msgstr "Pas d'identifiants disponibles" @@ -26027,7 +25864,7 @@ msgstr "Pas d'identifiants disponibles" #: ../../enterprise/include/class/DeploymentCenter.class.php:1266 #: ../../enterprise/include/class/SAP.app.php:605 #: ../../godmode/agentes/module_manager_editor_network.php:518 -#: ../../godmode/wizards/HostDevices.class.php:1457 +#: ../../godmode/wizards/HostDevices.class.php:1456 msgid "Manage credentials" msgstr "Gérer des identifiants" @@ -26040,7 +25877,7 @@ msgid "Scan from" msgstr "Scanner depuis" #: ../../enterprise/include/class/DeploymentCenter.class.php:1178 -#: ../../godmode/wizards/HostDevices.class.php:1469 +#: ../../godmode/wizards/HostDevices.class.php:1468 msgid "Credentials to try with" msgstr "Identifiants avec lesquels essayer" @@ -26139,7 +25976,7 @@ msgstr "Programmé correctement" #: ../../enterprise/tools/ipam/ipam_ajax.php:419 #: ../../enterprise/tools/ipam/ipam_massive.php:103 #: ../../godmode/modules/manage_network_components_form_wizard.php:247 -#: ../../godmode/groups/group_list.php:908 +#: ../../godmode/groups/group_list.php:913 #: ../../godmode/agentes/module_manager_editor_common.php:1075 #: ../../godmode/agentes/module_manager_editor_common.php:1085 #: ../../godmode/massive/massive_edit_agents.php:1137 @@ -26387,8 +26224,8 @@ msgstr "Modèle mis à jour" #: ../../enterprise/include/lib/Metaconsole/Node.php:1453 #: ../../include/class/CalendarManager.class.php:570 #: ../../include/class/CalendarManager.class.php:946 -#: ../../include/functions_reporting.php:5095 -#: ../../include/functions_reporting.php:5123 +#: ../../include/functions_reporting.php:5358 +#: ../../include/functions_reporting.php:5386 #, php-format msgid "Error: %s" msgstr "Erreur : %s" @@ -26940,7 +26777,7 @@ msgid "Aws S3" msgstr "Aws S3" #: ../../enterprise/include/class/Aws.S3.php:166 -#: ../../enterprise/include/class/Aws.cloud.php:887 +#: ../../enterprise/include/class/Aws.cloud.php:886 #: ../../include/class/CustomNetScan.class.php:134 msgid "This task has been already defined. Please edit it or create a new one." msgstr "" @@ -27270,56 +27107,56 @@ msgstr "Coûts" msgid "Instances" msgstr "Instances" -#: ../../enterprise/include/class/Aws.cloud.php:442 +#: ../../enterprise/include/class/Aws.cloud.php:441 msgid "Amazon EC2" msgstr "Amazon EC2" -#: ../../enterprise/include/class/Aws.cloud.php:447 +#: ../../enterprise/include/class/Aws.cloud.php:446 msgid "Amazon RDS" msgstr "Amazon RDS" -#: ../../enterprise/include/class/Aws.cloud.php:452 +#: ../../enterprise/include/class/Aws.cloud.php:451 msgid "S3 Buckets" msgstr "S3 Buckets" -#: ../../enterprise/include/class/Aws.cloud.php:472 +#: ../../enterprise/include/class/Aws.cloud.php:471 #: ../../godmode/wizards/HostDevices.class.php:698 msgid "NetScan" msgstr "NetScan" -#: ../../enterprise/include/class/Aws.cloud.php:511 +#: ../../enterprise/include/class/Aws.cloud.php:510 msgid "Discovery task name" msgstr "Nom de la tache Discovery" -#: ../../enterprise/include/class/Aws.cloud.php:615 +#: ../../enterprise/include/class/Aws.cloud.php:614 msgid "Total cost" msgstr "Coût total" -#: ../../enterprise/include/class/Aws.cloud.php:632 +#: ../../enterprise/include/class/Aws.cloud.php:631 msgid "Cost by region" msgstr "Coût par région" -#: ../../enterprise/include/class/Aws.cloud.php:646 +#: ../../enterprise/include/class/Aws.cloud.php:645 msgid "Cost interval" msgstr "Intervalle de coût" -#: ../../enterprise/include/class/Aws.cloud.php:774 +#: ../../enterprise/include/class/Aws.cloud.php:773 msgid "Select EC2 instances" msgstr "Sélectionner instances EC2" -#: ../../enterprise/include/class/Aws.cloud.php:790 +#: ../../enterprise/include/class/Aws.cloud.php:789 msgid "Storage" msgstr "Stockage" -#: ../../enterprise/include/class/Aws.cloud.php:800 +#: ../../enterprise/include/class/Aws.cloud.php:799 msgid "Elastic IP Adresses" msgstr "Adresses IP d'ELastic" -#: ../../enterprise/include/class/Aws.cloud.php:983 +#: ../../enterprise/include/class/Aws.cloud.php:982 msgid "You must select at least one RDS instance." msgstr "Sélectionnez au moins une instance RDS." -#: ../../enterprise/include/class/Aws.cloud.php:988 +#: ../../enterprise/include/class/Aws.cloud.php:987 msgid "" "You cannot monitor RDS instances from different types. Please define several " "tasks for several types." @@ -27327,43 +27164,43 @@ msgstr "" "Vous ne pouvez pas superviser les instances RDS depuis différents types. " "Définissez différents taches pour différentes types." -#: ../../enterprise/include/class/Aws.cloud.php:995 +#: ../../enterprise/include/class/Aws.cloud.php:994 msgid "Discovery.Cloud.AWS.RDS" msgstr "Discovery.Cloud.AWS.RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1161 +#: ../../enterprise/include/class/Aws.cloud.php:1160 msgid "RDS" msgstr "RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1166 +#: ../../enterprise/include/class/Aws.cloud.php:1165 msgid "DB monitoring" msgstr "Supervision de la basse de données" -#: ../../enterprise/include/class/Aws.cloud.php:1176 +#: ../../enterprise/include/class/Aws.cloud.php:1175 msgid "AWS RDS" msgstr "AWS RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1250 +#: ../../enterprise/include/class/Aws.cloud.php:1249 msgid "Global DB User" msgstr "Utilisateur de la base de données globale" -#: ../../enterprise/include/class/Aws.cloud.php:1260 +#: ../../enterprise/include/class/Aws.cloud.php:1259 msgid "Global DB password" msgstr "Mot de pass de la base de données globale" -#: ../../enterprise/include/class/Aws.cloud.php:1350 +#: ../../enterprise/include/class/Aws.cloud.php:1349 msgid "Select RDS instances" msgstr "Sélectionner instances RDS" -#: ../../enterprise/include/class/Aws.cloud.php:1654 +#: ../../enterprise/include/class/Aws.cloud.php:1653 msgid "Invalid group" msgstr "Groupe non valide" -#: ../../enterprise/include/class/Aws.cloud.php:1712 +#: ../../enterprise/include/class/Aws.cloud.php:1711 msgid "Cannot update the recon database" msgstr "La base de données de reconnaissance ne peut pas être mise à jour" -#: ../../enterprise/include/class/Aws.cloud.php:1734 +#: ../../enterprise/include/class/Aws.cloud.php:1733 msgid "Engine not supported" msgstr "Moteur non supporté" @@ -27649,47 +27486,47 @@ msgid "Block" msgstr "Bloc" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1264 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1084 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1085 msgid "Log content" msgstr "Contenu du journal" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1269 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1087 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1088 msgid "Log source" msgstr "Source du journal" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1274 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1090 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1091 msgid "Log agent" msgstr "Agent du journal" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1332 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1096 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1097 msgid "Event content" msgstr "Contenu de l'événement" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1337 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1093 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1094 msgid "Event user comment" msgstr "Commentaire d'utilisateur d'événement" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1342 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1099 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1100 msgid "Event agent" msgstr "Agent de l'événement" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1347 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1102 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1103 msgid "Event module" msgstr "Module de l'événement" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1352 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1105 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1106 msgid "Event module alerts" msgstr "Alertes des modules d'événements" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1357 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1108 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1109 msgid "Event group" msgstr "Groupe d'événements" @@ -27698,17 +27535,17 @@ msgid "Event group (recursive)" msgstr "Group d'événements" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1369 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1114 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1115 msgid "Event severity" msgstr "Sévérité de l'événement" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1374 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1117 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1118 msgid "Event tag" msgstr "Étiquette de l'événement" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1379 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1120 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1121 msgid "Event user" msgstr "Utilisateur de l'événement" @@ -27718,20 +27555,20 @@ msgstr "Opérateurs" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1414 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1458 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1433 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1434 msgid "greater than" msgstr "supérieur à" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1419 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1462 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1437 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1445 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1438 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1446 msgid "less than" msgstr "inférieur à" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1424 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1466 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1441 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1442 msgid "greater or equal than" msgstr "supérieur ou égal à" @@ -27742,25 +27579,25 @@ msgstr "inférieur ou égal à" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1434 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1474 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1449 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1450 msgid "is equal" msgstr "est égal" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1439 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1478 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1453 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1454 msgid "is different" msgstr "est différent" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1444 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1482 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1457 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1458 msgid "is like (regex)" msgstr "est comme" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1449 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:1486 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1461 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1462 msgid "is not like (regex)" msgstr "n'est pas comme (regex)" @@ -27824,10 +27661,10 @@ msgstr "Récupération d'alertes" #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2078 #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2735 -#: ../../godmode/alerts/alert_commands.php:101 -#: ../../godmode/alerts/alert_commands.php:106 -#: ../../godmode/alerts/alert_commands.php:122 -#: ../../godmode/alerts/alert_commands.php:128 +#: ../../godmode/alerts/alert_commands.php:102 +#: ../../godmode/alerts/alert_commands.php:107 +#: ../../godmode/alerts/alert_commands.php:123 +#: ../../godmode/alerts/alert_commands.php:129 #: ../../godmode/alerts/configure_alert_template.php:928 #: ../../godmode/alerts/alert_view.php:484 #: ../../godmode/alerts/alert_view.php:603 @@ -27835,6 +27672,12 @@ msgstr "Récupération d'alertes" msgid "Field %s" msgstr "Champ %s" +#: ../../enterprise/include/class/AlertCorrelationManager.class.php:2090 +msgid "Agent and module event recovery macros are not available in this section" +msgstr "" +"Les macros de récupération d’événements de l’agent et du module ne sont pas " +"disponibles dans cette section" + #: ../../enterprise/include/class/AlertCorrelationManager.class.php:2090 #, php-format msgid "Recovery Field %s" @@ -28081,7 +27924,7 @@ msgid "Metaconsole" msgstr "Métaconsole" #: ../../enterprise/include/class/CommandCenter.class.php:265 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:982 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:994 msgid "" "Memory limit is recomended to be unlimited in metaconsole, please set to -1 in " "php.ini." @@ -28126,7 +27969,7 @@ msgid "Please restore your backups" msgstr "Veuillez rétablir vos sauvegardes" #: ../../enterprise/include/class/CommandCenter.class.php:452 -#: ../../include/functions_ui.php:6663 +#: ../../include/functions_ui.php:6667 msgid "Query" msgstr "Requête" @@ -28169,7 +28012,8 @@ msgstr "Le processus a été complété correctement" #: ../../enterprise/include/class/CommandCenter.class.php:461 #: ../../enterprise/include/functions_login.php:145 -#: ../../include/class/Diagnostics.class.php:1821 +#: ../../include/functions_menu.php:799 +#: ../../include/class/Diagnostics.class.php:1826 msgid "Successfully" msgstr "Correctement" @@ -28323,7 +28167,7 @@ msgid "Admin Tools" msgstr "Outils d’administration" #: ../../enterprise/include/class/ManageBackups.class.php:121 -#: ../../enterprise/operation/menu.php:183 +#: ../../enterprise/operation/menu.php:170 msgid "DB Backup Manager" msgstr "Backup Manager de base de donées" @@ -28343,7 +28187,7 @@ msgstr "" #: ../../include/functions_visual_map_editor.php:838 #: ../../include/functions_visual_map_editor.php:933 #: ../../include/rest-api/models/VisualConsole/Items/Box.php:214 -#: ../../include/rest-api/models/VisualConsole/Item.php:1991 +#: ../../include/rest-api/models/VisualConsole/Item.php:1992 #: ../../include/functions_filemanager.php:606 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:119 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:250 @@ -28457,7 +28301,7 @@ msgstr "Élément disponible créé à partir de l'assistant" #: ../../enterprise/include/functions_reporting.php:1856 #: ../../enterprise/include/functions_reporting.php:2895 #: ../../enterprise/include/functions_reporting.php:3882 -#: ../../include/functions_reporting_html.php:548 +#: ../../include/functions_reporting_html.php:549 msgid "Max/Min Values" msgstr "Valeurs max/min" @@ -28466,7 +28310,7 @@ msgstr "Valeurs max/min" #: ../../enterprise/include/functions_reporting.php:2897 #: ../../enterprise/include/functions_reporting.php:3884 #: ../../enterprise/include/functions_reporting.php:6134 -#: ../../include/functions_reporting_html.php:550 +#: ../../include/functions_reporting_html.php:551 msgid "SLA Compliance" msgstr "Conformité SLA" @@ -28476,7 +28320,7 @@ msgstr "Conformité SLA" #: ../../enterprise/include/functions_reporting.php:3939 #: ../../enterprise/include/functions_reporting.php:4203 #: ../../enterprise/include/functions_reporting.php:4854 -#: ../../include/functions_reporting_html.php:873 +#: ../../include/functions_reporting_html.php:874 #: ../../include/functions_reporting_html.php:4795 msgid "Not Init" msgstr "Non initialisées" @@ -28522,16 +28366,16 @@ msgstr "Journal" #: ../../enterprise/include/functions_reporting.php:2495 #: ../../enterprise/include/functions_reporting.php:3439 #: ../../enterprise/include/functions_reporting.php:4414 -#: ../../include/functions_reporting.php:1005 -#: ../../include/functions_reporting.php:8923 +#: ../../include/functions_reporting.php:1006 +#: ../../include/functions_reporting.php:9141 msgid "There are no SLAs defined" msgstr "Aucun SLA défini" #: ../../enterprise/include/functions_reporting.php:2548 #: ../../enterprise/include/functions_reporting.php:3492 #: ../../enterprise/include/functions_reporting.php:4467 -#: ../../include/functions_reporting.php:1080 -#: ../../include/functions_reporting.php:9301 +#: ../../include/functions_reporting.php:1081 +#: ../../include/functions_reporting.php:9519 msgid "Inverse" msgstr "Inverse" @@ -28579,7 +28423,7 @@ msgstr "SLA %" #: ../../enterprise/include/functions_reporting.php:4198 #: ../../enterprise/include/functions_reporting.php:6199 #: ../../enterprise/include/functions_services.php:1453 -#: ../../include/functions_reporting_html.php:868 +#: ../../include/functions_reporting_html.php:869 #: ../../include/functions_reporting_html.php:4790 msgid "Unknow" msgstr "Inconnu" @@ -28587,7 +28431,7 @@ msgstr "Inconnu" #: ../../enterprise/include/functions_reporting.php:3207 #: ../../enterprise/include/functions_reporting.php:4208 #: ../../enterprise/include/functions_reporting.php:6204 -#: ../../include/functions_reporting_html.php:878 +#: ../../include/functions_reporting_html.php:879 #: ../../include/functions_reporting_html.php:4800 msgid "Downtimes" msgstr "Arrêts" @@ -28618,17 +28462,17 @@ msgid "% time ok" msgstr "% temps ok" #: ../../enterprise/include/functions_reporting.php:4927 -#: ../../include/functions_reporting_html.php:637 -#: ../../include/functions_reporting_html.php:676 -#: ../../include/functions_reporting_html.php:747 -#: ../../include/functions_reporting_html.php:825 +#: ../../include/functions_reporting_html.php:638 +#: ../../include/functions_reporting_html.php:677 +#: ../../include/functions_reporting_html.php:748 +#: ../../include/functions_reporting_html.php:826 #: ../../include/functions_reporting_html.php:4248 #: ../../include/functions_reporting_html.php:4395 msgid "24 x 7" msgstr "24h/24 7j/7" #: ../../enterprise/include/functions_reporting.php:4967 -#: ../../include/functions_reporting_html.php:582 +#: ../../include/functions_reporting_html.php:583 msgid "Global Time" msgstr "Temps global" @@ -28637,7 +28481,7 @@ msgid "Time Critical" msgstr "Temps critique" #: ../../enterprise/include/functions_reporting.php:5062 -#: ../../include/functions_reporting_html.php:615 +#: ../../include/functions_reporting_html.php:616 msgid "Checks Time" msgstr "Temps de vérifications" @@ -28651,12 +28495,12 @@ msgid "Checks Warning" msgstr "Vérifications avertissement" #: ../../enterprise/include/functions_reporting.php:5148 -#: ../../include/functions_reporting_html.php:805 +#: ../../include/functions_reporting_html.php:806 #: ../../include/functions_reporting_html.php:4438 #: ../../include/functions_reporting_html.php:4988 #: ../../include/functions_reporting_html.php:4991 -#: ../../include/functions_reporting.php:1650 -#: ../../include/functions_reporting.php:3513 +#: ../../include/functions_reporting.php:1651 +#: ../../include/functions_reporting.php:3631 msgid "There are no Agent/Modules defined" msgstr "Aucun Agent/Module défini" @@ -28979,7 +28823,7 @@ msgid "User pass successfully updated" msgstr "Mot de passe de l'utilisateur mis à jour correctement" #: ../../enterprise/include/functions_login.php:216 -#: ../../include/auth/mysql.php:763 +#: ../../include/auth/mysql.php:741 msgid "The password provided is not valid. Please, set another one." msgstr "" "Le mot de passe fourni n’est pas valide. S’il vous plaît, entrez-en un autre." @@ -28997,61 +28841,64 @@ msgid "Password must be different" msgstr "Le mot de passe doit être différent" #: ../../enterprise/include/functions_login.php:256 +#: ../../enterprise/include/functions_login.php:306 msgid "Password too short" msgstr "Mot de passe trop court" #: ../../enterprise/include/functions_login.php:268 +#: ../../enterprise/include/functions_login.php:313 msgid "Password must contain numbers" msgstr "Le mot de passe doit contenir des chiffres" #: ../../enterprise/include/functions_login.php:281 +#: ../../enterprise/include/functions_login.php:321 msgid "Password must contain symbols" msgstr "Le mot de passe doit contenir des symboles." -#: ../../enterprise/include/functions_login.php:304 +#: ../../enterprise/include/functions_login.php:339 msgid "Invalid old password" msgstr "Mot de passe ancien invalide" -#: ../../enterprise/include/functions_login.php:341 +#: ../../enterprise/include/functions_login.php:376 msgid "Password confirm does not match" msgstr "Les mots de passe ne concordent pas." -#: ../../enterprise/include/functions_login.php:348 +#: ../../enterprise/include/functions_login.php:383 msgid "Password empty" msgstr "Mot de passe vide" -#: ../../enterprise/include/functions_login.php:465 -#: ../../godmode/users/configure_user.php:2064 -#: ../../godmode/users/configure_user.php:2134 -#: ../../godmode/users/configure_user.php:2206 +#: ../../enterprise/include/functions_login.php:502 +#: ../../godmode/users/configure_user.php:2129 +#: ../../godmode/users/configure_user.php:2199 +#: ../../godmode/users/configure_user.php:2271 #: ../../include/ajax/double_auth.ajax.php:252 #: ../../include/ajax/double_auth.ajax.php:350 #: ../../include/ajax/double_auth.ajax.php:396 #: ../../include/ajax/double_auth.ajax.php:512 -#: ../../operation/users/user_edit.php:1086 -#: ../../operation/users/user_edit.php:1152 -#: ../../operation/users/user_edit.php:1223 ../../general/register.php:154 +#: ../../operation/users/user_edit.php:1160 +#: ../../operation/users/user_edit.php:1226 +#: ../../operation/users/user_edit.php:1297 ../../general/register.php:154 #: ../../general/logon_failed.php:18 msgid "Authentication error" msgstr "Erreur d'authentification" -#: ../../enterprise/include/functions_login.php:472 -#: ../../godmode/users/configure_user.php:2071 -#: ../../godmode/users/configure_user.php:2141 +#: ../../enterprise/include/functions_login.php:509 +#: ../../godmode/users/configure_user.php:2136 +#: ../../godmode/users/configure_user.php:2206 #: ../../include/ajax/double_auth.ajax.php:259 #: ../../include/ajax/double_auth.ajax.php:357 #: ../../include/ajax/double_auth.ajax.php:403 #: ../../include/ajax/double_auth.ajax.php:520 -#: ../../operation/users/user_edit.php:1093 -#: ../../operation/users/user_edit.php:1159 ../../general/register.php:161 +#: ../../operation/users/user_edit.php:1167 +#: ../../operation/users/user_edit.php:1233 ../../general/register.php:161 msgid "There was an error loading the data" msgstr "Erreur de chargement des données" -#: ../../enterprise/include/functions_login.php:481 -#: ../../godmode/users/configure_user.php:2149 -#: ../../godmode/users/configure_user.php:2227 -#: ../../operation/users/user_edit.php:1167 -#: ../../operation/users/user_edit.php:1243 ../../general/register.php:170 +#: ../../enterprise/include/functions_login.php:518 +#: ../../godmode/users/configure_user.php:2214 +#: ../../godmode/users/configure_user.php:2292 +#: ../../operation/users/user_edit.php:1241 +#: ../../operation/users/user_edit.php:1317 ../../general/register.php:170 msgid "Double authentication activation" msgstr "Activation de la double authentification" @@ -29101,8 +28948,8 @@ msgstr "Définition de plugin non valide" #: ../../enterprise/include/lib/NetworkManager.php:82 #: ../../godmode/setup/setup_ehorus.php:111 #: ../../godmode/setup/setup_integria.php:566 -#: ../../operation/users/user_edit.php:736 -#: ../../operation/users/user_edit.php:782 +#: ../../operation/users/user_edit.php:810 +#: ../../operation/users/user_edit.php:856 msgid "Test" msgstr "Test" @@ -29119,7 +28966,7 @@ msgid "Send firmware" msgstr "Envoyer firmware" #: ../../enterprise/include/lib/NetworkManager.php:88 -#: ../../godmode/setup/setup_general.php:408 +#: ../../godmode/setup/setup_general.php:489 msgid "On demand" msgstr "Sur demande" @@ -29155,42 +29002,42 @@ msgstr "Exécution d’un script à la demande" msgid "Montly" msgstr "Mensuel" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:838 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:852 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:839 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:853 msgid "There was a problem creating Action" msgstr "Il y a eu un problème lors de la création de l'Action" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:889 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:902 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:890 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:903 msgid "There was a problem updating Action" msgstr "Il y a eu un problème lors de la mise à jour de l'Action" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:938 -#: ../../enterprise/include/lib/AlertCorrelation.class.php:952 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:939 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:953 msgid "There was a problem deleting Action" msgstr "Il y a eu un problème lors de l'élimination de l'Action" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:993 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:994 msgid "There was a problem standby alert" msgstr "Il y a eu un problème avec l'alerte en stand-by" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1002 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1003 msgid "There was a problem standby off alert" msgstr "Il y a eu un problème avec l'alerte off en stand-by" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1045 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1046 msgid "There was a problem enabled alert" msgstr "Il y a eu un problème avec l'alerte activée" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1055 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1056 msgid "There was a problem disabled alert" msgstr "Il y a eu un problème avec l'alerte désactivée" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1111 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1112 msgid "Event group Recursive" msgstr "Récursif du group d'événement" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1126 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1127 #: ../../include/functions_reporting_html.php:1051 #: ../../include/functions_reporting_html.php:1317 #: ../../include/functions_reporting_html.php:2548 @@ -29198,25 +29045,25 @@ msgstr "Récursif du group d'événement" msgid "Count" msgstr "Nombre" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1129 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1130 msgid "Time window" msgstr "Fenêtre de temps" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1663 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1664 msgid "Failed to cleanup old rules." msgstr "Erreur d'élimination de normes vielles." -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1671 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1672 #, php-format msgid "Failed SQL: %s" msgstr "SQL échoué : %s" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1676 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1677 #, php-format msgid "Failed to apply rule: %s." msgstr "Application de la norme échouée : %s" -#: ../../enterprise/include/lib/AlertCorrelation.class.php:1824 +#: ../../enterprise/include/lib/AlertCorrelation.class.php:1825 msgid "any" msgstr "n’importe quel" @@ -29461,12 +29308,12 @@ msgid "Failed to overwrite node data: %s" msgstr "Erreur d'écrasement des données du noeud : %s" #: ../../enterprise/include/lib/Metaconsole/Node.php:1703 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3008 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3037 msgid "Final step" msgstr "Étape finale" #: ../../enterprise/include/lib/Metaconsole/Node.php:1704 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3009 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3038 msgid "Database merged" msgstr "Base de données fusionnée" @@ -29475,73 +29322,73 @@ msgid "Activating node" msgstr "Noeud d'activation" #: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:205 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:396 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:443 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:752 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:879 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1150 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1244 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1596 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1893 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2262 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3186 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3467 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3621 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3696 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3995 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4211 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:398 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:445 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:758 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:891 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1161 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1255 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1609 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1918 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2291 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3215 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3500 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3658 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3733 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4020 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4236 msgid "Connect node" msgstr "Noeud de connexion" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:659 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:665 msgid "Create table tmerge_error" msgstr "Créer table tmerge_error" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:685 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:691 msgid "Create table tmerge_steps" msgstr "Créer table tmerge_steps" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:710 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:716 msgid "Create table tmerge_queries" msgstr "Créer table tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:851 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:861 #, php-format msgid "%s console" msgstr "Console %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:856 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:866 msgid "Check cron task" msgstr "Vérifier tache cron" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:857 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:867 msgid "Please login into this node before using this feature" msgstr "Veuillez entrer ce noeud avant d'utiliser cette fonctionnalité" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:939 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:951 msgid "memory_limit current value" msgstr "Valeur actuelle de memory_limit" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:946 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:958 msgid "" "Check current packages, all nodes and metaconsole, are not in the same version" msgstr "" "Vérifiez les packages actuels, tous les noeuds et la Métaconsole ne sont pas " "dans la même version" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:958 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:970 msgid "Check Minor release, All nodes and metaconsole, do not have the same mr" msgstr "" "Vérifiez la mise à jour mineure, Tous les noeuds et la Métaconsole n'ont pas " "le même mr" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:970 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:982 msgid "Max size collection, all nodes and metaconsole, are not equal" msgstr "" "Taille maximale de la collection, tous les noeuds et la Métaconsole ne sont " "pas égales" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:995 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1007 #, php-format msgid "" "Post max size, nodes cannot be smaller than the size of the metaconsole %s" @@ -29549,7 +29396,7 @@ msgstr "" "Poster la taille maximale, les noeuds ne peuvent pas être plus petits que la " "taille de la Métaconsole %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1010 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1022 #, php-format msgid "" "Upload max file size, nodes cannot be smaller than the size of the metaconsole " @@ -29558,241 +29405,241 @@ msgstr "" "Télécharger la taille maximale du fichier, les noeuds ne peuvent pas être plus " "petits que la taille de la Métaconsole %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1072 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1088 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1084 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1100 msgid "Problems with the backup directory" msgstr "Problèmes avec le répertoire de sauvegarde" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1073 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1085 msgid "Cannot create \"merge_backups\" folder in attachment directory" msgstr "Ne peut pas créer le dossier « merge_backups » dans un répertoire ajouté" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1089 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1101 msgid "The \"merge_backpus\" directory does not have the correct permissions" msgstr "Le répertoire « merge_backups » n'a pas les permissions correctes" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1099 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1111 msgid "Extension ZIP" msgstr "Extension ZIP" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1100 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1112 msgid "The ZIP extension is not loaded, please install this dependency" msgstr "L'extension ZIP n'est pas chargée, veuillez installez cette dépendance" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1201 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1212 msgid "Inserts backups, disable foreings keys, exceptions in tmerge_queries" msgstr "" "Entrez les sauvegardes, désactivez les clés externes, exceptions dans " "tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1227 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1238 msgid "Resets foreing keys and exceptions and ends the merge preparation process" msgstr "" "Réinitialise les clés et les exceptions avant et termine le processus de " "préparation de la fusion" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1274 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1285 msgid "Enable exceptions in tmerge_queries" msgstr "Activer exceptions dans tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1298 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1309 msgid "Enable foreing keys in tmerge_queries" msgstr "Activer clés externes dans tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1577 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1862 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1590 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1887 msgid "Preparation of all nodes for the table merge process" msgstr "Préparation pour tous les noeuds pour la processus de fusion de table" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1653 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1666 msgid "This table does not have the id" msgstr "Cette table n'a pas d'ID" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1654 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1667 msgid "Prepare merge request" msgstr "Préparer requête de fusion" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:1980 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2005 msgid "Inserts truncate, autoincrement and inserts in tmerge_queries" msgstr "Inserts tronqués, auto-incrémentation et inserts dans tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2150 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2179 msgid "Inserts updates in tmerge_queries" msgstr "Mises à jour d'inserts dans tmerge_queries" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2187 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2216 msgid "Merging collections files" msgstr "Fusion de fichiers de collections" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2243 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2389 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2560 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3173 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2272 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2418 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2589 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3202 #, php-format msgid "Api call: %s" msgstr "Appelle API : %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2301 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2302 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2330 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2331 msgid "Problems while backing up collections from: " msgstr "Problèmes lors de la sauvegarde de collections de : " -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2319 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2323 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2348 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2352 #, php-format msgid "Problems downloading collections from %s" msgstr "Problèmes lors du téléchargement de collections de %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2335 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2339 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2364 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2368 #, php-format msgid "Problems unzipping collection file from %s" msgstr "Problèmes lors de la décompression du fichier de collection depuis %s" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2618 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2647 msgid "Start phase merge" msgstr "Commencer étape de fusion" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2630 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2659 msgid "Create backups" msgstr "Créer des sauvegardes" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2698 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2699 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2727 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2728 msgid "Problems creating the backup conf agents" msgstr "Problèmes lors de la création des agents de configuration de sauvegarde" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2709 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2947 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3317 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2738 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2976 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3346 msgid "Class agent" msgstr "Agent de classe" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2733 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2745 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2762 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2774 msgid "Disable_foreing" msgstr "Disable_foreing" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2757 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2786 msgid "Truncate table" msgstr "Tronquer la table" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2775 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2804 msgid "Autoincrement" msgstr "Auto-incrément" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2787 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2816 msgid "Inserts" msgstr "Insertions" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2805 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2834 msgid "Disabling constraints" msgstr "Désactivant des contraintes" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2823 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2852 msgid "Updates" msgstr "Mises à jour" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2846 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2875 msgid "Restoring constraints" msgstr "Restorer des contraintes" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2864 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2893 msgid "Enable exceptions" msgstr "Activer des exceptions" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2882 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2911 msgid "Enable foreings keys" msgstr "Activer des clés externes" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2899 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2900 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2928 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2929 msgid "Update conf agent policies" msgstr "Mettre à jour des politiques d'agents" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2936 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2937 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2965 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2966 msgid "Error updating agent conf" msgstr "Mise à jour de la configuration de l'agent échouée" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2958 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2987 msgid "Synchronizing collections" msgstr "Synchronisant des collections" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2970 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2971 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:2999 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3000 msgid "Error synchronizing collections" msgstr "Synchronisation de collections échouée" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3067 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3096 msgid "Problems unzipping collections at: " msgstr "Problèmes lors de la décompression de collections dans : " -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3068 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3097 #, php-format msgid "File is not a valid zip file \"%s\"" msgstr "File n'est pas un fichier zip « %s » valide" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3226 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3255 msgid "Restoring database backup" msgstr "Restituant de la sauvegarde de la base de données" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3252 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4476 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3281 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4501 msgid "Problems creating the backup" msgstr "Problèmes lors de la création de la sauvegarde" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3265 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3294 msgid "Restore backups conf agents" msgstr "Restoration des agents de configuration de la sauvegarde" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3302 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3331 msgid "Problems restoring the backup conf agents" msgstr "Problèmes de la restoration des agents de configuration de la sauvegarde" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3304 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3333 #, php-format msgid "Agent \"%s\" with md5 file \"%s\"" msgstr "Agent « %s » avec fichier md5 « %s »" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3330 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3359 msgid "Restore collections" msgstr "Restorer les collections" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3345 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3346 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3374 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3375 msgid "Error Synch collections" msgstr "Erreur de synchronisation des collections" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3563 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3803 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3596 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3828 msgid "Insert info steps" msgstr "Inséree étapes d'information" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3728 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3745 msgid "Node not ready" msgstr "Noeud non préparé" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3729 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3746 msgid "Pending to be unified" msgstr "Pendant d'unification" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3962 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3967 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4019 -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4024 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3987 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:3992 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4044 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4049 msgid "Initialize" msgstr "Initialiser" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4158 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4183 msgid "Backup" msgstr "Sauvegarde" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4188 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4213 msgid "Applying" msgstr "En application" -#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4407 +#: ../../enterprise/include/lib/Metaconsole/MergeQueue.php:4432 msgid "Error updating events" msgstr "Erreur de mise à jour d'événements" @@ -29932,37 +29779,37 @@ msgstr "Politique déjà définie : « %s »" #: ../../enterprise/include/functions_events.php:40 #: ../../godmode/events/event_filter.php:139 -#: ../../godmode/events/event_edit_filter.php:367 +#: ../../godmode/events/event_edit_filter.php:377 #: ../../include/lib/Dashboard/Widgets/events_list.php:389 #: ../../operation/events/events.php:1688 ../../operation/events/events.php:2325 msgid "Event status" msgstr "État des événements" #: ../../enterprise/include/functions_events.php:101 -#: ../../godmode/events/event_edit_filter.php:440 +#: ../../godmode/events/event_edit_filter.php:450 #: ../../operation/events/events.php:1964 msgid "User ack." msgstr "Confirmation de l'utilisateur" #: ../../enterprise/include/functions_events.php:111 -#: ../../godmode/events/event_edit_filter.php:495 +#: ../../godmode/events/event_edit_filter.php:505 msgid "Date from" msgstr "Date de début" #: ../../enterprise/include/functions_events.php:121 -#: ../../godmode/events/event_edit_filter.php:498 +#: ../../godmode/events/event_edit_filter.php:508 msgid "Date to" msgstr "Date de fin" #: ../../enterprise/include/functions_events.php:131 -#: ../../godmode/events/event_edit_filter.php:484 -#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4787 +#: ../../godmode/events/event_edit_filter.php:494 +#: ../../mobile/operation/events.php:816 ../../include/functions_events.php:4766 #: ../../operation/events/events.php:1720 msgid "Repeated" msgstr "Répété" #: ../../enterprise/include/functions_events.php:141 -#: ../../godmode/events/event_edit_filter.php:644 +#: ../../godmode/events/event_edit_filter.php:654 #: ../../operation/events/events.php:2000 msgid "Alert events" msgstr "Événements d'alerte" @@ -29972,7 +29819,7 @@ msgid "Id source events" msgstr "Événements de source d'ID" #: ../../enterprise/include/functions_events.php:162 -#: ../../godmode/events/event_edit_filter.php:430 +#: ../../godmode/events/event_edit_filter.php:440 #: ../../mobile/operation/events.php:997 ../../include/functions_snmp.php:401 #: ../../include/class/SnmpConsole.class.php:467 #: ../../include/class/AuditLog.class.php:186 @@ -29989,13 +29836,13 @@ msgid "More than 5 tags" msgstr "Plus de 5 étiquettes" #: ../../enterprise/include/functions_events.php:184 -#: ../../godmode/events/event_edit_filter.php:539 +#: ../../godmode/events/event_edit_filter.php:549 #: ../../operation/events/events.php:2196 ../../operation/events/events.php:2199 msgid "Events with following tags" msgstr "Événements avec les étiquettes suivantes" #: ../../enterprise/include/functions_events.php:206 -#: ../../godmode/events/event_edit_filter.php:592 +#: ../../godmode/events/event_edit_filter.php:602 #: ../../operation/events/events.php:2197 ../../operation/events/events.php:2200 msgid "Events without following tags" msgstr "Événements sans les étiquettes suivantes" @@ -30010,52 +29857,52 @@ msgstr "Filtre actif" msgid "Active filters" msgstr "Filtres actifs" -#: ../../enterprise/include/functions_metaconsole.php:2863 +#: ../../enterprise/include/functions_metaconsole.php:2864 msgid "Agent alerts action does not exist in target node" msgstr "L'action des alertes d'agent n'existe pas dans le noeud cible" -#: ../../enterprise/include/functions_metaconsole.php:2870 +#: ../../enterprise/include/functions_metaconsole.php:2871 msgid "Agent alerts template does not exist in target node" msgstr "Le modèle d'alertes d'agent n'existe pas dans le noeud cible" -#: ../../enterprise/include/functions_metaconsole.php:2877 +#: ../../enterprise/include/functions_metaconsole.php:2878 msgid "Agent inventory does not exist in target node" msgstr "L'inventaire d'agent n'existe pas dans le noeud cible" -#: ../../enterprise/include/functions_metaconsole.php:2884 +#: ../../enterprise/include/functions_metaconsole.php:2885 msgid "Exists agent conf please remove configuration file from target node." msgstr "" "La configuration de l'agent existe déjà, veuillez éliminer le fichier de " "configuration du noeud cible." -#: ../../enterprise/include/functions_metaconsole.php:2891 +#: ../../enterprise/include/functions_metaconsole.php:2892 msgid "Agent collections does not exist in target node" msgstr "Les collections d'agents n'existent pas dans le noeud cible." -#: ../../enterprise/include/functions_metaconsole.php:2898 +#: ../../enterprise/include/functions_metaconsole.php:2899 msgid "Agent plugins does not exist in target node" msgstr "Les plugins d'agent n'existent pas dans le noeud cible." -#: ../../enterprise/include/functions_metaconsole.php:2905 +#: ../../enterprise/include/functions_metaconsole.php:2906 msgid "" "Agent policies definitions does not match with defined ones in target node" msgstr "" "Les definitions de politiques d'agents ne correspondent avec ceux-ci du noeud " "cible." -#: ../../enterprise/include/functions_metaconsole.php:2912 +#: ../../enterprise/include/functions_metaconsole.php:2913 msgid "Agent group does not exist in target node" msgstr "Le group d'agents n'existe pas dans le noeud cible" -#: ../../enterprise/include/functions_metaconsole.php:2919 +#: ../../enterprise/include/functions_metaconsole.php:2920 msgid "Agent already exists in target node" msgstr "L'agent existe déjà dans le noeud cible" -#: ../../enterprise/include/functions_metaconsole.php:2943 +#: ../../enterprise/include/functions_metaconsole.php:2944 msgid "The agent: has not been added due to problems in the insertion" msgstr "L'agent : n'a pas été ajouté à cause des problèmes d'insert" -#: ../../enterprise/include/functions_metaconsole.php:2948 +#: ../../enterprise/include/functions_metaconsole.php:2949 msgid "The agent: has already been added to the migration queue" msgstr "L'agent : a été déjà ajouté à la file d'attente de migration" @@ -30068,6 +29915,7 @@ msgid "Subscription" msgstr "Abonnement" #: ../../enterprise/include/functions_license.php:120 +#: ../../include/functions_menu.php:837 #: ../../include/class/Diagnostics.class.php:1159 msgid "Support expires" msgstr "Le support expire" @@ -30090,12 +29938,24 @@ msgstr "Suivante IP disponible" #: ../../enterprise/include/functions_ipam.php:1341 #: ../../enterprise/tools/ipam/ipam_ajax.php:483 -#: ../../include/ajax/events.php:1673 +#: ../../include/ajax/events.php:1680 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:59 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:378 msgid "Details" msgstr "Détails" +#: ../../enterprise/include/functions_ipam.php:1386 +#: ../../enterprise/operation/services/services.list.php:639 +#: ../../godmode/agentes/inventory_manager.php:258 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:586 +#: ../../godmode/wizards/DiscoveryTaskList.class.php:676 +#: ../../include/ajax/module.php:1065 ../../include/functions_ui.php:1162 +#: ../../operation/visual_console/view.php:406 +#: ../../operation/agentes/group_view.php:221 +#: ../../operation/agentes/group_view.php:283 +msgid "Force" +msgstr "Forcer" + #: ../../enterprise/include/functions_ipam.php:1559 #: ../../include/class/SnmpConsole.class.php:189 #: ../../operation/snmpconsole/snmp_statistics.php:78 @@ -30104,7 +29964,7 @@ msgid "Statistics" msgstr "Statistiques" #: ../../enterprise/include/functions_ipam.php:1561 -#: ../../enterprise/include/functions_ipam.php:1995 +#: ../../enterprise/include/functions_ipam.php:2003 #: ../../enterprise/tools/ipam/ipam_excel.php:142 #: ../../enterprise/tools/ipam/ipam_excel.php:210 msgid "Total IPs" @@ -30115,7 +29975,7 @@ msgid "Occupied" msgstr "Occupé" #: ../../enterprise/include/functions_ipam.php:1573 -#: ../../enterprise/include/functions_ipam.php:2048 +#: ../../enterprise/include/functions_ipam.php:2056 #: ../../enterprise/tools/ipam/ipam_network.php:401 #: ../../enterprise/tools/ipam/ipam_ajax.php:406 #: ../../enterprise/tools/ipam/ipam_massive.php:103 @@ -30127,8 +29987,8 @@ msgid "Not managed" msgstr "Non géré" #: ../../enterprise/include/functions_ipam.php:1579 -#: ../../enterprise/include/functions_ipam.php:1734 -#: ../../enterprise/include/functions_ipam.php:2049 +#: ../../enterprise/include/functions_ipam.php:1742 +#: ../../enterprise/include/functions_ipam.php:2057 #: ../../enterprise/tools/ipam/ipam_network.php:402 #: ../../enterprise/tools/ipam/ipam_ajax.php:432 #: ../../enterprise/tools/ipam/ipam_massive.php:103 @@ -30143,17 +30003,17 @@ msgstr "Non réservé" msgid "Occupancy statistics" msgstr "Statistiques d'occupation" -#: ../../enterprise/include/functions_ipam.php:1646 +#: ../../enterprise/include/functions_ipam.php:1654 msgid "DESC" msgstr "Descendant" -#: ../../enterprise/include/functions_ipam.php:1647 +#: ../../enterprise/include/functions_ipam.php:1655 msgid "ASC" msgstr "Ascendant" -#: ../../enterprise/include/functions_ipam.php:1648 -#: ../../enterprise/include/functions_ipam.php:1649 -#: ../../enterprise/include/functions_ipam.php:2043 +#: ../../enterprise/include/functions_ipam.php:1656 +#: ../../enterprise/include/functions_ipam.php:1657 +#: ../../enterprise/include/functions_ipam.php:2051 #: ../../enterprise/tools/ipam/ipam_network.php:397 #: ../../enterprise/tools/ipam/ipam_ajax.php:364 #: ../../include/class/Diagnostics.class.php:735 @@ -30161,179 +30021,179 @@ msgstr "Ascendant" msgid "Hostname" msgstr "Nom d'hôte" -#: ../../enterprise/include/functions_ipam.php:1648 +#: ../../enterprise/include/functions_ipam.php:1656 msgid "A -> Z" msgstr "A -> Z" -#: ../../enterprise/include/functions_ipam.php:1649 +#: ../../enterprise/include/functions_ipam.php:1657 msgid "Z -> A" msgstr "Z -> A" -#: ../../enterprise/include/functions_ipam.php:1650 -#: ../../enterprise/include/functions_ipam.php:1651 +#: ../../enterprise/include/functions_ipam.php:1658 +#: ../../enterprise/include/functions_ipam.php:1659 msgid "Last check" msgstr "Dernière vérification" -#: ../../enterprise/include/functions_ipam.php:1650 +#: ../../enterprise/include/functions_ipam.php:1658 msgid "Newer -> Older" msgstr "Nouveau -> Ancien" -#: ../../enterprise/include/functions_ipam.php:1651 +#: ../../enterprise/include/functions_ipam.php:1659 msgid "Older -> Newer" msgstr "Ancien -> Nouveau" -#: ../../enterprise/include/functions_ipam.php:1678 +#: ../../enterprise/include/functions_ipam.php:1686 msgid "Exact address match" msgstr "Concordance exacte de l'adresse" -#: ../../enterprise/include/functions_ipam.php:1682 +#: ../../enterprise/include/functions_ipam.php:1690 msgid "S.O" msgstr "Système d'exploitation" -#: ../../enterprise/include/functions_ipam.php:1695 +#: ../../enterprise/include/functions_ipam.php:1703 msgid "Big" msgstr "Grand" -#: ../../enterprise/include/functions_ipam.php:1696 +#: ../../enterprise/include/functions_ipam.php:1704 msgid "Tiny" msgstr "Petit" -#: ../../enterprise/include/functions_ipam.php:1697 +#: ../../enterprise/include/functions_ipam.php:1705 msgid "Icons style" msgstr "Style des icônes" -#: ../../enterprise/include/functions_ipam.php:1714 +#: ../../enterprise/include/functions_ipam.php:1722 msgid "Show not alive hosts" msgstr "Afficher les hôtes inactifs" -#: ../../enterprise/include/functions_ipam.php:1722 +#: ../../enterprise/include/functions_ipam.php:1730 msgid "Show only managed addresses" msgstr "Afficher uniquement les adresses gérées" -#: ../../enterprise/include/functions_ipam.php:1730 +#: ../../enterprise/include/functions_ipam.php:1738 msgid "Reserved addresses" msgstr "Adresses réservées" -#: ../../enterprise/include/functions_ipam.php:1735 +#: ../../enterprise/include/functions_ipam.php:1743 msgid "Unreserved" msgstr "Non réservées" -#: ../../enterprise/include/functions_ipam.php:1745 +#: ../../enterprise/include/functions_ipam.php:1753 msgid "Last Contact" msgstr "Dernier contact" -#: ../../enterprise/include/functions_ipam.php:1788 +#: ../../enterprise/include/functions_ipam.php:1796 msgid "Filter options" msgstr "Options de filtre" -#: ../../enterprise/include/functions_ipam.php:1985 +#: ../../enterprise/include/functions_ipam.php:1993 msgid "id Network" msgstr "ID réseau" -#: ../../enterprise/include/functions_ipam.php:1990 +#: ../../enterprise/include/functions_ipam.php:1998 msgid "ID recon task" msgstr "ID de tache de reconnaissance" -#: ../../enterprise/include/functions_ipam.php:1991 +#: ../../enterprise/include/functions_ipam.php:1999 msgid "Scan Interval" msgstr "Scanner l'intervalle" -#: ../../enterprise/include/functions_ipam.php:1992 +#: ../../enterprise/include/functions_ipam.php:2000 msgid "Users Operator" msgstr "Opérateur d'utilisateurs" -#: ../../enterprise/include/functions_ipam.php:1993 +#: ../../enterprise/include/functions_ipam.php:2001 msgid "Total Ips" msgstr "Lps totales" -#: ../../enterprise/include/functions_ipam.php:1994 +#: ../../enterprise/include/functions_ipam.php:2002 msgid "Last Update" msgstr "Dernière mise à jour" -#: ../../enterprise/include/functions_ipam.php:1996 +#: ../../enterprise/include/functions_ipam.php:2004 #: ../../enterprise/tools/ipam/ipam_excel.php:143 #: ../../enterprise/tools/ipam/ipam_excel.php:211 msgid "Alive IPs" msgstr "IPs actives" -#: ../../enterprise/include/functions_ipam.php:1997 +#: ../../enterprise/include/functions_ipam.php:2005 #: ../../enterprise/tools/ipam/ipam_excel.php:144 #: ../../enterprise/tools/ipam/ipam_excel.php:212 msgid "Occupied %" msgstr "% occupé" -#: ../../enterprise/include/functions_ipam.php:1998 +#: ../../enterprise/include/functions_ipam.php:2006 #: ../../enterprise/tools/ipam/ipam_excel.php:145 #: ../../enterprise/tools/ipam/ipam_excel.php:213 msgid "Available %" msgstr "% disponible" -#: ../../enterprise/include/functions_ipam.php:1999 +#: ../../enterprise/include/functions_ipam.php:2007 #: ../../enterprise/tools/ipam/ipam_excel.php:146 #: ../../enterprise/tools/ipam/ipam_excel.php:214 msgid "Managed IPs" msgstr "IPs gérés" -#: ../../enterprise/include/functions_ipam.php:2000 +#: ../../enterprise/include/functions_ipam.php:2008 #: ../../enterprise/tools/ipam/ipam_excel.php:147 #: ../../enterprise/tools/ipam/ipam_excel.php:215 msgid "Managed %" msgstr "% géré" -#: ../../enterprise/include/functions_ipam.php:2001 +#: ../../enterprise/include/functions_ipam.php:2009 #: ../../enterprise/tools/ipam/ipam_excel.php:148 #: ../../enterprise/tools/ipam/ipam_excel.php:216 msgid "Unmanaged %" msgstr "% non géré" -#: ../../enterprise/include/functions_ipam.php:2002 +#: ../../enterprise/include/functions_ipam.php:2010 #: ../../enterprise/tools/ipam/ipam_excel.php:149 #: ../../enterprise/tools/ipam/ipam_excel.php:217 msgid "Reserved IPs" msgstr "IPs réservées" -#: ../../enterprise/include/functions_ipam.php:2003 +#: ../../enterprise/include/functions_ipam.php:2011 #: ../../enterprise/tools/ipam/ipam_excel.php:150 #: ../../enterprise/tools/ipam/ipam_excel.php:218 msgid "Reserved %" msgstr "% réservé" -#: ../../enterprise/include/functions_ipam.php:2004 +#: ../../enterprise/include/functions_ipam.php:2012 #: ../../enterprise/tools/ipam/ipam_excel.php:151 #: ../../enterprise/tools/ipam/ipam_excel.php:219 msgid "Not reserved %" msgstr "% non reservé" -#: ../../enterprise/include/functions_ipam.php:2047 +#: ../../enterprise/include/functions_ipam.php:2055 msgid "OS Name" msgstr "Nom du système d’exploitation" -#: ../../enterprise/include/functions_ipam.php:2050 +#: ../../enterprise/include/functions_ipam.php:2058 #: ../../operation/incidents/dashboard_detail_integriaims_incident.php:366 msgid "Created at" msgstr "Créé le" -#: ../../enterprise/include/functions_ipam.php:2051 +#: ../../enterprise/include/functions_ipam.php:2059 msgid "Last updated" msgstr "Dernière mise à jour" -#: ../../enterprise/include/functions_ipam.php:2052 +#: ../../enterprise/include/functions_ipam.php:2060 msgid "Last modified" msgstr "Dernière modification" -#: ../../enterprise/include/functions_ipam.php:2053 +#: ../../enterprise/include/functions_ipam.php:2061 msgid "Dhcp Leased" msgstr "Dhcp loué" -#: ../../enterprise/include/functions_ipam.php:2054 +#: ../../enterprise/include/functions_ipam.php:2062 msgid "Dhcp Leased Mode" msgstr "Mode loué Dhcp" -#: ../../enterprise/include/functions_ipam.php:2055 +#: ../../enterprise/include/functions_ipam.php:2063 msgid "Dhcp Leased Expiration" msgstr "Expiration louée par Dhcp" -#: ../../enterprise/include/functions_ipam.php:2056 +#: ../../enterprise/include/functions_ipam.php:2064 msgid "Mac address" msgstr "Adresse Mac" @@ -30403,21 +30263,21 @@ msgid "Module will be unlinked in the next application" msgstr "Le module sera dissocié lors de la suivante application" #: ../../enterprise/include/functions_policies.php:3738 -#: ../../godmode/agentes/configurar_agente.php:550 -#: ../../godmode/agentes/configurar_agente.php:771 +#: ../../godmode/agentes/configurar_agente.php:563 +#: ../../godmode/agentes/configurar_agente.php:784 #: ../../godmode/setup/snmp_wizard.php:31 msgid "SNMP Wizard" msgstr "Assistant du SNMP" #: ../../enterprise/include/functions_policies.php:3741 -#: ../../godmode/agentes/configurar_agente.php:560 -#: ../../godmode/agentes/configurar_agente.php:777 +#: ../../godmode/agentes/configurar_agente.php:573 +#: ../../godmode/agentes/configurar_agente.php:790 msgid "SNMP Interfaces wizard" msgstr "Assistant des interfaces SNMP" #: ../../enterprise/include/functions_policies.php:3744 -#: ../../godmode/agentes/configurar_agente.php:570 -#: ../../godmode/agentes/configurar_agente.php:783 +#: ../../godmode/agentes/configurar_agente.php:583 +#: ../../godmode/agentes/configurar_agente.php:796 msgid "WMI Wizard" msgstr "Assistant du WMI" @@ -30490,14 +30350,14 @@ msgstr "Vider le système d'exploitation" msgid "Copy of" msgstr "Copie de" -#: ../../enterprise/include/functions_ux_console.php:507 +#: ../../enterprise/include/functions_ux_console.php:517 #: ../../enterprise/operation/agentes/tag_view.php:901 #: ../../enterprise/operation/agentes/tag_view.php:911 #: ../../enterprise/operation/agentes/ux_console_view.php:102 #: ../../enterprise/operation/agentes/ux_console_view.php:297 -#: ../../enterprise/operation/agentes/ux_console_view.php:377 -#: ../../enterprise/operation/agentes/wux_console_view.php:352 -#: ../../include/functions_ui.php:6318 +#: ../../enterprise/operation/agentes/ux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:337 +#: ../../include/functions_ui.php:6322 msgid "Snapshot view" msgstr "Vue de l'instantané" @@ -30571,8 +30431,8 @@ msgstr "foi(s)" #: ../../include/functions_agents.php:2944 #: ../../include/functions_agents.php:2955 ../../include/functions_ui.php:1259 #: ../../include/class/AgentsAlerts.class.php:943 -#: ../../include/class/SnmpConsole.class.php:876 -#: ../../include/functions_reporting.php:12590 +#: ../../include/class/SnmpConsole.class.php:877 +#: ../../include/functions_reporting.php:12876 msgid "Alert not fired" msgstr "Alerte non déclenchée" @@ -30606,7 +30466,7 @@ msgid "(Adopted) (Unlinked)" msgstr "(Adoptés) (Non liés)" #: ../../enterprise/operation/agentes/policy_view.php:457 -#: ../../godmode/agentes/module_manager.php:1146 +#: ../../godmode/agentes/module_manager.php:1147 msgid "Non initialized module" msgstr "Module non initialisé" @@ -30631,16 +30491,16 @@ msgstr "Module non initialisé" #: ../../operation/agentes/status_monitor.php:1717 #: ../../operation/agentes/status_monitor.php:1727 #: ../../operation/agentes/status_monitor.php:1733 -#: ../../operation/agentes/pandora_networkmap.view.php:1819 -#: ../../operation/agentes/pandora_networkmap.view.php:1824 -#: ../../operation/agentes/pandora_networkmap.view.php:1829 +#: ../../operation/agentes/pandora_networkmap.view.php:1823 +#: ../../operation/agentes/pandora_networkmap.view.php:1828 +#: ../../operation/agentes/pandora_networkmap.view.php:1833 #: ../../operation/search_modules.php:141 ../../operation/search_modules.php:149 #: ../../operation/search_modules.php:157 msgid "Last status" msgstr "Dernier état" #: ../../enterprise/operation/agentes/tag_view.php:41 -#: ../../enterprise/operation/menu.php:174 +#: ../../enterprise/operation/menu.php:161 msgid "Tag view" msgstr "Vue des étiquettes" @@ -30653,7 +30513,7 @@ msgstr "Vue des étiquettes" #: ../../operation/agentes/interface_view.php:76 #: ../../operation/agentes/status_monitor.php:108 #: ../../operation/agentes/group_view.php:102 -#: ../../operation/agentes/tactical.php:82 ../../operation/menu.php:39 +#: ../../operation/agentes/tactical.php:83 ../../operation/menu.php:39 msgid "Views" msgstr "Vues" @@ -30752,6 +30612,18 @@ msgstr "Type de données" msgid "Agent custom fields" msgstr "Champs d'agent personnalisés" +#: ../../enterprise/operation/agentes/tag_view.php:578 +#: ../../enterprise/operation/services/services.treeview_services.php:255 +#: ../../enterprise/tools/ipam/ipam_supernet_treeview.php:93 +#: ../../godmode/groups/group_list.php:1039 +#: ../../include/functions_inventory.php:301 +#: ../../include/class/Heatmap.class.php:820 +#: ../../include/lib/Dashboard/Widgets/tree_view.php:648 +#: ../../operation/tree.php:415 ../../operation/tree.php:446 +#: ../../operation/network/network_report.php:317 +msgid "No data found" +msgstr "Aucune donnée disponible" + #: ../../enterprise/operation/agentes/tag_view.php:647 #: ../../operation/agentes/estado_agente.php:894 msgid "Remote config" @@ -30767,7 +30639,7 @@ msgstr "Configuration à distance" #: ../../include/ajax/module.php:996 #: ../../include/class/NetworkMap.class.php:3041 #: ../../include/lib/Dashboard/Widgets/custom_graph.php:340 -#: ../../include/functions_events.php:4332 +#: ../../include/functions_events.php:4311 #: ../../operation/agentes/status_monitor.php:1359 #: ../../operation/search_modules.php:37 msgid "Graph" @@ -30776,7 +30648,7 @@ msgstr "Graphique" #: ../../enterprise/operation/agentes/tag_view.php:683 #: ../../godmode/agentes/status_monitor_custom_fields.php:109 #: ../../godmode/agentes/status_monitor_custom_fields.php:151 -#: ../../godmode/agentes/module_manager.php:906 +#: ../../godmode/agentes/module_manager.php:907 #: ../../operation/agentes/status_monitor.php:1364 msgid "Warn" msgstr "Alerte" @@ -30784,81 +30656,81 @@ msgstr "Alerte" #: ../../enterprise/operation/agentes/tag_view.php:963 #: ../../mobile/operation/modules.php:542 ../../mobile/operation/modules.php:605 #: ../../include/functions_modules.php:2874 -#: ../../include/functions_modules.php:4136 ../../include/functions_events.php:70 +#: ../../include/functions_modules.php:4211 ../../include/functions_events.php:70 #: ../../operation/agentes/status_monitor.php:1585 #: ../../operation/search_modules.php:108 ../../operation/events/events.php:716 msgid "NOT INIT" msgstr "NON INITIALISÉ" #: ../../enterprise/operation/agentes/tag_view.php:1103 -#: ../../include/functions_reporting.php:12712 -#: ../../include/functions_reporting.php:12721 +#: ../../include/functions_reporting.php:12998 +#: ../../include/functions_reporting.php:13007 #, php-format msgid "%d Total modules" msgstr "%d modules au total" #: ../../enterprise/operation/agentes/tag_view.php:1104 -#: ../../include/functions_reporting.php:12713 +#: ../../include/functions_reporting.php:12999 #, php-format msgid "%d Modules in normal status" msgstr "%d modules en état normal" #: ../../enterprise/operation/agentes/tag_view.php:1105 -#: ../../include/functions_reporting.php:12714 +#: ../../include/functions_reporting.php:13000 #, php-format msgid "%d Modules in critical status" msgstr "%d modules en état critique" #: ../../enterprise/operation/agentes/tag_view.php:1106 -#: ../../include/functions_reporting.php:12715 +#: ../../include/functions_reporting.php:13001 #, php-format msgid "%d Modules in warning status" msgstr "%d modules en état d'alerte" #: ../../enterprise/operation/agentes/tag_view.php:1107 -#: ../../include/functions_reporting.php:12716 +#: ../../include/functions_reporting.php:13002 #, php-format msgid "%d Modules in unknown status" msgstr "%d modules en état inconnu" #: ../../enterprise/operation/agentes/tag_view.php:1108 -#: ../../include/functions_reporting.php:12717 +#: ../../include/functions_reporting.php:13003 #, php-format msgid "%d Modules in not init status" msgstr "%d modules en état non initialisés" #: ../../enterprise/operation/agentes/ver_agente.php:72 -#: ../../operation/agentes/ver_agente.php:1029 +#: ../../operation/agentes/ver_agente.php:1035 msgid "Main IP" msgstr "Adresse IP principale" #: ../../enterprise/operation/agentes/ver_agente.php:78 -#: ../../include/functions_events.php:4259 -#: ../../operation/agentes/ver_agente.php:1041 +#: ../../include/functions_events.php:4238 +#: ../../operation/agentes/ver_agente.php:1047 msgid "Last remote contact" msgstr "Dernier contact à distance" #: ../../enterprise/operation/agentes/ver_agente.php:122 -#: ../../operation/agentes/ver_agente.php:1086 +#: ../../operation/agentes/ver_agente.php:1092 msgid "Monitors down" msgstr "Moniteurs hors service" #: ../../enterprise/operation/agentes/ver_agente.php:164 #: ../../mobile/operation/groups.php:174 #: ../../include/lib/Dashboard/Widgets/system_group_status.php:600 -#: ../../operation/agentes/ver_agente.php:1127 +#: ../../operation/agentes/ver_agente.php:1133 msgid "Alerts fired" msgstr "Alertes déclenchées" -#: ../../enterprise/operation/agentes/ver_agente.php:258 +#: ../../enterprise/operation/agentes/ver_agente.php:235 msgid "URL Route Analyzer" msgstr "Analyseur d’itinéraire d’URL" -#: ../../enterprise/operation/agentes/ver_agente.php:274 +#: ../../enterprise/operation/agentes/ver_agente.php:251 msgid "UX Console" msgstr "Console UX" -#: ../../enterprise/operation/agentes/ver_agente.php:290 +#: ../../enterprise/operation/agentes/ver_agente.php:267 msgid "WUX Console" msgstr "Console WUX" @@ -30874,15 +30746,6 @@ msgstr "Aucun agent sélectionné" msgid "Route not found" msgstr "Itinéraire introuvable" -#: ../../enterprise/operation/agentes/agent_inventory.php:73 -msgid "This agent has not modules inventory" -msgstr "Cet agent n'a pas de modules d'inventaire." - -#: ../../enterprise/operation/agentes/agent_inventory.php:193 -#: ../../enterprise/operation/agentes/agent_inventory.php:194 -msgid "Diff view" -msgstr "Affichage des différence" - #: ../../enterprise/operation/agentes/ux_console_view.php:43 msgid "No ux transaction selected." msgstr "Aucune transaction ux sélectionnée." @@ -30892,12 +30755,12 @@ msgid "No ux transactions found." msgstr "Aucune transaction ux trouvée." #: ../../enterprise/operation/agentes/ux_console_view.php:133 -#: ../../enterprise/operation/agentes/wux_console_view.php:261 +#: ../../enterprise/operation/agentes/wux_console_view.php:246 msgid "Transaction" msgstr "Transaction" #: ../../enterprise/operation/agentes/ux_console_view.php:142 -#: ../../enterprise/operation/agentes/wux_console_view.php:286 +#: ../../enterprise/operation/agentes/wux_console_view.php:271 msgid "Show transaction" msgstr "Afficher la transaction" @@ -30906,12 +30769,12 @@ msgid "Execution results for transaction " msgstr "Résultats d’exécution de la transaction " #: ../../enterprise/operation/agentes/ux_console_view.php:266 -#: ../../enterprise/operation/agentes/wux_console_view.php:332 +#: ../../enterprise/operation/agentes/wux_console_view.php:317 msgid "Global results" msgstr "Résultats globaux" -#: ../../enterprise/operation/agentes/ux_console_view.php:332 -#: ../../enterprise/operation/agentes/wux_console_view.php:570 +#: ../../enterprise/operation/agentes/ux_console_view.php:339 +#: ../../enterprise/operation/agentes/wux_console_view.php:545 msgid "Transaction history" msgstr "Historique des transactions" @@ -30925,63 +30788,63 @@ msgstr "Aucune transaction WUX sélectionnée" msgid "Phase modules not found" msgstr "Modules de phases introuvables" -#: ../../enterprise/operation/agentes/wux_console_view.php:224 +#: ../../enterprise/operation/agentes/wux_console_view.php:209 msgid "Selected transaction has no stats" msgstr "La transaction sélectionnée n’a pas de statistiques" -#: ../../enterprise/operation/agentes/wux_console_view.php:242 +#: ../../enterprise/operation/agentes/wux_console_view.php:227 msgid "No WUX transactions found." msgstr "Aucune transaction WUX trouvée." -#: ../../enterprise/operation/agentes/wux_console_view.php:357 +#: ../../enterprise/operation/agentes/wux_console_view.php:342 msgid "Failed: " msgstr "Raté : " -#: ../../enterprise/operation/agentes/wux_console_view.php:357 -#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../enterprise/operation/agentes/wux_console_view.php:342 +#: ../../enterprise/operation/agentes/wux_console_view.php:363 #: ../../godmode/setup/performance.php:188 #: ../../godmode/setup/performance.php:243 ../../general/logon_ok.php:193 msgid "ago" msgstr "il y a" -#: ../../enterprise/operation/agentes/wux_console_view.php:369 -#: ../../enterprise/operation/agentes/wux_console_view.php:373 +#: ../../enterprise/operation/agentes/wux_console_view.php:354 +#: ../../enterprise/operation/agentes/wux_console_view.php:358 #: ../../include/functions_alerts.php:681 msgid "Unknown status" msgstr "État inconnu" -#: ../../enterprise/operation/agentes/wux_console_view.php:378 +#: ../../enterprise/operation/agentes/wux_console_view.php:363 msgid "Success: " msgstr "Succès : " -#: ../../enterprise/operation/agentes/wux_console_view.php:384 +#: ../../enterprise/operation/agentes/wux_console_view.php:369 msgid "Total transaction time: " msgstr "Temps total de transaction : " -#: ../../enterprise/operation/agentes/wux_console_view.php:398 +#: ../../enterprise/operation/agentes/wux_console_view.php:383 #, php-format msgid "Execution results for transaction %s" msgstr "Résultats d’exécution pour les %s de transaction" -#: ../../enterprise/operation/agentes/wux_console_view.php:527 +#: ../../enterprise/operation/agentes/wux_console_view.php:503 msgid "View all stats" msgstr "Voir toutes les statistiques" -#: ../../enterprise/operation/agentes/wux_console_view.php:595 -#: ../../include/class/SnmpConsole.class.php:923 -#: ../../include/class/SnmpConsole.class.php:924 ../../operation/menu.php:250 -#: ../../operation/menu.php:252 ../../operation/events/events.php:560 +#: ../../enterprise/operation/agentes/wux_console_view.php:570 +#: ../../include/class/SnmpConsole.class.php:924 +#: ../../include/class/SnmpConsole.class.php:925 ../../operation/menu.php:254 +#: ../../operation/menu.php:256 ../../operation/events/events.php:560 #: ../../operation/events/events.php:825 msgid "Show more" msgstr "Afficher plus" -#: ../../enterprise/operation/agentes/wux_console_view.php:611 +#: ../../enterprise/operation/agentes/wux_console_view.php:586 msgid "Invalid transaction." msgstr "Transaction invalide." #: ../../enterprise/operation/log/elasticsearch_interface.php:39 #: ../../enterprise/operation/log/log_viewer.php:392 -#: ../../enterprise/operation/menu.php:194 +#: ../../enterprise/operation/menu.php:181 msgid "Elasticsearch Interface" msgstr "Interface Elasticsearch" @@ -31006,6 +30869,14 @@ msgstr "" msgid "Log sources" msgstr "Sources de journaux" +#: ../../enterprise/operation/log/log_viewer.php:459 +#: ../../godmode/modules/manage_inventory_modules.php:72 +#: ../../godmode/modules/manage_inventory_modules_form.php:48 +#: ../../godmode/netflow/nf_edit.php:47 +#: ../../operation/netflow/nf_live_view.php:141 +msgid "Not supported in Windows systems" +msgstr "Pas pris en charge sur Windows" + #: ../../enterprise/operation/log/log_viewer.php:479 msgid "All words" msgstr "Tous les mots" @@ -31125,41 +30996,16 @@ msgstr "Erreur en supprimant le modèle" msgid "Error update model" msgstr "Erreur lors de la mise à jour du modèle" -#: ../../enterprise/operation/menu.php:32 ../../operation/menu.php:151 +#: ../../enterprise/operation/menu.php:19 ../../operation/menu.php:155 msgid "Cluster View" msgstr "Vue de grappe" -#: ../../enterprise/operation/menu.php:61 -#: ../../operation/agentes/ver_agente.php:1695 -#: ../../operation/agentes/ver_agente.php:1894 +#: ../../enterprise/operation/menu.php:48 +#: ../../operation/agentes/ver_agente.php:1713 +#: ../../operation/agentes/ver_agente.php:1912 msgid "SAP view" msgstr "Vue SAP" -#: ../../enterprise/operation/inventory/inventory.php:203 -#: ../../include/chart_generator.php:125 ../../operation/agentes/stat_win.php:51 -#: ../../operation/agentes/stat_win.php:176 -#: ../../operation/agentes/realtime_win.php:51 -#: ../../operation/agentes/interface_traffic_graph_win.php:54 -msgid "There was a problem connecting with the node" -msgstr "Problème de connexion avec le nœud" - -#: ../../enterprise/operation/inventory/inventory.php:289 -msgid "You must select at least one filter." -msgstr "Vous devez sélectionner au moins un filtre." - -#: ../../enterprise/operation/inventory/inventory.php:434 -#: ../../godmode/reporting/reporting_builder.item_editor.php:2193 -msgid "Last" -msgstr "Dernier" - -#: ../../enterprise/operation/inventory/inventory.php:438 -msgid "Order by agent" -msgstr "Ordonner par agent" - -#: ../../enterprise/operation/inventory/inventory.php:482 -msgid "Export this list to CSV" -msgstr "Exporter cette liste au format CSV" - #: ../../enterprise/operation/services/services.service.php:63 #: ../../enterprise/operation/services/services.service_map.php:78 #: ../../include/lib/Dashboard/Widgets/service_map.php:192 @@ -31312,7 +31158,7 @@ msgstr "Résumé des éléments de service" #: ../../enterprise/operation/services/massive/service.create.elements.php:531 #: ../../enterprise/operation/services/massive/service.edit.elements.php:294 #: ../../include/functions_visual_map_editor.php:1148 -#: ../../include/rest-api/models/VisualConsole/Item.php:2527 +#: ../../include/rest-api/models/VisualConsole/Item.php:2528 msgid "Critical weight" msgstr "Poids critique" @@ -31320,7 +31166,7 @@ msgstr "Poids critique" #: ../../enterprise/operation/services/massive/service.create.elements.php:544 #: ../../enterprise/operation/services/massive/service.edit.elements.php:307 #: ../../include/functions_visual_map_editor.php:1174 -#: ../../include/rest-api/models/VisualConsole/Item.php:2541 +#: ../../include/rest-api/models/VisualConsole/Item.php:2542 msgid "Warning weight" msgstr "Poids d'alerte" @@ -31509,7 +31355,7 @@ msgid "Create Service" msgstr "Créer un service" #: ../../enterprise/operation/services/services.treeview_services.php:256 -#: ../../godmode/groups/group_list.php:1035 +#: ../../godmode/groups/group_list.php:1040 msgid "Found groups" msgstr "Groupes trouvés" @@ -31565,7 +31411,7 @@ msgid "Config" msgstr "Configuration" #: ../../enterprise/operation/services/services.table_services.php:45 -#: ../../godmode/groups/group_list.php:355 +#: ../../godmode/groups/group_list.php:360 msgid "Table view" msgstr "Vue de la table" @@ -31659,7 +31505,7 @@ msgstr "Vue d'arbre super-réseau" msgid "Operation View" msgstr "Vue d'opération" -#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:396 +#: ../../enterprise/tools/ipam/ipam.php:449 ../../godmode/menu.php:399 #: ../../godmode/setup/file_manager.php:56 msgid "Admin tools" msgstr "Outils d'administration" @@ -31988,7 +31834,7 @@ msgstr "Supprimer le réseau" #: ../../enterprise/tools/ipam/ipam_vlan_wizard.php:410 #: ../../operation/agentes/interface_view.functions.php:93 #: ../../operation/agentes/interface_view.functions.php:131 -#: ../../operation/agentes/ver_agente.php:1422 +#: ../../operation/agentes/ver_agente.php:1428 msgid "Interfaces" msgstr "Interfaces" @@ -32069,7 +31915,7 @@ msgid "Network name already exists in supernet %s (%s)" msgstr "Nom du réseau existe déjà dans le super-réseau %s (%s)" #: ../../enterprise/tools/ipam/ipam_action.php:445 -#: ../../operation/agentes/pandora_networkmap.view.php:1652 +#: ../../operation/agentes/pandora_networkmap.view.php:1656 msgid "Could not be updated." msgstr "Erreur de mise à jour" @@ -32080,7 +31926,7 @@ msgid "Successfully updated." msgstr "Mis à jour correctement" #: ../../enterprise/tools/ipam/ipam_action.php:456 -#: ../../include/functions_reporting.php:2880 +#: ../../include/functions_reporting.php:2998 msgid "No changes found." msgstr "Aucun changement retrouvé." @@ -32092,7 +31938,7 @@ msgstr "Erreur de création : nom en blanc." #: ../../enterprise/tools/ipam/ipam_network_location_config.php:72 #: ../../godmode/modules/manage_nc_groups.php:119 #: ../../godmode/netflow/nf_edit_form.php:140 ../../godmode/setup/news.php:108 -#: ../../godmode/events/event_edit_filter.php:233 +#: ../../godmode/events/event_edit_filter.php:243 msgid "Not updated. Error updating data" msgstr "Erreur de mise à jour des données" @@ -32184,7 +32030,7 @@ msgid "Executing command: %s" msgstr "Exécution de la commande : %s" #: ../../enterprise/tools/ipam/ipam_ajax.php:551 -#: ../../include/functions_events.php:5730 +#: ../../include/functions_events.php:5743 msgid "Execute again" msgstr "Exécuter à nouveau" @@ -32577,7 +32423,7 @@ msgid "Visit our privacy policy for more information" msgstr "Visitez notre politique de confidentialité pour plus d'informations" #: ../../update_manager_client/views/register.php:78 -#: ../../include/class/Diagnostics.class.php:1913 +#: ../../include/class/Diagnostics.class.php:1918 msgid "Your email" msgstr "Votre email" @@ -32999,65 +32845,79 @@ msgstr "" "Vous pouvez obtenir plus de resources dans notre bibliothèque de ressources publiques" -#: ../../extensions/api_checker.php:111 ../../extensions/api_checker.php:248 +#: ../../extensions/api_checker.php:190 ../../extensions/api_checker.php:332 msgid "API checker" msgstr "Vérificateur API" -#: ../../extensions/api_checker.php:128 +#: ../../extensions/api_checker.php:207 #, php-format msgid "%s Console URL" msgstr "%s URL de la console" -#: ../../extensions/api_checker.php:133 +#: ../../extensions/api_checker.php:212 +#: ../../godmode/users/configure_user.php:1049 +#: ../../godmode/users/configure_user.php:1075 +#: ../../operation/users/user_edit.php:271 +#: ../../operation/users/user_edit.php:310 +msgid "API Token" +msgstr "Jeton d’API" + +#: ../../extensions/api_checker.php:212 +msgid "Use API Token instead API Pass, User and Password." +msgstr "" +"Utilisez plutôt le jeton API au lieu de API Pass, l’utilisateur et mot de " +"passe." + +#: ../../extensions/api_checker.php:217 msgid "API Pass" msgstr "Mot de passe de l'API" -#: ../../extensions/api_checker.php:151 +#: ../../extensions/api_checker.php:235 msgid "Action (get or set)" msgstr "Action (obtenir ou définir)" -#: ../../extensions/api_checker.php:166 +#: ../../extensions/api_checker.php:250 msgid "ID 2" msgstr "Identifiant 2" -#: ../../extensions/api_checker.php:171 +#: ../../extensions/api_checker.php:255 msgid "Return Type" msgstr "Type de retour" -#: ../../extensions/api_checker.php:181 +#: ../../extensions/api_checker.php:265 msgid "Other Mode" msgstr "Autre mode" -#: ../../extensions/api_checker.php:189 +#: ../../extensions/api_checker.php:273 msgid "Raw URL" msgstr "URL brute" -#: ../../extensions/api_checker.php:200 +#: ../../extensions/api_checker.php:284 msgid "Call parameters" msgstr "Paramètres d'appel" -#: ../../extensions/api_checker.php:200 +#: ../../extensions/api_checker.php:284 msgid "Action: get Operation: module_last_value id: 63" msgstr "Action : get Operation : module_last_value id : 63" -#: ../../extensions/api_checker.php:207 +#: ../../extensions/api_checker.php:291 msgid "Custom URL" msgstr "URL personnalisée" -#: ../../extensions/api_checker.php:213 +#: ../../extensions/api_checker.php:297 msgid "Call" msgstr "Appel" -#: ../../extensions/api_checker.php:222 ../../extensions/api_checker.php:239 +#: ../../extensions/api_checker.php:306 ../../extensions/api_checker.php:323 msgid "Show URL" msgstr "Afficher URL" -#: ../../extensions/api_checker.php:235 +#: ../../extensions/api_checker.php:319 msgid "Hide URL" msgstr "Cacher URL" #: ../../extensions/db_status.php:25 ../../extensions/db_status.php:453 -#: ../../godmode/menu.php:453 +#: ../../godmode/menu.php:456 msgid "DB Schema check" msgstr "Vérifier Schéma BD" @@ -33224,7 +33084,7 @@ msgstr "Exécuter SQL" msgid "Error querying database node" msgstr "Erreur lors de l’interrogation du nœud de base de données" -#: ../../extensions/dbmanager.php:307 ../../godmode/menu.php:453 +#: ../../extensions/dbmanager.php:307 ../../godmode/menu.php:456 msgid "DB interface" msgstr "Interface de la BD" @@ -33265,7 +33125,7 @@ msgstr "" "Les groupes secondaires et les sous-groupes d'agents seront pris en compte." #: ../../extensions/agents_modules.php:750 -#: ../../include/functions_reporting.php:3154 +#: ../../include/functions_reporting.php:3272 msgid "There are no agents with modules" msgstr "Aucun agent avec des modules" @@ -33503,7 +33363,7 @@ msgstr "" msgid "There are no defined groups or module groups" msgstr "Aucun groupe ou groupe de modules défini" -#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:112 +#: ../../extensions/module_groups.php:422 ../../godmode/menu.php:113 #: ../../godmode/reporting/reporting_builder.item_editor.php:86 #: ../../include/lib/Dashboard/Widgets/tree_view.php:330 #: ../../operation/tree.php:102 @@ -33696,6 +33556,61 @@ msgstr "" msgid "There are no defined component groups" msgstr "Aucun groupe de composants défini" +#: ../../godmode/modules/manage_inventory_modules.php:40 +msgid "To manage inventory plugin you must activate centralized management" +msgstr "Pour gérer le plugin d’inventaire, activez la gestion centralisée" + +#: ../../godmode/modules/manage_inventory_modules.php:121 +msgid "Successfully created inventory module" +msgstr "Module d'inventaire créé correctement" + +#: ../../godmode/modules/manage_inventory_modules.php:122 +msgid "Error creating inventory module" +msgstr "Erreur de création du module d'inventaire" + +#: ../../godmode/modules/manage_inventory_modules.php:168 +#: ../../godmode/modules/manage_inventory_modules.php:189 +#: ../../godmode/agentes/inventory_manager.php:100 +msgid "Successfully deleted inventory module" +msgstr "Module d'inventaire supprimé correctement" + +#: ../../godmode/modules/manage_inventory_modules.php:169 +#: ../../godmode/modules/manage_inventory_modules.php:190 +#: ../../godmode/agentes/inventory_manager.php:102 +msgid "Error deleting inventory module" +msgstr "Erreur de suppression du module d'inventaire" + +#: ../../godmode/modules/manage_inventory_modules.php:281 +#: ../../godmode/modules/manage_inventory_modules_form.php:118 +msgid "Interpreter" +msgstr "Interprète" + +#: ../../godmode/modules/manage_inventory_modules.php:290 +msgid "No inventory modules defined" +msgstr "Aucun module d'inventaire défini" + +#: ../../godmode/modules/manage_inventory_modules.php:311 +msgid "Local module" +msgstr "Module local" + +#: ../../godmode/modules/manage_inventory_modules.php:313 +msgid "Remote/Local" +msgstr "À distance/Local" + +#: ../../godmode/modules/manage_inventory_modules.php:359 +msgid "" +"The configurations of inventory modules from the nodes have been unified.\n" +"\t\tFrom this point on, changes to the inventory scripts must be made through " +"this screen." +msgstr "" +"Les configurations des modules d’inventaire des nœuds ont été unifiées.\n" +"\t\tÀ partir de ce moment, les modifications apportées aux scripts " +"d’inventaire doivent être effectuées via cet écran." + +#: ../../godmode/modules/manage_inventory_modules.php:361 +msgid "You can find more information at:" +msgstr "Vous trouverez plus d’informations sur :" + #: ../../godmode/modules/manage_network_components_form_common.php:723 #: ../../godmode/agentes/module_manager_editor_common.php:2014 msgid "Please introduce a positive percentage value" @@ -33887,6 +33802,58 @@ msgstr "Filtres de requête" msgid "Field value" msgstr "Valeur de champ" +#: ../../godmode/modules/manage_inventory_modules_form.php:75 +#: ../../godmode/agentes/inventory_manager.php:165 +msgid "Inventory module error" +msgstr "Erreur du module d'inventaire" + +#: ../../godmode/modules/manage_inventory_modules_form.php:120 +msgid "Left blank for the LOCAL inventory modules" +msgstr "Laissé en blanc pour les modules d'inventaire LOCAUX" + +#: ../../godmode/modules/manage_inventory_modules_form.php:122 +msgid "Block Mode" +msgstr "Mode verrouillage" + +#: ../../godmode/modules/manage_inventory_modules_form.php:125 +#: ../../godmode/massive/massive_standby_alerts.php:224 +#: ../../godmode/massive/massive_standby_alerts.php:259 +#: ../../godmode/massive/massive_enable_disable_alerts.php:196 +#: ../../godmode/massive/massive_enable_disable_alerts.php:231 +#: ../../include/class/ModuleTemplates.class.php:1209 +msgid "Format" +msgstr "Format" + +#: ../../godmode/modules/manage_inventory_modules_form.php:126 +msgid "separate fields with " +msgstr "séparer les champs avec " + +#: ../../godmode/modules/manage_inventory_modules_form.php:129 +msgid "Script mode" +msgstr "Mode script" + +#: ../../godmode/modules/manage_inventory_modules_form.php:131 +msgid "Use script" +msgstr "Utiliser un script" + +#: ../../godmode/modules/manage_inventory_modules_form.php:139 +msgid "Use inline code" +msgstr "Utiliser le code en ligne" + +#: ../../godmode/modules/manage_inventory_modules_form.php:151 +#: ../../include/ajax/double_auth.ajax.php:149 +#: ../../include/ajax/double_auth.ajax.php:292 +msgid "Code" +msgstr "Code" + +#: ../../godmode/modules/manage_inventory_modules_form.php:152 +msgid "" +"Here is placed the script for the REMOTE inventory modules Local inventory " +"modules don't use this field" +msgstr "" +"Placer ici le script pour les modules d'inventaire À DISTANCE. Les modules " +"d'inventaire locaux n'utilisent pas ce champ" + #: ../../godmode/modules/module_list.php:29 msgid "Defined modules" msgstr "Modules définis" @@ -33932,7 +33899,7 @@ msgid "Database size stats" msgstr "Statistiques sur la taille de la base de données" #: ../../godmode/db/db_main.php:108 ../../include/class/Diagnostics.class.php:570 -#: ../../include/functions_reporting.php:14264 +#: ../../include/functions_reporting.php:14550 msgid "Total events" msgstr "Nombre total d'événements" @@ -33994,12 +33961,12 @@ msgid "Update group" msgstr "Mettre à jour le groupe" #: ../../godmode/groups/configure_group.php:108 -#: ../../godmode/groups/group_list.php:981 +#: ../../godmode/groups/group_list.php:986 msgid "Create group" msgstr "Créer un groupe" #: ../../godmode/groups/configure_group.php:126 -#: ../../godmode/groups/group_list.php:384 +#: ../../godmode/groups/group_list.php:389 msgid "Manage agents group" msgstr "Gérer le groupe d'agents" @@ -34032,7 +33999,7 @@ msgid "Propagate the same ACL security into the child subgroups." msgstr "Propager la même sécurité de l'ACL dans les sous-groupes enfants." #: ../../godmode/groups/configure_group.php:246 -#: ../../include/functions_events.php:4876 +#: ../../include/functions_events.php:4855 msgid "Contact" msgstr "Contact" @@ -34053,33 +34020,33 @@ msgid "Set the maximum of agents allowed for this group. 0 is unlimited." msgstr "" "Définissez le nombre maximum d'agents autorisés pour ce groupe. 0 est illimité." -#: ../../godmode/groups/group_list.php:309 +#: ../../godmode/groups/group_list.php:314 msgid "Tree Group view" msgstr "Vue de groupe d’arbre" -#: ../../godmode/groups/group_list.php:333 +#: ../../godmode/groups/group_list.php:338 msgid "Credential Store" msgstr "Entrepôt d’identifiants" -#: ../../godmode/groups/group_list.php:339 +#: ../../godmode/groups/group_list.php:344 #, php-format msgid "Groups defined in %s" msgstr "Groupes définis dans %s" -#: ../../godmode/groups/group_list.php:349 +#: ../../godmode/groups/group_list.php:354 #: ../../godmode/agentes/module_manager_editor_network.php:164 -#: ../../godmode/menu.php:220 ../../include/class/AgentWizard.class.php:722 +#: ../../godmode/menu.php:223 ../../include/class/AgentWizard.class.php:722 #: ../../include/class/AgentWizard.class.php:778 msgid "Credential store" msgstr "Entrepôt d’identifiants" -#: ../../godmode/groups/group_list.php:365 +#: ../../godmode/groups/group_list.php:370 msgid "Edit or delete groups can cause problems with synchronization" msgstr "" "Modifier ou supprimer des groupes peut provoquer des problèmes avec la " "synchronisation" -#: ../../godmode/groups/group_list.php:403 +#: ../../godmode/groups/group_list.php:408 #, php-format msgid "" "This node is configured with centralized mode. All groups information is read " @@ -34088,43 +34055,43 @@ msgstr "" "Ce nœud est configuré en mode centralisé. Toutes les informations sur les " "groupes sont en lecture seule. Allez dans %s pour le gérer." -#: ../../godmode/groups/group_list.php:468 +#: ../../godmode/groups/group_list.php:473 #: ../../godmode/groups/modu_group_list.php:119 msgid "Group successfully created" msgstr "Groupe créé correctement" -#: ../../godmode/groups/group_list.php:470 +#: ../../godmode/groups/group_list.php:475 #: ../../godmode/groups/modu_group_list.php:122 msgid "There was a problem creating group" msgstr "Erreur de création du groupe" -#: ../../godmode/groups/group_list.php:473 -#: ../../godmode/groups/group_list.php:545 +#: ../../godmode/groups/group_list.php:478 +#: ../../godmode/groups/group_list.php:550 msgid "Each group must have a different name" msgstr "Chaque groupe doit avoir un nom différent" -#: ../../godmode/groups/group_list.php:476 -#: ../../godmode/groups/group_list.php:548 +#: ../../godmode/groups/group_list.php:481 +#: ../../godmode/groups/group_list.php:553 msgid "Group must have a name" msgstr "Le groupe doit avoir un nom" -#: ../../godmode/groups/group_list.php:540 +#: ../../godmode/groups/group_list.php:545 #: ../../godmode/groups/modu_group_list.php:155 msgid "Group successfully updated" msgstr "Groupe mis à jour correctement" -#: ../../godmode/groups/group_list.php:542 +#: ../../godmode/groups/group_list.php:547 #: ../../godmode/groups/modu_group_list.php:158 msgid "There was a problem modifying group" msgstr "Erreur de modification du groupe" -#: ../../godmode/groups/group_list.php:605 +#: ../../godmode/groups/group_list.php:610 #, php-format msgid "The group %s could not be deleted because it is not empty in the nodes" msgstr "" "Le groupe %s n'a pas pu être supprimé car il n'est pas vide dans les nœuds" -#: ../../godmode/groups/group_list.php:679 +#: ../../godmode/groups/group_list.php:684 msgid "" "The group has not been deleted in the metaconsole due to an error in the node " "database" @@ -34132,36 +34099,36 @@ msgstr "" "Le groupe n'a pas été supprimé dans la Métaconsole en raison d'une erreur dans " "la base de données des nœuds" -#: ../../godmode/groups/group_list.php:688 +#: ../../godmode/groups/group_list.php:693 #, php-format msgid "The group %s has been deleted in the nodes" msgstr "Le groupe %s a été supprimé dans les nœuds" -#: ../../godmode/groups/group_list.php:720 +#: ../../godmode/groups/group_list.php:725 #: ../../godmode/groups/modu_group_list.php:229 msgid "Group successfully deleted" msgstr "Groupe supprimé correctement" -#: ../../godmode/groups/group_list.php:723 +#: ../../godmode/groups/group_list.php:728 #: ../../godmode/groups/modu_group_list.php:227 msgid "There was a problem deleting group" msgstr "Erreur de suppression du groupe" -#: ../../godmode/groups/group_list.php:730 +#: ../../godmode/groups/group_list.php:735 #, php-format msgid "The group is not empty. It is use in %s." msgstr "Le groupe n'est pas vide. Il est en service sur %s" -#: ../../godmode/groups/group_list.php:775 -#: ../../godmode/groups/group_list.php:969 +#: ../../godmode/groups/group_list.php:780 +#: ../../godmode/groups/group_list.php:974 msgid "There are no defined groups" msgstr "Aucun groupe défini" -#: ../../godmode/groups/group_list.php:924 +#: ../../godmode/groups/group_list.php:929 msgid "Are you sure? This group will also be deleted in all the nodes." msgstr "Es-tu sûr ? Ce groupe sera également supprimé dans tous les nœuds." -#: ../../godmode/groups/group_list.php:930 +#: ../../godmode/groups/group_list.php:935 msgid "" "The child groups will be updated to use the parent id of the deleted group" msgstr "" @@ -34470,6 +34437,7 @@ msgid "Manage NCM" msgstr "Gérer le NCM" #: ../../godmode/users/configure_profile.php:378 +#: ../../godmode/users/configure_user.php:321 msgid "Manage users" msgstr "Gérer les utilisateurs" @@ -34482,30 +34450,34 @@ msgstr "Gérer la base de données" msgid "%s management" msgstr "gestion %s" +#: ../../godmode/users/configure_profile.php:454 +msgid "Profile name already on use, please, change the name before save" +msgstr "Nom du profil déjà utilisé, veuillez changer le nom avant de sauvegarder" + #: ../../godmode/users/user_list.php:289 #, php-format msgid "Users defined on %s" msgstr "Utilisateurs définis sur %s" #: ../../godmode/users/user_list.php:338 -#: ../../godmode/users/configure_user.php:166 +#: ../../godmode/users/configure_user.php:162 #, php-format msgid "Deleted user %s" msgstr "Supprimer l'utilisateur %s" #: ../../godmode/users/user_list.php:345 ../../godmode/users/user_list.php:389 -#: ../../godmode/users/configure_user.php:173 +#: ../../godmode/users/configure_user.php:169 msgid "There was a problem deleting the user" msgstr "Erreur de suppression de l'utilisateur" #: ../../godmode/users/user_list.php:363 -#: ../../godmode/users/configure_user.php:188 +#: ../../godmode/users/configure_user.php:184 #, php-format msgid "Deleted user %s from metaconsole" msgstr "Supprimer l'utilisateur %s de la Métaconsole" #: ../../godmode/users/user_list.php:375 -#: ../../godmode/users/configure_user.php:199 +#: ../../godmode/users/configure_user.php:196 #, php-format msgid "Deleted user %s from %s" msgstr "Supprimer l'utilisateur %s de %s" @@ -34534,7 +34506,7 @@ msgstr "Erreur de désactivation de l'utilisateur" msgid "There was a problem enabling user" msgstr "Erreur d'activation de l'utilisateur" -#: ../../godmode/users/user_list.php:492 ../../operation/users/user_edit.php:254 +#: ../../godmode/users/user_list.php:492 ../../operation/users/user_edit.php:261 #, php-format msgid "" "This node is configured with centralized mode. All users information is read " @@ -34569,57 +34541,56 @@ msgstr "" "supprimer cet utilisateur." #: ../../godmode/users/user_list.php:783 -#: ../../include/functions_reporting.php:4773 -#: ../../include/functions_reporting.php:4820 ../../operation/search_users.php:87 +#: ../../include/functions_reporting.php:5036 +#: ../../include/functions_reporting.php:5083 ../../operation/search_users.php:87 msgid "The user doesn't have any assigned profile/group" msgstr "Aucun profil/groupe assigné à cet utilisateur" #: ../../godmode/users/user_list.php:933 -#: ../../godmode/users/configure_user.php:278 +#: ../../godmode/users/configure_user.php:308 msgid "Create user" msgstr "Créer un utilisateur" #: ../../godmode/users/user_list.php:936 -#: ../../godmode/users/configure_user.php:386 +#: ../../godmode/users/configure_user.php:397 #, php-format msgid "The current authentication scheme doesn't support creating users on %s" msgstr "" "Le schéma d'authentification actuel ne prend pas en charge la création " "d'utilisateurs sur %s" -#: ../../godmode/users/configure_user.php:276 +#: ../../godmode/users/configure_user.php:308 msgid "Update user" msgstr "Mettre à jour l'utilisateur" -#: ../../godmode/users/configure_user.php:314 -#: ../../operation/users/user_edit.php:31 -msgid "User detail editor" +#: ../../godmode/users/configure_user.php:325 +msgid "User Detail Editor" msgstr "Éditeur d'information sur l'utilisateur" -#: ../../godmode/users/configure_user.php:473 +#: ../../godmode/users/configure_user.php:487 msgid "User ID cannot be empty" msgstr "L'identifiant de l'utilisateur ne peut pas être vide." -#: ../../godmode/users/configure_user.php:480 +#: ../../godmode/users/configure_user.php:494 msgid "Invalid user ID: leading or trailing blank spaces not allowed" msgstr "" "ID utilisateur non valide : les espaces vides de début ou de fin ne sont pas " "autorisés" -#: ../../godmode/users/configure_user.php:488 +#: ../../godmode/users/configure_user.php:502 msgid "Passwords cannot be empty" msgstr "Les mots de passe ne peuvent pas être vides." -#: ../../godmode/users/configure_user.php:495 +#: ../../godmode/users/configure_user.php:509 msgid "Passwords didn't match" msgstr "Les mots de passe saisis ne sont pas identiques." -#: ../../godmode/users/configure_user.php:502 +#: ../../godmode/users/configure_user.php:516 msgid "The password provided is not valid. Please set another one." msgstr "" "Le mot de passe fourni n’est pas valide. S’il vous plaît, entrez-en un autre." -#: ../../godmode/users/configure_user.php:564 +#: ../../godmode/users/configure_user.php:578 msgid "" "Strict ACL is not recommended for admin users because performance could be " "affected." @@ -34627,111 +34598,145 @@ msgstr "" "Les ACL strictes ne sont pas recommandées pour les administrateur parce que " "cela pourrait affecter la performance." -#: ../../godmode/users/configure_user.php:648 -#: ../../godmode/users/configure_user.php:981 +#: ../../godmode/users/configure_user.php:662 +#: ../../godmode/users/configure_user.php:998 msgid "Profile added successfully" msgstr "Profil ajouté correctement" -#: ../../godmode/users/configure_user.php:649 -#: ../../godmode/users/configure_user.php:982 +#: ../../godmode/users/configure_user.php:663 +#: ../../godmode/users/configure_user.php:999 msgid "Profile cannot be added" msgstr "Impossible d'ajouter le profil" -#: ../../godmode/users/configure_user.php:773 -#: ../../godmode/users/configure_user.php:797 -#: ../../godmode/users/configure_user.php:871 -#: ../../godmode/users/configure_user.php:878 -#: ../../godmode/users/configure_user.php:910 -#: ../../operation/users/user_edit.php:187 -#: ../../operation/users/user_edit.php:232 +#: ../../godmode/users/configure_user.php:790 +#: ../../godmode/users/configure_user.php:814 +#: ../../godmode/users/configure_user.php:888 +#: ../../godmode/users/configure_user.php:895 +#: ../../godmode/users/configure_user.php:927 +#: ../../operation/users/user_edit.php:193 +#: ../../operation/users/user_edit.php:239 msgid "User info successfully updated" msgstr "L'information de l'utilisateur a été mise à jour correctement." -#: ../../godmode/users/configure_user.php:774 -#: ../../godmode/users/configure_user.php:798 -#: ../../godmode/users/configure_user.php:872 -#: ../../godmode/users/configure_user.php:879 -#: ../../godmode/users/configure_user.php:911 +#: ../../godmode/users/configure_user.php:791 +#: ../../godmode/users/configure_user.php:815 +#: ../../godmode/users/configure_user.php:889 +#: ../../godmode/users/configure_user.php:896 +#: ../../godmode/users/configure_user.php:928 msgid "Error updating user info (no change?)" msgstr "" "Erreur de mise à jour de l'information de l'utilisateur (aucun changement ?)" -#: ../../godmode/users/configure_user.php:803 +#: ../../godmode/users/configure_user.php:820 msgid "Password of the active user is required to perform password change" msgstr "" "Le mot de passe de l'utilisateur actif est requis pour effectuer le changement " "de mot de passe" -#: ../../godmode/users/configure_user.php:805 +#: ../../godmode/users/configure_user.php:822 msgid "Password of active user is not correct" msgstr "Le mot de passe de l'utilisateur actif n'est pas correct" -#: ../../godmode/users/configure_user.php:821 +#: ../../godmode/users/configure_user.php:838 msgid "Passwords does not match" msgstr "Les mots de passe ne concordent pas" -#: ../../godmode/users/configure_user.php:900 +#: ../../godmode/users/configure_user.php:888 +#: ../../operation/users/user_edit.php:191 +msgid "You have generated a new API Token." +msgstr "Vous avez généré un nouveau jeton API." + +#: ../../godmode/users/configure_user.php:917 msgid "" "Strict ACL is not recommended for this user. Performance could be affected." msgstr "" "Les ACL strictes ne sont pas recommandées pour ces utilisateurs. La " "performance pourrait être affectée." -#: ../../godmode/users/configure_user.php:1022 +#: ../../godmode/users/configure_user.php:1039 msgid "Update User" msgstr "Mettre à jour l'utilisateur" -#: ../../godmode/users/configure_user.php:1022 +#: ../../godmode/users/configure_user.php:1039 msgid "Create User" msgstr "Créer un utilisateur" -#: ../../godmode/users/configure_user.php:1075 -#: ../../operation/users/user_edit.php:275 +#: ../../godmode/users/configure_user.php:1055 +#: ../../operation/users/user_edit.php:278 +msgid "" +"The API token will be renewed. After this action, the last token you were " +"using will not work. Are you sure?" +msgstr "" +"Le jeton API sera renouvelé. Après cette action, le dernier jeton que vous " +"utilisiez ne fonctionnera pas. Êtes-vous sûr?" + +#: ../../godmode/users/configure_user.php:1063 +#: ../../operation/users/user_edit.php:286 +msgid "Renew API Token" +msgstr "Renouveler le jeton API" + +#: ../../godmode/users/configure_user.php:1076 +#: ../../operation/users/user_edit.php:311 +msgid "Your API Token is:" +msgstr "Votre jeton API est :" + +#: ../../godmode/users/configure_user.php:1076 +#: ../../operation/users/user_edit.php:311 +msgid "Please, avoid share this string with others." +msgstr "S’il vous plaît, évitez de partager cette chaîne avec d’autres." + +#: ../../godmode/users/configure_user.php:1083 +#: ../../operation/users/user_edit.php:318 +msgid "Show API Token" +msgstr "Afficher le jeton API" + +#: ../../godmode/users/configure_user.php:1134 +#: ../../operation/users/user_edit.php:349 msgid "Full (display) name" msgstr "Nom complet (affiché)" -#: ../../godmode/users/configure_user.php:1092 +#: ../../godmode/users/configure_user.php:1151 #: ../../godmode/massive/massive_edit_users.php:470 -#: ../../operation/users/user_edit.php:422 +#: ../../operation/users/user_edit.php:496 msgid "Timezone" msgstr "Fuseau horaire" -#: ../../godmode/users/configure_user.php:1093 +#: ../../godmode/users/configure_user.php:1152 #: ../../godmode/massive/massive_edit_users.php:470 -#: ../../operation/users/user_edit.php:422 +#: ../../operation/users/user_edit.php:496 msgid "The timezone must be that of the associated server." msgstr "Le fuseau horaire doit être celui du serveur associé." -#: ../../godmode/users/configure_user.php:1126 -#: ../../operation/users/user_edit.php:302 +#: ../../godmode/users/configure_user.php:1185 +#: ../../operation/users/user_edit.php:376 msgid "Password confirmation" msgstr "Confirmation du mot de passe" -#: ../../godmode/users/configure_user.php:1144 +#: ../../godmode/users/configure_user.php:1203 msgid "Own password confirmation" msgstr "Confirmation propre du mot de passe" -#: ../../godmode/users/configure_user.php:1154 +#: ../../godmode/users/configure_user.php:1213 msgid "Administrator user" msgstr "Utilisateur administrateur" -#: ../../godmode/users/configure_user.php:1181 -#: ../../operation/users/user_edit.php:295 +#: ../../godmode/users/configure_user.php:1240 +#: ../../operation/users/user_edit.php:369 msgid "E-mail" msgstr "Courriel" -#: ../../godmode/users/configure_user.php:1197 -#: ../../operation/users/user_edit.php:297 +#: ../../godmode/users/configure_user.php:1256 +#: ../../operation/users/user_edit.php:371 msgid "Phone number" msgstr "Numéro de téléphone" -#: ../../godmode/users/configure_user.php:1213 -#: ../../operation/users/user_edit.php:619 +#: ../../godmode/users/configure_user.php:1272 +#: ../../operation/users/user_edit.php:693 msgid "Login allowed IP list" msgstr "Liste d’adresses IP autorisées pour la connexion" -#: ../../godmode/users/configure_user.php:1214 -#: ../../operation/users/user_edit.php:620 +#: ../../godmode/users/configure_user.php:1273 +#: ../../operation/users/user_edit.php:694 msgid "" "Add the source IPs that will allow console access. Each IP must be separated " "only by comma. * allows all." @@ -34739,34 +34744,32 @@ msgstr "" "Ajoutez les adresses IP source qui autoriseront l’accès à la console. Chaque " "adresse IP doit être séparée uniquement par une virgule. * permet tout." -#: ../../godmode/users/configure_user.php:1252 -#: ../../operation/users/user_edit.php:404 -#: ../../operation/users/user_edit.php:413 +#: ../../godmode/users/configure_user.php:1311 msgid "Skin" msgstr "Thème" -#: ../../godmode/users/configure_user.php:1261 +#: ../../godmode/users/configure_user.php:1320 msgid "Search custom field view" msgstr "Vue de recherche d’un champ personnalisé" -#: ../../godmode/users/configure_user.php:1261 +#: ../../godmode/users/configure_user.php:1320 msgid "Load by default the selected view in custom field view" msgstr "" "Charger par défaut la vue sélectionnée dans la vue de champ personnalisée" -#: ../../godmode/users/configure_user.php:1278 +#: ../../godmode/users/configure_user.php:1337 msgid "Use global conf" msgstr "Utiliser configuration générale" -#: ../../godmode/users/configure_user.php:1283 +#: ../../godmode/users/configure_user.php:1342 #: ../../godmode/massive/massive_edit_users.php:271 -#: ../../operation/users/user_edit.php:357 +#: ../../operation/users/user_edit.php:431 msgid "Home screen" msgstr "Page d'accueil" -#: ../../godmode/users/configure_user.php:1284 +#: ../../godmode/users/configure_user.php:1343 #: ../../godmode/massive/massive_edit_users.php:271 -#: ../../operation/users/user_edit.php:357 +#: ../../operation/users/user_edit.php:431 msgid "" "User can customize the home page. By default, will display 'Agent Detail'. " "Example: Select 'Other' and type index.php?sec=estado&sec2=operation/agentes/" @@ -34777,41 +34780,41 @@ msgstr "" "sec=estado&sec2=operation/agentes/ver_agente&id_agente=1 pour afficher la vue " "détaillée de l'agent" -#: ../../godmode/users/configure_user.php:1291 +#: ../../godmode/users/configure_user.php:1350 #: ../../godmode/massive/massive_edit_users.php:276 -#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:361 +#: ../../godmode/events/events.php:41 ../../operation/users/user_edit.php:435 #: ../../operation/events/events.php:1438 msgid "Event list" msgstr "Liste d'événements" -#: ../../godmode/users/configure_user.php:1294 +#: ../../godmode/users/configure_user.php:1353 #: ../../godmode/massive/massive_edit_users.php:279 -#: ../../operation/users/user_edit.php:364 +#: ../../operation/users/user_edit.php:438 #: ../../operation/agentes/alerts_status.php:190 ../../operation/menu.php:68 msgid "Alert detail" msgstr "Détail des alertes" -#: ../../godmode/users/configure_user.php:1295 +#: ../../godmode/users/configure_user.php:1354 msgid "External link" msgstr "Lien externe" -#: ../../godmode/users/configure_user.php:1388 +#: ../../godmode/users/configure_user.php:1447 msgid "Metaconsole access" msgstr "Accès à la Métaconsole" -#: ../../godmode/users/configure_user.php:1406 +#: ../../godmode/users/configure_user.php:1465 msgid "Not Login" msgstr "Aucune connexion" -#: ../../godmode/users/configure_user.php:1408 +#: ../../godmode/users/configure_user.php:1467 msgid "The user with not login set only can access to API." msgstr "L'utilisateur sans permis d'accès peut seulement avoir accès à l'API." -#: ../../godmode/users/configure_user.php:1418 +#: ../../godmode/users/configure_user.php:1477 msgid "Local user" msgstr "Utilisateur local" -#: ../../godmode/users/configure_user.php:1420 +#: ../../godmode/users/configure_user.php:1479 msgid "" "The user with local authentication enabled will always use local " "authentication." @@ -34819,11 +34822,11 @@ msgstr "" "L’utilisateur dont l’authentification locale est activée utilisera toujours " "l’authentification locale." -#: ../../godmode/users/configure_user.php:1430 +#: ../../godmode/users/configure_user.php:1489 msgid "Session Time" msgstr "Durée de la session" -#: ../../godmode/users/configure_user.php:1432 +#: ../../godmode/users/configure_user.php:1491 msgid "" "This is defined in minutes, If you wish a permanent session should putting -1 " "in this field." @@ -34831,68 +34834,68 @@ msgstr "" "Défini en minutes ; si vous souhaitez établir une session permanente, " "introduisez -1 dans ce champ." -#: ../../godmode/users/configure_user.php:1466 +#: ../../godmode/users/configure_user.php:1524 msgid "Default event filter" msgstr "Filtre d'événement par défaut" -#: ../../godmode/users/configure_user.php:1480 +#: ../../godmode/users/configure_user.php:1538 msgid "eHorus user access enabled" msgstr "Accès utilisateur eHorus activé" -#: ../../godmode/users/configure_user.php:1488 -#: ../../include/functions_config.php:1741 +#: ../../godmode/users/configure_user.php:1546 +#: ../../include/functions_config.php:1722 msgid "eHorus user" msgstr "Utilisateur eHorus" -#: ../../godmode/users/configure_user.php:1497 -#: ../../include/functions_config.php:1745 +#: ../../godmode/users/configure_user.php:1555 +#: ../../include/functions_config.php:1726 msgid "eHorus password" msgstr "Mot de passe eHorus" -#: ../../godmode/users/configure_user.php:1520 +#: ../../godmode/users/configure_user.php:1578 msgid "User must be created before activating double authentication." msgstr "L'utilisateur doit être créé avant d'activer la double authentification." -#: ../../godmode/users/configure_user.php:1530 -#: ../../operation/users/user_edit.php:440 +#: ../../godmode/users/configure_user.php:1588 +#: ../../operation/users/user_edit.php:514 msgid "Show information" msgstr "Afficher l'information" -#: ../../godmode/users/configure_user.php:1548 +#: ../../godmode/users/configure_user.php:1606 msgid "Enable agents managment" msgstr "Activer la gestion d'agents" -#: ../../godmode/users/configure_user.php:1556 +#: ../../godmode/users/configure_user.php:1614 msgid "Enable node access" msgstr "Activer l'accès au nœud" -#: ../../godmode/users/configure_user.php:1556 +#: ../../godmode/users/configure_user.php:1614 msgid "With this option enabled, the user will can access to nodes console" msgstr "" "Si cette option est activée, l'utilisateur pourra accéder à la console de nœuds" -#: ../../godmode/users/configure_user.php:1791 +#: ../../godmode/users/configure_user.php:1854 msgid "yes" msgstr "Oui" -#: ../../godmode/users/configure_user.php:1794 +#: ../../godmode/users/configure_user.php:1857 msgid "no" msgstr "Non" -#: ../../godmode/users/configure_user.php:1798 +#: ../../godmode/users/configure_user.php:1861 msgid "Please select profile and group" msgstr "Veuillez sélectionner le profil et le groupe" -#: ../../godmode/users/configure_user.php:1812 -#: ../../godmode/users/configure_user.php:1863 +#: ../../godmode/users/configure_user.php:1875 +#: ../../godmode/users/configure_user.php:1926 msgid "This profile is already defined" msgstr "Ce profil est déjà défini" -#: ../../godmode/users/configure_user.php:1875 +#: ../../godmode/users/configure_user.php:1940 msgid "Deleting last profile will delete this user" msgstr "La suppression du dernier profil supprimera cet utilisateur" -#: ../../godmode/users/configure_user.php:1915 +#: ../../godmode/users/configure_user.php:1980 msgid "" "User will be created without profiles assigned and won't be able to log in, " "are you sure?" @@ -34900,35 +34903,35 @@ msgstr "" "L'utilisateur sera créé sans profils attribués et ne pourra pas se connecter, " "êtes-vous sûr ?" -#: ../../godmode/users/configure_user.php:2082 -#: ../../operation/users/user_edit.php:1104 +#: ../../godmode/users/configure_user.php:2147 +#: ../../operation/users/user_edit.php:1178 msgid "Double autentication information" msgstr "Information d'authentification double" -#: ../../godmode/users/configure_user.php:2172 -#: ../../operation/users/user_edit.php:1193 +#: ../../godmode/users/configure_user.php:2237 +#: ../../operation/users/user_edit.php:1267 msgid "The double authentication will be deactivated" msgstr "La double authentification sera désactivée." -#: ../../godmode/users/configure_user.php:2173 -#: ../../operation/users/user_edit.php:1194 +#: ../../godmode/users/configure_user.php:2238 +#: ../../operation/users/user_edit.php:1268 msgid "Deactivate" msgstr "Désactiver" -#: ../../godmode/users/configure_user.php:2209 -#: ../../operation/users/user_edit.php:1226 +#: ../../godmode/users/configure_user.php:2274 +#: ../../operation/users/user_edit.php:1300 msgid "The double autentication was deactivated successfully" msgstr "La double authentification a été désactivée correctement." -#: ../../godmode/users/configure_user.php:2213 -#: ../../godmode/users/configure_user.php:2217 -#: ../../operation/users/user_edit.php:1229 -#: ../../operation/users/user_edit.php:1233 +#: ../../godmode/users/configure_user.php:2278 +#: ../../godmode/users/configure_user.php:2282 +#: ../../operation/users/user_edit.php:1303 +#: ../../operation/users/user_edit.php:1307 msgid "There was an error deactivating the double autentication" msgstr "Erreur de désactivation de la double authentification" #: ../../godmode/agentes/agent_template.php:67 -#: ../../include/functions_api.php:15025 +#: ../../include/functions_api.php:15030 msgid "Created by template " msgstr "Créé par modèle " @@ -34941,7 +34944,7 @@ msgid "Error adding modules. The following errors already exists: " msgstr "Erreur d'ajout de modules. Les erreurs suivantes existent déjà : " #: ../../godmode/agentes/agent_template.php:163 -#: ../../include/functions_api.php:15119 +#: ../../include/functions_api.php:15124 msgid "Modules successfully added" msgstr "Modules ajoutés correctement" @@ -34949,7 +34952,7 @@ msgstr "Modules ajoutés correctement" msgid "Assign" msgstr "Attribuer" -#: ../../godmode/agentes/agent_template.php:269 +#: ../../godmode/agentes/agent_template.php:270 #: ../../mobile/operation/modules.php:772 msgid "No modules" msgstr "Pas de modules" @@ -35033,7 +35036,7 @@ msgid "Show monitor detail fields" msgstr "Afficher les champs de détail du moniteur" #: ../../godmode/agentes/configurar_agente.php:254 -#: ../../godmode/agentes/configurar_agente.php:1069 +#: ../../godmode/agentes/configurar_agente.php:1082 msgid "No agent alias specified" msgstr "Aucun alias agent spécifié" @@ -35051,97 +35054,97 @@ msgstr "Erreur de création, le nom existe déjà" msgid "Could not be created, because IP already exists" msgstr "Impossible de créer, car l'IP existe déjà" -#: ../../godmode/agentes/configurar_agente.php:449 ../../godmode/menu.php:173 +#: ../../godmode/agentes/configurar_agente.php:449 ../../godmode/menu.php:174 #: ../../godmode/wizards/HostDevices.class.php:1081 msgid "Module templates" msgstr "Modèles de modules" -#: ../../godmode/agentes/configurar_agente.php:521 -#: ../../operation/agentes/ver_agente.php:1499 +#: ../../godmode/agentes/configurar_agente.php:534 +#: ../../operation/agentes/ver_agente.php:1517 msgid "GIS data" msgstr "Données GIS" -#: ../../godmode/agentes/configurar_agente.php:593 -#: ../../godmode/agentes/configurar_agente.php:761 -#: ../../operation/agentes/ver_agente.php:1519 ../../operation/menu.php:502 +#: ../../godmode/agentes/configurar_agente.php:606 +#: ../../godmode/agentes/configurar_agente.php:774 +#: ../../operation/agentes/ver_agente.php:1537 ../../operation/menu.php:506 #: ../../operation/incidents/incident_statistics.php:21 #: ../../general/first_task/incidents.php:28 msgid "Incidents" msgstr "Incidents" -#: ../../godmode/agentes/configurar_agente.php:756 +#: ../../godmode/agentes/configurar_agente.php:769 msgid "Gis" msgstr "GIS" -#: ../../godmode/agentes/configurar_agente.php:798 +#: ../../godmode/agentes/configurar_agente.php:811 msgid "SNMP explorer" msgstr "Explorateur SNMP" -#: ../../godmode/agentes/configurar_agente.php:829 -#: ../../godmode/agentes/configurar_agente.php:851 -#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:128 +#: ../../godmode/agentes/configurar_agente.php:842 +#: ../../godmode/agentes/configurar_agente.php:864 +#: ../../godmode/agentes/modificar_agente.php:104 ../../godmode/menu.php:129 msgid "Resources" msgstr "Ressources" -#: ../../godmode/agentes/configurar_agente.php:839 +#: ../../godmode/agentes/configurar_agente.php:852 msgid "Agent manager" msgstr "Administrateur d'agents" -#: ../../godmode/agentes/configurar_agente.php:879 +#: ../../godmode/agentes/configurar_agente.php:892 #: ../../godmode/servers/modificar_server.php:248 msgid "Conf file deleted successfully" msgstr "Le fichier de configuration a été supprimé correctement" -#: ../../godmode/agentes/configurar_agente.php:880 +#: ../../godmode/agentes/configurar_agente.php:893 #: ../../godmode/servers/modificar_server.php:249 msgid "Could not delete conf file" msgstr "Erreur de suppression du fichier de configuration" -#: ../../godmode/agentes/configurar_agente.php:897 -#: ../../godmode/agentes/configurar_agente.php:1064 +#: ../../godmode/agentes/configurar_agente.php:910 +#: ../../godmode/agentes/configurar_agente.php:1077 #: ../../include/class/ExternalTools.class.php:756 msgid "The ip or dns name entered cannot be resolved" msgstr "L'adresse IP ou le nom DNS ne peuvent pas être résolus" -#: ../../godmode/agentes/configurar_agente.php:924 -#: ../../godmode/agentes/configurar_agente.php:928 +#: ../../godmode/agentes/configurar_agente.php:937 +#: ../../godmode/agentes/configurar_agente.php:941 msgid "No data to normalize" msgstr "Aucune donnée à normaliser" -#: ../../godmode/agentes/configurar_agente.php:933 +#: ../../godmode/agentes/configurar_agente.php:946 #, php-format msgid "Deleted data above %f" msgstr "Données supprimées ci-dessus %f" -#: ../../godmode/agentes/configurar_agente.php:934 +#: ../../godmode/agentes/configurar_agente.php:947 #, php-format msgid "Error normalizing module %s" msgstr "Erreur lors de normalisation du module %s" -#: ../../godmode/agentes/configurar_agente.php:1080 +#: ../../godmode/agentes/configurar_agente.php:1093 #, php-format msgid "The group id %d is incorrect." msgstr "L'ID de groupe %d est incorrect." -#: ../../godmode/agentes/configurar_agente.php:1082 +#: ../../godmode/agentes/configurar_agente.php:1095 msgid "Agent cannot be updated due to the maximum agent limit for this group" msgstr "" "L'agent ne peut pas être mis à jour en raison de la limite maximale d'agents " "pour ce groupe" -#: ../../godmode/agentes/configurar_agente.php:1084 +#: ../../godmode/agentes/configurar_agente.php:1097 msgid "Duplicate main IP address" msgstr "Dupliquer l’adresse IP principale" -#: ../../godmode/agentes/configurar_agente.php:1138 +#: ../../godmode/agentes/configurar_agente.php:1151 msgid "There was a problem updating the agent" msgstr "Problème de mise à jour de l'agent" -#: ../../godmode/agentes/configurar_agente.php:1231 +#: ../../godmode/agentes/configurar_agente.php:1244 msgid "There was a problem loading the agent" msgstr "Problème de chargement de l'agent" -#: ../../godmode/agentes/configurar_agente.php:1745 +#: ../../godmode/agentes/configurar_agente.php:1758 msgid "" "There was a problem updating module. Another module already exists with the " "same name." @@ -35149,75 +35152,75 @@ msgstr "" "Problème de mise à jour du module. Un autre module avec le même nom existe " "déjà." -#: ../../godmode/agentes/configurar_agente.php:1749 +#: ../../godmode/agentes/configurar_agente.php:1762 msgid "" "There was a problem updating module. Some required fields are missed: (name)" msgstr "" "Problème de mise à jour du module. Certains champs obligatoires sont " "manquants : (nom)" -#: ../../godmode/agentes/configurar_agente.php:1753 +#: ../../godmode/agentes/configurar_agente.php:1766 msgid "There was a problem updating module. \"No change\"" msgstr "Problème de mise à jour du module. « Aucun changement »" -#: ../../godmode/agentes/configurar_agente.php:1759 +#: ../../godmode/agentes/configurar_agente.php:1772 msgid "There was a problem updating module. Processing error" msgstr "Problème de mise à jour du module. Erreur de traitement" -#: ../../godmode/agentes/configurar_agente.php:1788 +#: ../../godmode/agentes/configurar_agente.php:1801 msgid "Module successfully updated" msgstr "Module mis à jour correctement" -#: ../../godmode/agentes/configurar_agente.php:1936 +#: ../../godmode/agentes/configurar_agente.php:1949 msgid "" "There was a problem adding module. Another module already exists with the same " "name." msgstr "" "Problème d'ajout de module. Un autre module avec le même nom existe déjà." -#: ../../godmode/agentes/configurar_agente.php:1940 +#: ../../godmode/agentes/configurar_agente.php:1953 msgid "" "There was a problem adding module. Some required fields are missed : (name)" msgstr "" "Problème d'ajout de module. Certains champs obligatoires sont manquants : (nom)" -#: ../../godmode/agentes/configurar_agente.php:1946 +#: ../../godmode/agentes/configurar_agente.php:1959 msgid "There was a problem adding module. Processing error" msgstr "Problème d'ajout de module. Erreur de traitement" -#: ../../godmode/agentes/configurar_agente.php:1975 +#: ../../godmode/agentes/configurar_agente.php:1988 #: ../../godmode/reporting/graph_builder.php:392 msgid "Module added successfully" msgstr "Module ajouté correctement" -#: ../../godmode/agentes/configurar_agente.php:2126 +#: ../../godmode/agentes/configurar_agente.php:2142 msgid "There was a problem deleting the module" msgstr "Problème de suppression du module" -#: ../../godmode/agentes/configurar_agente.php:2130 +#: ../../godmode/agentes/configurar_agente.php:2146 msgid "Module deleted succesfully" msgstr "Module supprimé correctement" -#: ../../godmode/agentes/configurar_agente.php:2269 -#: ../../include/functions_api.php:11167 +#: ../../godmode/agentes/configurar_agente.php:2285 +#: ../../include/functions_api.php:11172 #, php-format msgid "Save by %s Console" msgstr "Enregistrer par Console %s" -#: ../../godmode/agentes/configurar_agente.php:2287 -#: ../../include/functions_api.php:11168 +#: ../../godmode/agentes/configurar_agente.php:2303 +#: ../../include/functions_api.php:11173 #, php-format msgid "Update by %s Console" msgstr "Mise à jour par Console %s" -#: ../../godmode/agentes/configurar_agente.php:2303 -#: ../../include/functions_api.php:11169 +#: ../../godmode/agentes/configurar_agente.php:2319 +#: ../../include/functions_api.php:11174 #, php-format msgid "Insert by %s Console" msgstr "Insérer par Console %s" -#: ../../godmode/agentes/configurar_agente.php:2376 -#: ../../godmode/agentes/configurar_agente.php:2388 +#: ../../godmode/agentes/configurar_agente.php:2392 +#: ../../godmode/agentes/configurar_agente.php:2408 msgid "Invalid tab specified" msgstr "Onglet non valide" @@ -35296,6 +35299,14 @@ msgstr "" msgid "Please select a file before clicking Load" msgstr "Veuillez sélectionner un fichier avant de cliquer sur Charger" +#: ../../godmode/agentes/inventory_manager.php:110 +msgid "Successfully forced inventory module" +msgstr "Module d'inventaire forcé correctement" + +#: ../../godmode/agentes/inventory_manager.php:112 +msgid "Error forcing inventory module" +msgstr "Erreur : module d'inventaire non forcé" + #: ../../godmode/agentes/modificar_agente.php:95 #, php-format msgid "Agents defined in %s" @@ -35425,7 +35436,7 @@ msgstr "Tous les modules" #: ../../godmode/agentes/planned_downtime.list.php:211 #: ../../godmode/agentes/planned_downtime.editor.php:68 -#: ../../include/functions_reporting_html.php:883 +#: ../../include/functions_reporting_html.php:884 #: ../../include/functions_reporting_html.php:4805 msgid "Scheduled Downtime" msgstr "Temps d'arrêt programmé" @@ -35524,8 +35535,8 @@ msgstr "" "Cet élément ne peut pas être modifié lorsque le temps d'arrêt est en exécution." #: ../../godmode/agentes/planned_downtime.editor.php:254 -#: ../../include/functions_planned_downtimes.php:40 -#: ../../include/functions_planned_downtimes.php:759 +#: ../../include/functions_planned_downtimes.php:41 +#: ../../include/functions_planned_downtimes.php:760 msgid "" "Not created. Error inserting data. Start time must be higher than the current " "time" @@ -35537,45 +35548,45 @@ msgstr "" #: ../../godmode/agentes/planned_downtime.editor.php:262 #: ../../godmode/agentes/planned_downtime.editor.php:270 #: ../../godmode/agentes/planned_downtime.editor.php:274 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:764 -#: ../../include/functions_planned_downtimes.php:771 -#: ../../include/functions_planned_downtimes.php:779 -#: ../../include/functions_planned_downtimes.php:787 -#: ../../include/functions_planned_downtimes.php:792 -#: ../../include/functions_planned_downtimes.php:797 -#: ../../include/functions_planned_downtimes.php:802 -#: ../../include/functions_planned_downtimes.php:807 -#: ../../include/functions_planned_downtimes.php:812 -#: ../../include/functions_planned_downtimes.php:817 +#: ../../include/functions_planned_downtimes.php:43 +#: ../../include/functions_planned_downtimes.php:48 +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:765 +#: ../../include/functions_planned_downtimes.php:772 +#: ../../include/functions_planned_downtimes.php:780 +#: ../../include/functions_planned_downtimes.php:788 +#: ../../include/functions_planned_downtimes.php:793 +#: ../../include/functions_planned_downtimes.php:798 +#: ../../include/functions_planned_downtimes.php:803 +#: ../../include/functions_planned_downtimes.php:808 +#: ../../include/functions_planned_downtimes.php:813 +#: ../../include/functions_planned_downtimes.php:818 msgid "Not created. Error inserting data" msgstr "Erreur de création : erreur d'insertion de données" #: ../../godmode/agentes/planned_downtime.editor.php:258 -#: ../../include/functions_planned_downtimes.php:42 -#: ../../include/functions_planned_downtimes.php:771 +#: ../../include/functions_planned_downtimes.php:43 +#: ../../include/functions_planned_downtimes.php:772 msgid "The end date must be higher than the start date" msgstr "La date finale doit être supérieure à la date initiale" #: ../../godmode/agentes/planned_downtime.editor.php:262 -#: ../../include/functions_planned_downtimes.php:764 +#: ../../include/functions_planned_downtimes.php:765 msgid "The end date must be higher than the current time" msgstr "La date finale doit être postérieure à l'heure actuelle" #: ../../godmode/agentes/planned_downtime.editor.php:270 #: ../../godmode/agentes/planned_downtime.editor.php:992 #: ../../godmode/agentes/planned_downtime.editor.php:1005 -#: ../../include/functions_planned_downtimes.php:47 -#: ../../include/functions_planned_downtimes.php:779 +#: ../../include/functions_planned_downtimes.php:48 +#: ../../include/functions_planned_downtimes.php:780 msgid "The end time must be higher than the start time" msgstr "L'heure de fin doit être supérieure à l'heure de début" #: ../../godmode/agentes/planned_downtime.editor.php:274 #: ../../godmode/agentes/planned_downtime.editor.php:977 -#: ../../include/functions_planned_downtimes.php:49 -#: ../../include/functions_planned_downtimes.php:787 +#: ../../include/functions_planned_downtimes.php:50 +#: ../../include/functions_planned_downtimes.php:788 msgid "The end day must be higher than the start day" msgstr "Le jour de fin doit être postérieur au jour de début" @@ -35630,15 +35641,15 @@ msgid "Downtime stop cron expression is not correct" msgstr "L’expression cron d’arrêt de temps d’arrêt n’est pas correcte" #: ../../godmode/agentes/planned_downtime.editor.php:530 -#: ../../include/functions_planned_downtimes.php:98 -#: ../../include/functions_planned_downtimes.php:831 +#: ../../include/functions_planned_downtimes.php:99 +#: ../../include/functions_planned_downtimes.php:832 msgid "Each scheduled downtime must have a different name" msgstr "Chaque temps d'arrêt programmé doit avoir un nom différent" #: ../../godmode/agentes/planned_downtime.editor.php:535 #: ../../godmode/agentes/planned_downtime.editor.php:568 -#: ../../include/functions_planned_downtimes.php:103 -#: ../../include/functions_planned_downtimes.php:837 +#: ../../include/functions_planned_downtimes.php:104 +#: ../../include/functions_planned_downtimes.php:838 msgid "Scheduled downtime must have a name" msgstr "Les temps d'arrêt programmés doivent avoir un nom" @@ -35667,15 +35678,15 @@ msgid "Cron from/to" msgstr "Cron à partir de/vers" #: ../../godmode/agentes/planned_downtime.editor.php:904 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5717 +#: ../../include/functions_reporting_html.php:87 +#: ../../include/functions_reporting_html.php:5736 #: ../../include/ajax/alert_list.ajax.php:592 msgid "From:" msgstr "De :" #: ../../godmode/agentes/planned_downtime.editor.php:908 -#: ../../include/functions_reporting_html.php:86 -#: ../../include/functions_reporting_html.php:5717 +#: ../../include/functions_reporting_html.php:87 +#: ../../include/functions_reporting_html.php:5736 #: ../../include/ajax/alert_list.ajax.php:606 msgid "To:" msgstr "À :" @@ -35739,7 +35750,7 @@ msgstr "Ajouter un module :" msgid "Please select a module." msgstr "Veuillez sélectionner un module." -#: ../../godmode/agentes/planned_downtime.editor.php:1890 +#: ../../godmode/agentes/planned_downtime.editor.php:1894 msgid "" "WARNING: If you edit this scheduled downtime, the data of future SLA reports " "may be altered" @@ -35837,7 +35848,7 @@ msgid "Use alias as name" msgstr "Utiliser alias comme nom" #: ../../godmode/agentes/agent_manager.php:304 -#: ../../godmode/setup/setup_general.php:459 +#: ../../godmode/setup/setup_general.php:540 #: ../../include/functions_config.php:368 msgid "Unique IP" msgstr "IP unique" @@ -35908,8 +35919,8 @@ msgstr "Mode désactivé" #: ../../godmode/agentes/agent_manager.php:662 #: ../../godmode/agentes/agent_manager.php:679 -#: ../../include/functions_treeview.php:757 -#: ../../operation/agentes/ver_agente.php:1538 +#: ../../include/functions_treeview.php:752 +#: ../../operation/agentes/ver_agente.php:1556 #: ../../operation/agentes/estado_generalagente.php:495 msgid "Url address" msgstr "Adresse URL" @@ -36123,110 +36134,106 @@ msgstr "Ajouter une relation" msgid "Changes" msgstr "Changements" -#: ../../godmode/agentes/module_manager.php:121 +#: ../../godmode/agentes/module_manager.php:120 msgid "Create a new data server module" msgstr "Créer un nouveau module de serveur de données" -#: ../../godmode/agentes/module_manager.php:123 +#: ../../godmode/agentes/module_manager.php:122 msgid "Create a new network server module" msgstr "Créer un nouveau module de serveur de réseau" -#: ../../godmode/agentes/module_manager.php:127 +#: ../../godmode/agentes/module_manager.php:126 msgid "Create a new plugin server module" msgstr "Créer un nouveau module de serveur plugin" -#: ../../godmode/agentes/module_manager.php:131 +#: ../../godmode/agentes/module_manager.php:130 msgid "Create a new WMI server module" msgstr "Créer un nouveau module de serveur WMI" -#: ../../godmode/agentes/module_manager.php:135 +#: ../../godmode/agentes/module_manager.php:134 msgid "Create a new prediction server module" msgstr "Créer un nouveau module de serveur de prédiction" -#: ../../godmode/agentes/module_manager.php:139 +#: ../../godmode/agentes/module_manager.php:138 msgid "Create a new web Server module" msgstr "Créer un nouveau module de serveur web" -#: ../../godmode/agentes/module_manager.php:183 +#: ../../godmode/agentes/module_manager.php:182 #: ../../operation/agentes/estado_monitores.php:582 msgid "Show in hierachy mode" msgstr "Affichage en mode hiérarchique" -#: ../../godmode/agentes/module_manager.php:202 -msgid "